36 return IT::Record(
"Sorption",
"Sorption model in the reaction term of transport.")
40 IT::Default(
"\"conc_solid\""),
"List of fields to write to output stream.")
55 Input::register_class< SorptionSimple, Mesh &, Input::Record >(
"Sorption") +
73 for(
unsigned int i_subst = 0; i_subst <
n_substances_; i_subst++)
75 double mult_coef = mult_coef_vec[i_subst];
76 double second_coef = second_coef_vec[i_subst];
77 Isotherm & isotherm = isotherms_vec[i_subst];
80 double scale_aqua = por_m,
83 bool limited_solubility_on =
false;
86 limited_solubility_on =
false;
89 limited_solubility_on =
true;
99 if ( scale_sorbed <= 0.0)
100 xprintf(
UsrErr,
"Scaling parameter in sorption is not positive. Check the input for rock density and molar mass of %d. substance.",i_subst);
103 solvent_density_, scale_aqua, scale_sorbed, table_limit, mult_coef, second_coef);
107 END_TIMER(
"SorptionSimple::isotherm_reinit");
116 const string &output_conc_name,
117 const string &output_selection_name)
123 .
name(
"porosity_immobile");
136 return IT::Record(
"SorptionMobile",
"Sorption model in the mobile zone, following the dual porosity model.")
140 IT::Default(
"\"conc_solid\""),
"List of fields to write to output stream.")
146 Input::register_class< SorptionMob, Mesh &, Input::Record >(
"SorptionMobile") +
151 :
SorptionDual(init_mesh, in_rec,
"conc_solid",
"SorptionMobile_Output")
174 double phi = por_m/(por_m + por_imm);
181 for(
unsigned int i_subst = 0; i_subst <
n_substances_; i_subst++)
183 double mult_coef = mult_coef_vec[i_subst];
184 double second_coef = second_coef_vec[i_subst];
185 Isotherm & isotherm = isotherms_vec[i_subst];
188 double scale_aqua = por_m,
191 bool limited_solubility_on;
194 limited_solubility_on =
false;
198 limited_solubility_on =
true;
208 if ( scale_sorbed <= 0.0)
209 xprintf(
UsrErr,
"Scaling parameter in sorption is not positive. Check the input for rock density and molar mass of %d. substance.",i_subst);
212 solvent_density_, scale_aqua, scale_sorbed, table_limit, mult_coef, second_coef);
216 END_TIMER(
"SorptionMob::isotherm_reinit");
225 return IT::Record(
"SorptionImmobile",
"Sorption model in the immobile zone, following the dual porosity model.")
229 IT::Default(
"\"conc_immobile_solid\""),
"List of fields to write to output stream.")
234 Input::register_class< SorptionImmob, Mesh &, Input::Record >(
"SorptionImmobile") +
238 :
SorptionDual(init_mesh, in_rec,
"conc_immobile_solid",
"SorptionImmobile_Output")
260 double phi = por_m/(por_m + por_imm);
267 for(
unsigned int i_subst = 0; i_subst <
n_substances_; i_subst++)
269 double mult_coef = mult_coef_vec[i_subst];
270 double second_coef = second_coef_vec[i_subst];
271 Isotherm & isotherm = isotherms_vec[i_subst];
274 double scale_aqua = por_imm,
277 bool limited_solubility_on;
280 limited_solubility_on =
false;
284 limited_solubility_on =
true;
294 if ( scale_sorbed <= 0.0)
295 xprintf(
UsrErr,
"Scaling parameter in sorption is not positive. Check the input for rock density and molar mass of %d. substance.",i_subst);
298 solvent_density_, scale_aqua, scale_sorbed, table_limit, mult_coef, second_coef);
302 END_TIMER(
"SorptionImmob::isotherm_reinit");
~SorptionDual(void)
Destructor.
static Input::Type::Abstract & get_input_type()
FieldCommon & flags_add(FieldFlag::Flags::Mask mask)
~SorptionMob(void)
Destructor.
Abstract class of sorption model in case dual porosity is considered.
SubstanceList substances_
Names belonging to substances.
Field< 3, FieldValue< 3 >::Scalar > rock_density
Rock matrix density.
void isotherm_reinit(std::vector< Isotherm > &isotherms_vec, const ElementAccessor< 3 > &elem) override
Reinitializes the isotherm.
static const Input::Type::Record & get_input_type()
std::vector< double > table_limit_
void reinit(enum SorptionType sorption_type, bool limited_solubility_on, double aqua_density, double scale_aqua, double scale_sorbed, double c_aqua_limit, double mult_coef, double second_coef)
std::vector< unsigned int > substance_global_idx_
Mapping from local indexing of substances to global.
MultiField< 3, FieldValue< 3 >::Scalar > isotherm_other
Langmuir sorption coeficients alpha (in fraction c_s = omega * (alpha*c_a)/(1- alpha*c_a)).
Field< 3, FieldValue< 3 >::Scalar > porosity
Porosity field copied from transport.
Field< 3, FieldValue< 3 >::Scalar > immob_porosity_
static constexpr Mask input_copy
A field that is input of its equation and can not read from input, thus must be set by copy...
std::vector< double > solubility_vec_
#define START_TIMER(tag)
Starts a timer with specified tag.
static const Input::Type::Record & get_input_type()
MultiField< 3, FieldValue< 3 >::Scalar > isotherm_mult
Multiplication coefficients (k, omega) for all types of isotherms.
virtual Value::return_type const & value(const Point &p, const ElementAccessor< spacedim > &elm) const
MultiField< 3, FieldValue< 3 >::Enum > sorption_type
Discrete need Selection for initialization.
static Input::Type::Selection make_output_selection(const string &output_field_name, const string &selection_name)
SorptionType
Type of adsorption isotherm.
SorptionImmob(Mesh &init_mesh, Input::Record in_rec)
Constructor.
static const int registrar
Registrar of class to factory.
virtual MultiFieldValue::return_type value(const Point &p, const ElementAccessor< spacedim > &elm) const
void isotherm_reinit(std::vector< Isotherm > &isotherms, const ElementAccessor< 3 > &elm) override
Reinitializes the isotherm.
SorptionSimple(Mesh &init_mesh, Input::Record in_rec)
Constructor.
static const int registrar
Registrar of class to factory.
~SorptionSimple(void)
Destructor.
FieldCommon & name(const string &name)
static const int registrar
Registrar of class to factory.
#define END_TIMER(tag)
Ends a timer with specified tag.
arma::vec::fixed< spacedim > centre() const
Simple sorption model without dual porosity.
static const Input::Type::Record & get_input_type()
unsigned int n_substances_
SorptionDual(Mesh &init_mesh, Input::Record in_rec, const string &output_conc_name, const string &output_selection_name)
Constructor.
EqData * data_
Pointer to equation data. The object is constructed in descendants.
void isotherm_reinit(std::vector< Isotherm > &isotherms_vec, const ElementAccessor< 3 > &elem) override
Reinitializes the isotherm.
Other possible transformation of coordinates:
static const Input::Type::Record & get_input_type()
This file contains classes representing sorption model. Sorption model can be computed both in case t...
#define FLOW123D_FORCE_LINK_IN_CHILD(x)
SorptionMob(Mesh &init_mesh, Input::Record in_rec)
Constructor.
~SorptionImmob(void)
Destructor.