Flow123d
master-f44eb46
|
Coupling of a transport model with a reaction model by operator splitting. More...
#include <transport_operator_splitting.hh>
Public Types | |
typedef AdvectionProcessBase | FactoryBaseType |
Public Member Functions | |
TransportOperatorSplitting (Mesh &init_mesh, const Input::Record in_rec) | |
Constructor. More... | |
virtual | ~TransportOperatorSplitting () |
Destructor. More... | |
void | initialize () override |
void | zero_time_step () override |
void | update_solution () override |
void | compute_until_save_time () |
void | compute_internal_step () |
void | output_data () override |
Write computed fields. More... | |
Public Member Functions inherited from AdvectionProcessBase | |
AdvectionProcessBase (Mesh &mesh, const Input::Record in_rec) | |
Public Member Functions inherited from EquationBase | |
EquationBase () | |
EquationBase (Mesh &mesh, const Input::Record in_rec) | |
virtual | ~EquationBase () |
virtual void | choose_next_time () |
virtual void | set_time_upper_constraint (double dt, std::string message) |
virtual void | set_time_lower_constraint (double dt, std::string message) |
TimeGovernor & | time () |
virtual void | set_time_governor (TimeGovernor &time) |
double | planned_time () |
virtual double | solved_time () |
Mesh & | mesh () |
std::shared_ptr< Balance > | balance () const |
TimeMark::Type | mark_type () |
FieldSet & | eq_fieldset () |
std::shared_ptr< FieldSet > | eq_fieldset_ptr () |
void | init_user_fields (Input::Array user_fields, FieldSet &output_fields) |
Static Public Member Functions | |
static const Input::Type::Record & | get_input_type () |
Declare input record type for the equation TransportOperatorSplittiong. More... | |
Static Public Member Functions inherited from AdvectionProcessBase | |
static Input::Type::Abstract & | get_input_type () |
Common specification of the input record for secondary equations. More... | |
Static Public Member Functions inherited from EquationBase | |
static Input::Type::Record & | record_template () |
Template Record with common keys for derived equations. More... | |
static Input::Type::Record & | user_fields_template (std::string equation_name) |
Template Record with common key user_fields for derived equations. More... | |
Private Attributes | |
std::shared_ptr< ConcentrationTransportBase > | convection |
std::shared_ptr< ReactionTerm > | reaction |
double | cfl_convection |
Time restriction due to transport. More... | |
Static Private Attributes | |
static const int | registrar |
Registrar of class to factory. More... | |
Additional Inherited Members | |
Protected Attributes inherited from EquationBase | |
bool | equation_empty_ |
flag is true if only default constructor was called More... | |
Mesh * | mesh_ |
TimeGovernor * | time_ |
Input::Record | input_record_ |
std::shared_ptr< FieldSet > | eq_fieldset_ |
std::shared_ptr< Balance > | balance_ |
object for calculation and writing the mass balance to file. More... | |
Coupling of a transport model with a reaction model by operator splitting.
Outline: Transport model is any descendant of TransportBase (even TransportOperatorSplitting itself). This should perform the transport possibly with diffusion and usually without coupling between substances and phases.
Reaction is any descendant of the ReactionBase class. This represents reactions in general way of any coupling that happens between substances and phases on one element or more generally on one DoF.
Definition at line 205 of file transport_operator_splitting.hh.
Definition at line 207 of file transport_operator_splitting.hh.
TransportOperatorSplitting::TransportOperatorSplitting | ( | Mesh & | init_mesh, |
const Input::Record | in_rec | ||
) |
Constructor.
Definition at line 156 of file transport_operator_splitting.cc.
|
virtual |
Destructor.
Definition at line 219 of file transport_operator_splitting.cc.
void TransportOperatorSplitting::compute_internal_step | ( | ) |
void TransportOperatorSplitting::compute_until_save_time | ( | ) |
|
static |
Declare input record type for the equation TransportOperatorSplittiong.
TODO: The question is if this should be a general coupling class (e.g. allow coupling TranportDG with reactions even if it is not good idea for numerical reasons.) To make this a coupling class we should modify all main input files for transport problems.
Definition at line 69 of file transport_operator_splitting.cc.
|
overridevirtual |
This method should initialize fields of the equation. All members (e.g. number of components) that are necessary for the field initialization must be set between construction and call of initialize. After this method the upper level coupling may set sharing of some fields between equations.
Reimplemented from EquationBase.
Definition at line 227 of file transport_operator_splitting.cc.
|
overridevirtual |
Write computed fields.
Reimplemented from EquationBase.
Definition at line 242 of file transport_operator_splitting.cc.
|
overridevirtual |
Calculation of the next time step and its output.
Reimplemented from EquationBase.
Definition at line 270 of file transport_operator_splitting.cc.
|
overridevirtual |
Initialization of the solution in the zero time.
There may be fields that can not be initialized in the initialize method as they are provided by the coupling. Fields coming from coupling has to be set after the initialize method and before zero_time_step.
Reimplemented from EquationBase.
Definition at line 255 of file transport_operator_splitting.cc.
|
private |
Time restriction due to transport.
Definition at line 240 of file transport_operator_splitting.hh.
|
private |
Definition at line 237 of file transport_operator_splitting.hh.
|
private |
Definition at line 238 of file transport_operator_splitting.hh.
|
staticprivate |
Registrar of class to factory.
Definition at line 235 of file transport_operator_splitting.hh.