Flow123d
release_2.2.0-48-gb04af7f
|
#include <darcy_flow_mh.hh>
Public Types | |
enum | BC_Type { none =0, dirichlet =1, total_flux =4, seepage =5, river =6 } |
Public Types inherited from FieldFlag | |
typedef FlagArray< FieldFlag > | Flags |
typedef Flags::Mask | Mask |
Public Member Functions | |
EqData () | |
Creation of all fields. More... | |
Public Member Functions inherited from FieldSet | |
DECLARE_EXCEPTION (ExcUnknownField,<< "Field set has no field with name: "<< FieldCommon::EI_Field::qval) | |
Input::Type::Record | make_field_descriptor_type (const std::string &equation_name) const |
void | set_field (const std::string &dest_field_name, FieldCommon &source) |
FieldCommon * | field (const std::string &field_name) const |
FieldCommon & | operator[] (const std::string &field_name) const |
void | set_components (const std::vector< string > &names) |
void | set_mesh (const Mesh &mesh) |
void | set_input_list (Input::Array input_list) |
void | flags_add (FieldFlag::Flags::Mask mask) |
bool | set_time (const TimeStep &time, LimitSide limit_side) |
void | output_type (OutputTime::DiscreteSpace rt) |
void | mark_input_times (const TimeGovernor &tg) |
bool | changed () const |
bool | is_constant (Region reg) const |
bool | is_jump_time () const |
FieldCommon & | add_field (FieldCommon *field, const string &name, const string &desc, const string &d_val="") |
Static Public Member Functions | |
static const Input::Type::Selection & | get_bc_type_selection () |
Return a Selection corresponding to enum BC_Type. More... | |
Public Attributes | |
Field< 3, FieldValue< 3 >::TensorFixed > | anisotropy |
Field< 3, FieldValue< 3 >::Scalar > | conductivity |
Field< 3, FieldValue< 3 >::Scalar > | cross_section |
Field< 3, FieldValue< 3 >::Scalar > | water_source_density |
Field< 3, FieldValue< 3 >::Scalar > | sigma |
BCField< 3, FieldValue< 3 >::Enum > | bc_type |
BCField< 3, FieldValue< 3 >::Scalar > | bc_pressure |
BCField< 3, FieldValue< 3 >::Scalar > | bc_flux |
BCField< 3, FieldValue< 3 >::Scalar > | bc_robin_sigma |
BCField< 3, FieldValue< 3 >::Scalar > | bc_switch_pressure |
Field< 3, FieldValue< 3 >::Scalar > | init_pressure |
Field< 3, FieldValue< 3 >::Scalar > | storativity |
arma::vec4 | gravity_ |
arma::vec3 | gravity_vec_ |
Mesh * | mesh |
MH_DofHandler * | mh_dh |
RichardsSystem | system_ |
uint | water_balance_idx_ |
Additional Inherited Members | |
Static Public Attributes inherited from FieldFlag | |
static constexpr unsigned int | flags_size_ = 3 |
Number of bits used by Field itself. More... | |
static constexpr Mask | equation_input {1 << 0} |
The field is data parameter of the owning equation. (default on) More... | |
static constexpr Mask | declare_input {1 << 1} |
The field can be set from input. The key in input field descriptor is declared. (default on) More... | |
static constexpr Mask | allow_output {1 << 2} |
The field can output. Is part of generated output selection. (default on) More... | |
static constexpr Mask | input_copy = ~declare_input & equation_input |
static constexpr Mask | in_time_term {1 << 8} |
A field is part of time term of the equation. More... | |
static constexpr Mask | in_main_matrix {1 << 9} |
A field is part of main "stiffness matrix" of the equation. More... | |
static constexpr Mask | in_rhs {1 << 10} |
A field is part of the right hand side of the equation. More... | |
static constexpr Mask | equation_result = allow_output & ~declare_input & ~equation_input |
Match result fields. These are never given by input or copy of input. More... | |
static constexpr Mask | equation_external_output = allow_output & input_copy |
Match an output field, that can be also copy of other field. More... | |
Protected Attributes inherited from FieldSet | |
std::vector< FieldCommon * > | field_list |
List of all fields. More... | |
Class with all fields used in the equation DarcyFlow. This is common to all implementations since this provides interface to this equation for possible coupling.
Definition at line 155 of file darcy_flow_mh.hh.
For compatibility with old BCD file we have to assign integer codes starting from 1.
Enumerator | |
---|---|
none | |
dirichlet | |
total_flux | |
seepage | |
river |
Definition at line 161 of file darcy_flow_mh.hh.
DarcyMH::EqData::EqData | ( | ) |
Creation of all fields.
Definition at line 184 of file darcy_flow_mh.cc.
|
static |
Return a Selection corresponding to enum BC_Type.
Definition at line 87 of file darcy_flow_mh.cc.
Field<3, FieldValue<3>::TensorFixed > DarcyMH::EqData::anisotropy |
Definition at line 176 of file darcy_flow_mh.hh.
BCField<3, FieldValue<3>::Scalar > DarcyMH::EqData::bc_flux |
Definition at line 184 of file darcy_flow_mh.hh.
BCField<3, FieldValue<3>::Scalar > DarcyMH::EqData::bc_pressure |
Definition at line 183 of file darcy_flow_mh.hh.
BCField<3, FieldValue<3>::Scalar > DarcyMH::EqData::bc_robin_sigma |
Definition at line 185 of file darcy_flow_mh.hh.
BCField<3, FieldValue<3>::Scalar > DarcyMH::EqData::bc_switch_pressure |
Definition at line 186 of file darcy_flow_mh.hh.
BCField<3, FieldValue<3>::Enum > DarcyMH::EqData::bc_type |
Definition at line 182 of file darcy_flow_mh.hh.
Field<3, FieldValue<3>::Scalar > DarcyMH::EqData::conductivity |
Definition at line 177 of file darcy_flow_mh.hh.
Field<3, FieldValue<3>::Scalar > DarcyMH::EqData::cross_section |
Definition at line 178 of file darcy_flow_mh.hh.
arma::vec4 DarcyMH::EqData::gravity_ |
Gravity vector and constant shift of pressure potential. Used to convert piezometric head to pressure head and vice versa.
Definition at line 195 of file darcy_flow_mh.hh.
arma::vec3 DarcyMH::EqData::gravity_vec_ |
Definition at line 196 of file darcy_flow_mh.hh.
Field<3, FieldValue<3>::Scalar > DarcyMH::EqData::init_pressure |
Definition at line 188 of file darcy_flow_mh.hh.
Mesh* DarcyMH::EqData::mesh |
Definition at line 198 of file darcy_flow_mh.hh.
MH_DofHandler* DarcyMH::EqData::mh_dh |
Definition at line 199 of file darcy_flow_mh.hh.
Field<3, FieldValue<3>::Scalar > DarcyMH::EqData::sigma |
Definition at line 180 of file darcy_flow_mh.hh.
Field<3, FieldValue<3>::Scalar > DarcyMH::EqData::storativity |
Definition at line 189 of file darcy_flow_mh.hh.
RichardsSystem DarcyMH::EqData::system_ |
Definition at line 201 of file darcy_flow_mh.hh.
uint DarcyMH::EqData::water_balance_idx_ |
Definition at line 202 of file darcy_flow_mh.hh.
Field<3, FieldValue<3>::Scalar > DarcyMH::EqData::water_source_density |
Definition at line 179 of file darcy_flow_mh.hh.