36 return IT::Record(
"Sorption",
"Sorption model in the reaction term of transport.")
39 .
declare_key(
"output", make_output_type(
"Sorption",
"conc_solid",
"Concentration solution in the solid phase."),
41 "Setting of the fields output.")
49 data_ =
new EqData(
"conc_solid",
"Concentration solution in the solid phase.");
54 Input::register_class< SorptionSimple, Mesh &, Input::Record >(
"Sorption") +
67 for(
unsigned int i_subst = 0; i_subst <
n_substances_; i_subst++)
71 Isotherm & isotherm = isotherms_vec[i_subst];
74 double scale_aqua = por_m,
75 scale_sorbed = (1 - por_m) * rock_density;
77 bool limited_solubility_on =
false;
80 limited_solubility_on =
false;
83 limited_solubility_on =
true;
93 if ( scale_sorbed <= 0.0)
94 xprintf(
UsrErr,
"Scaling parameter in sorption is not positive. Check the input for rock density and molar mass of %d. substance.",i_subst);
97 solvent_density_, scale_aqua, scale_sorbed, table_limit, mult_coef, second_coef);
101 END_TIMER(
"SorptionSimple::isotherm_reinit");
110 const string &output_conc_name,
111 const string &output_conc_desc)
114 data_ =
new EqData(output_conc_name, output_conc_desc);
117 .
name(
"porosity_immobile")
130 return IT::Record(
"SorptionMobile",
"Sorption model in the mobile zone, following the dual porosity model.")
135 "Setting of the fields output.")
142 Input::register_class< SorptionMob, Mesh &, Input::Record >(
"SorptionMobile") +
147 :
SorptionDual(init_mesh, in_rec,
"conc_solid",
"Concentration solution in the solid mobile phase.")
170 double phi = por_m/(por_m + por_imm);
172 for(
unsigned int i_subst = 0; i_subst <
n_substances_; i_subst++)
176 Isotherm & isotherm = isotherms_vec[i_subst];
179 double scale_aqua = por_m,
180 scale_sorbed = phi * (1 - por_m - por_imm) * rock_density;
182 bool limited_solubility_on;
185 limited_solubility_on =
false;
189 limited_solubility_on =
true;
199 if ( scale_sorbed <= 0.0)
200 xprintf(
UsrErr,
"Scaling parameter in sorption is not positive. Check the input for rock density and molar mass of %d. substance.",i_subst);
203 solvent_density_, scale_aqua, scale_sorbed, table_limit, mult_coef, second_coef);
207 END_TIMER(
"SorptionMob::isotherm_reinit");
216 return IT::Record(
"SorptionImmobile",
"Sorption model in the immobile zone, following the dual porosity model.")
219 .
declare_key(
"output",
make_output_type(
"SorptionImmobile",
"conc_immobile_solid",
"Concentration solution in the solid immobile phase."),
220 IT::Default(
"{ \"fields\": [ \"conc_immobile_solid\" ] }"),
221 "Setting of the fields output.")
227 Input::register_class< SorptionImmob, Mesh &, Input::Record >(
"SorptionImmobile") +
231 :
SorptionDual(init_mesh, in_rec,
"conc_immobile_solid",
"Concentration solution in the solid immobile phase.")
253 double phi = por_m/(por_m + por_imm);
255 for(
unsigned int i_subst = 0; i_subst <
n_substances_; i_subst++)
259 Isotherm & isotherm = isotherms_vec[i_subst];
262 double scale_aqua = por_imm,
263 scale_sorbed = (1 - phi) * (1 - por_m - por_imm) * rock_density;
265 bool limited_solubility_on;
268 limited_solubility_on =
false;
272 limited_solubility_on =
true;
282 if ( scale_sorbed <= 0.0)
283 xprintf(
UsrErr,
"Scaling parameter in sorption is not positive. Check the input for rock density and molar mass of %d. substance.",i_subst);
286 solvent_density_, scale_aqua, scale_sorbed, table_limit, mult_coef, second_coef);
290 END_TIMER(
"SorptionImmob::isotherm_reinit");
~SorptionDual(void)
Destructor.
FieldCommon & flags_add(FieldFlag::Flags::Mask mask)
static Input::Type::Instance make_output_type(const string &equation_name, const string &output_field_name, const string &output_field_desc)
~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()
SorptionDual(Mesh &init_mesh, Input::Record in_rec, const string &output_conc_name, const string &output_conc_desc)
Constructor.
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.
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_
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.