36 return IT::Record(
"Sorption",
"Sorption model in the reaction term of transport.")
41 .
declare_key(
"output", make_output_type(
"Sorption",
"conc_solid"),
43 "Setting of the fields output.")
59 Input::register_class< SorptionSimple, Mesh &, Input::Record >(
"Sorption") +
72 for(
unsigned int i_subst = 0; i_subst <
n_substances_; i_subst++)
76 Isotherm & isotherm = isotherms_vec[i_subst];
79 double scale_aqua = por_m,
80 scale_sorbed = (1 - por_m) * rock_density;
82 bool limited_solubility_on =
false;
85 limited_solubility_on =
false;
88 limited_solubility_on =
true;
98 if ( scale_sorbed <= 0.0)
99 xprintf(
UsrErr,
"Scaling parameter in sorption is not positive. Check the input for rock density and molar mass of %d. substance.",i_subst);
102 solvent_density_, scale_aqua, scale_sorbed, table_limit, mult_coef, second_coef);
106 END_TIMER(
"SorptionSimple::isotherm_reinit");
115 const string &output_conc_name,
116 const string &output_selection_name)
122 .
name(
"porosity_immobile")
136 return IT::Record(
"SorptionMobile",
"Sorption model in the mobile zone, following the dual porosity model.")
143 "Setting of the fields output.")
150 Input::register_class< SorptionMob, Mesh &, Input::Record >(
"SorptionMobile") +
155 :
SorptionDual(init_mesh, in_rec,
"conc_solid",
"SorptionMobile_Output")
178 double phi = por_m/(por_m + por_imm);
180 for(
unsigned int i_subst = 0; i_subst <
n_substances_; i_subst++)
184 Isotherm & isotherm = isotherms_vec[i_subst];
187 double scale_aqua = por_m,
188 scale_sorbed = phi * (1 - por_m - por_imm) * rock_density;
190 bool limited_solubility_on;
193 limited_solubility_on =
false;
197 limited_solubility_on =
true;
207 if ( scale_sorbed <= 0.0)
208 xprintf(
UsrErr,
"Scaling parameter in sorption is not positive. Check the input for rock density and molar mass of %d. substance.",i_subst);
211 solvent_density_, scale_aqua, scale_sorbed, table_limit, mult_coef, second_coef);
215 END_TIMER(
"SorptionMob::isotherm_reinit");
224 return IT::Record(
"SorptionImmobile",
"Sorption model in the immobile zone, following the dual porosity model.")
230 IT::Default(
"{ \"fields\": [ \"conc_immobile_solid\" ] }"),
231 "Setting of the fields output.")
237 Input::register_class< SorptionImmob, Mesh &, Input::Record >(
"SorptionImmobile") +
241 :
SorptionDual(init_mesh, in_rec,
"conc_immobile_solid",
"SorptionImmobile_Output")
263 double phi = por_m/(por_m + por_imm);
265 for(
unsigned int i_subst = 0; i_subst <
n_substances_; i_subst++)
269 Isotherm & isotherm = isotherms_vec[i_subst];
272 double scale_aqua = por_imm,
273 scale_sorbed = (1 - phi) * (1 - por_m - por_imm) * rock_density;
275 bool limited_solubility_on;
278 limited_solubility_on =
false;
282 limited_solubility_on =
true;
292 if ( scale_sorbed <= 0.0)
293 xprintf(
UsrErr,
"Scaling parameter in sorption is not positive. Check the input for rock density and molar mass of %d. substance.",i_subst);
296 solvent_density_, scale_aqua, scale_sorbed, table_limit, mult_coef, second_coef);
300 END_TIMER(
"SorptionImmob::isotherm_reinit");
~SorptionDual(void)
Destructor.
FieldCommon & flags_add(FieldFlag::Flags::Mask mask)
~SorptionMob(void)
Destructor.
Abstract class of sorption model in case dual porosity is considered.
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()
static Input::Type::Abstract & it_abstract_mobile_term()
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)
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
std::vector< double > solubility_vec_
#define START_TIMER(tag)
Starts a timer with specified tag.
static const Input::Type::Record & get_input_type()
static Input::Type::Abstract & it_abstract_immobile_term()
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::Instance make_output_type(const string &equation_name, const string &output_field_name)
SorptionType
Type of adsorption isotherm.
static Input::Type::Abstract & it_abstract_term()
SorptionImmob(Mesh &init_mesh, Input::Record in_rec)
Constructor.
static const int registrar
Registrar of class to factory.
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()
FieldCommon & set_limits(double min, double max=std::numeric_limits< double >::max())
MultiField< 3, FieldValue< 3 >::Scalar > distribution_coefficient
Multiplication coefficients (k, omega) for all types of isotherms.
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.