ASPECT
field.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2016 - 2019 by the authors of the ASPECT code.
3 
4  This file is part of ASPECT.
5 
6  ASPECT is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2, or (at your option)
9  any later version.
10 
11  ASPECT is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with ASPECT; see the file doc/COPYING. If not see
18  <http://www.gnu.org/licenses/>.
19 */
20 
21 #ifndef _aspect_volume_of_fluid_field_h
22 #define _aspect_volume_of_fluid_field_h
23 
25 
26 using namespace dealii;
27 
28 namespace aspect
29 {
30  namespace VolumeOfFluid
31  {
38  {
39  enum Kind
40  {
51  level_set
52  };
53  };
54  }
55 
60  template<int dim>
61  struct VolumeOfFluidField
62  {
67  VolumeOfFluidField(const FEVariable<dim> &volume_fraction,
68  const FEVariable<dim> &reconstruction,
69  const FEVariable<dim> &level_set,
70  const unsigned int composition_index);
71 
76 
81 
87 
91  const unsigned int composition_index;
92 
93  };
94 }
95 
96 #endif
const unsigned int composition_index
Definition: field.h:91
const FEVariable< dim > & reconstruction
Definition: field.h:80
const FEVariable< dim > & level_set
Definition: field.h:86
Definition: compat.h:42
const FEVariable< dim > & volume_fraction
Definition: field.h:75