Flow123d  master-f44eb46
Public Member Functions | Public Attributes | List of all members
HM_Iterative::EqFields Class Reference

#include <hm_iterative.hh>

Inheritance diagram for HM_Iterative::EqFields:
Inheritance graph
[legend]
Collaboration diagram for HM_Iterative::EqFields:
Collaboration graph
[legend]

Public Member Functions

 EqFields ()
 
void initialize (Mesh &mesh, HM_Iterative::EqData &eq_data, const TimeGovernor *time_, double beta_)
 
- Public Member Functions inherited from FieldSet
 TYPEDEF_ERR_INFO (EI_FieldType, std::string)
 
 DECLARE_INPUT_EXCEPTION (ExcUnknownField,<< "Unknown field "<< FieldCommon::EI_Field::qval<< " in the "<< EI_FieldType::val<< ": \n")
 
 DECLARE_INPUT_EXCEPTION (ExcFieldExists,<< "Field "<< FieldCommon::EI_Field::qval<< " exists in equation. You cannot set user field of same name.\n")
 
 FieldSet ()
 Default constructor. More...
 
Input::Type::Record make_field_descriptor_type (const std::string &equation_name) const
 
void set_field (const std::string &dest_field_name, FieldCommon &source)
 
FieldCommonfield (const std::string &field_name) const
 
FieldCommonoperator[] (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, const TimeGovernor &tg)
 
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
 
void cache_reallocate (const ElementCacheMap &cache_map, FieldSet &used_fieldset)
 
void cache_update (ElementCacheMap &cache_map)
 
void set_dependency (FieldSet &used_fieldset)
 
void add_coords_field ()
 
void set_surface_depth (std::shared_ptr< SurfaceDepth > surface_depth)
 Set surface depth object to "d" field. More...
 
Range< FieldListAccessorfields_range () const
 Returns range of Fields held in field_list. More...
 
const Meshmesh () const
 Returns pointer to mesh. More...
 
std::string print_dependency () const
 Return order of evaluated fields by dependency and region_idx. More...
 
void set_default_fieldset ()
 

Public Attributes

Field< 3, FieldValue< 3 >::Scalar > alpha
 Biot coefficient. More...
 
Field< 3, FieldValue< 3 >::Scalar > density
 Density of fluid. More...
 
Field< 3, FieldValue< 3 >::Scalar > gravity
 Standard gravity. More...
 
Field< 3, FieldValue< 3 >::Scalar > beta
 
Field< 3, FieldValue< 3 >::Scalar > pressure_potential
 Potential -alpha*pressure whose gradient is passed to mechanics as additional load. More...
 
Field< 3, FieldValue< 3 >::Scalar > ref_pressure_potential
 Potential of reference (prescribed) pressure from flow b.c. TODO: Swith to BCField when possible. More...
 
Field< 3, FieldValue< 3 >::Scalar > flow_source
 
Field< 3, FieldValue< 3 >::Scalar > old_pressure
 
Field< 3, FieldValue< 3 >::Scalar > old_iter_pressure
 
Field< 3, FieldValue< 3 >::Scalar > old_div_u
 
std::shared_ptr< FieldFE< 3, FieldValue< 3 >::Scalar > > ref_potential_ptr_
 FieldFE for pressure_potential field. More...
 
std::shared_ptr< FieldFE< 3, FieldValue< 3 >::Scalar > > old_iter_pressure_ptr_
 
std::shared_ptr< FieldFE< 3, FieldValue< 3 >::Scalar > > old_div_u_ptr_
 

Additional Inherited Members

- Public Types inherited from FieldSet
enum  UserFieldShape { scalar , vector , tensor }
 
- Public Types inherited from FieldFlag
typedef FlagArray< FieldFlagFlags
 
typedef Flags::Mask Mask
 
- Static Public Member Functions inherited from FieldSet
static const Input::Type::Selectionget_user_field_shape_selection ()
 Input selection of user field shape. More...
 
static const Input::Type::Recordmake_user_field_type (const std::string &equation_name)
 Declare input record type of field defined by user. More...
 
- 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 Member Functions inherited from FieldSet
void topological_sort (const FieldCommon *f, unsigned int i_reg, std::unordered_set< const FieldCommon * > &used_fields)
 Helper method sort used fields by dependency. More...
 
- Protected Attributes inherited from FieldSet
std::vector< FieldCommon * > field_list
 List of all fields. More...
 
const Meshmesh_
 Pointer to the mesh. More...
 
std::map< unsigned int, std::vector< const FieldCommon * > > region_field_update_order_
 
FieldCoords X_
 Field holds coordinates for computing of FieldFormulas. More...
 
FieldDepth depth_
 Field holds surface depth for computing of FieldFormulas. More...
 

Detailed Description

Definition at line 150 of file hm_iterative.hh.

Constructor & Destructor Documentation

◆ EqFields()

HM_Iterative::EqFields::EqFields ( )

Definition at line 112 of file hm_iterative.cc.

Member Function Documentation

◆ initialize()

void HM_Iterative::EqFields::initialize ( Mesh mesh,
HM_Iterative::EqData eq_data,
const TimeGovernor time_,
double  beta_ 
)

Definition at line 171 of file hm_iterative.cc.

Member Data Documentation

◆ alpha

Field<3, FieldValue<3>::Scalar> HM_Iterative::EqFields::alpha

Biot coefficient.

Definition at line 157 of file hm_iterative.hh.

◆ beta

Field<3, FieldValue<3>::Scalar> HM_Iterative::EqFields::beta

Definition at line 160 of file hm_iterative.hh.

◆ density

Field<3, FieldValue<3>::Scalar> HM_Iterative::EqFields::density

Density of fluid.

Definition at line 158 of file hm_iterative.hh.

◆ flow_source

Field<3, FieldValue<3>::Scalar> HM_Iterative::EqFields::flow_source

Definition at line 165 of file hm_iterative.hh.

◆ gravity

Field<3, FieldValue<3>::Scalar> HM_Iterative::EqFields::gravity

Standard gravity.

Definition at line 159 of file hm_iterative.hh.

◆ old_div_u

Field<3, FieldValue<3>::Scalar> HM_Iterative::EqFields::old_div_u

Definition at line 168 of file hm_iterative.hh.

◆ old_div_u_ptr_

std::shared_ptr<FieldFE<3, FieldValue<3>::Scalar> > HM_Iterative::EqFields::old_div_u_ptr_

Definition at line 173 of file hm_iterative.hh.

◆ old_iter_pressure

Field<3, FieldValue<3>::Scalar> HM_Iterative::EqFields::old_iter_pressure

Definition at line 167 of file hm_iterative.hh.

◆ old_iter_pressure_ptr_

std::shared_ptr<FieldFE<3, FieldValue<3>::Scalar> > HM_Iterative::EqFields::old_iter_pressure_ptr_

Definition at line 172 of file hm_iterative.hh.

◆ old_pressure

Field<3, FieldValue<3>::Scalar> HM_Iterative::EqFields::old_pressure

Definition at line 166 of file hm_iterative.hh.

◆ pressure_potential

Field<3, FieldValue<3>::Scalar> HM_Iterative::EqFields::pressure_potential

Potential -alpha*pressure whose gradient is passed to mechanics as additional load.

Definition at line 163 of file hm_iterative.hh.

◆ ref_potential_ptr_

std::shared_ptr<FieldFE<3, FieldValue<3>::Scalar> > HM_Iterative::EqFields::ref_potential_ptr_

FieldFE for pressure_potential field.

Definition at line 171 of file hm_iterative.hh.

◆ ref_pressure_potential

Field<3, FieldValue<3>::Scalar> HM_Iterative::EqFields::ref_pressure_potential

Potential of reference (prescribed) pressure from flow b.c. TODO: Swith to BCField when possible.

Definition at line 164 of file hm_iterative.hh.


The documentation for this class was generated from the following files: