Flow123d  JS_before_hm-1801-ga009cfea3
sorption.cc
Go to the documentation of this file.
1 /*!
2  *
3  * Copyright (C) 2015 Technical University of Liberec. All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU General Public License version 3 as published by the
7  * Free Software Foundation. (http://www.gnu.org/licenses/gpl-3.0.en.html)
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12  *
13  *
14  * @file sorption.cc
15  * @brief
16  */
17 
18 #include <vector>
19 #include <limits>
20 
21 #include "reaction/isotherm.hh"
22 #include "reaction/sorption.hh"
23 #include "system/sys_profiler.hh"
24 #include "system/asserts.hh"
25 #include "mesh/accessors.hh"
26 #include "input/factory.hh"
27 
28 FLOW123D_FORCE_LINK_IN_CHILD(sorptionMobile)
29 FLOW123D_FORCE_LINK_IN_CHILD(sorptionImmobile)
31 
32 
33 /********************************* SORPTION_SIMPLE *********************************************************/
34 /********************************* *********************************************************/
35 
36 const IT::Record & SorptionSimple::get_input_type() {
37  return IT::Record("Sorption", "Sorption model in the reaction term of transport.")
40  .declare_key("output", make_output_type("Sorption", "conc_solid", "Concentration solution in the solid phase."),
41  IT::Default("{ \"fields\": [ \"conc_solid\" ] }"),
42  "Setting of the fields output.")
43 
44  .close();
45 }
46 
48  : SorptionBase(init_mesh, in_rec)
49 {
50  data_ = new EqData("conc_solid", "Concentration solution in the solid phase.");
51  this->eq_fieldset_ = data_;
52 }
53 
54 const int SorptionSimple::registrar =
55  Input::register_class< SorptionSimple, Mesh &, Input::Record >("Sorption") +
57 
59 {}
60 
62 {
63  double rock_density = data_->rock_density.value(elem.centre(),elem);
64  double por_m = data_->porosity.value(elem.centre(),elem);
65 
66  this->common_ele_data.scale_aqua = por_m;
67  this->common_ele_data.scale_sorbed = (1 - por_m) * rock_density;
69 }
70 
71 
72 /*********************************** *********************************************************/
73 /*********************************** SORPTION_DUAL *********************************************************/
74 /*********************************** *********************************************************/
75 
77  const string &output_conc_name,
78  const string &output_conc_desc)
79  : SorptionBase(init_mesh, in_rec)
80 {
81  data_ = new EqData(output_conc_name, output_conc_desc);
84  .name("porosity_immobile")
85  .set_limits(0.0);
86  this->eq_fieldset_ = data_;
87 }
88 
90 {}
91 
92 /********************************** *******************************************************/
93 /*********************************** SORPTION_MOBILE *******************************************************/
94 /********************************** *******************************************************/
95 
97  return IT::Record("SorptionMobile", "Sorption model in the mobile zone, following the dual porosity model.")
100  .declare_key("output", make_output_type("SorptionMobile", "conc_solid", "Concentration solution in the solid mobile phase."),
101  IT::Default("{ \"fields\": [ \"conc_solid\" ] }"),
102  "Setting of the fields output.")
103 
104  .close();
105 }
106 
107 
108 const int SorptionMob::registrar =
109  Input::register_class< SorptionMob, Mesh &, Input::Record >("SorptionMobile") +
111 
112 
114  : SorptionDual(init_mesh, in_rec, "conc_solid", "Concentration solution in the solid mobile phase.")
115 {}
116 
117 
119 {}
120 
122 {
123  double rock_density = data_->rock_density.value(elem.centre(),elem);
124  double por_m = data_->porosity.value(elem.centre(),elem);
125  double por_imm = immob_porosity_.value(elem.centre(),elem);
126  double phi = por_m/(por_m + por_imm);
127 
128  this->common_ele_data.scale_aqua = por_m;
129  this->common_ele_data.scale_sorbed = phi * (1 - por_m - por_imm) * rock_density;
130  this->common_ele_data.no_sorbing_surface_cond = 1-por_m-por_imm;
131 }
132 
133 
134 /*********************************** *****************************************************/
135 /*********************************** SORPTION_IMMOBILE *****************************************************/
136 /*********************************** *****************************************************/
137 
139  return IT::Record("SorptionImmobile", "Sorption model in the immobile zone, following the dual porosity model.")
142  .declare_key("output", make_output_type("SorptionImmobile", "conc_immobile_solid", "Concentration solution in the solid immobile phase."),
143  IT::Default("{ \"fields\": [ \"conc_immobile_solid\" ] }"),
144  "Setting of the fields output.")
145 
146  .close();
147 }
148 
149 const int SorptionImmob::registrar =
150  Input::register_class< SorptionImmob, Mesh &, Input::Record >("SorptionImmobile") +
152 
154 : SorptionDual(init_mesh, in_rec, "conc_immobile_solid", "Concentration solution in the solid immobile phase.")
155 {}
156 
158 {}
159 
161 {
162  double rock_density = data_->rock_density.value(elem.centre(),elem);
163  double por_m = data_->porosity.value(elem.centre(),elem);
164  double por_imm = immob_porosity_.value(elem.centre(),elem);
165  double phi = por_m/(por_m + por_imm);
166 
167  this->common_ele_data.scale_aqua = por_m;
168  this->common_ele_data.scale_sorbed = (1 - phi) * (1 - por_m - por_imm) * rock_density;
169  this->common_ele_data.no_sorbing_surface_cond = 1-por_m-por_imm;
170 }
SorptionDual::SorptionDual
SorptionDual(Mesh &init_mesh, Input::Record in_rec, const string &output_conc_name, const string &output_conc_desc)
Constructor.
Definition: sorption.cc:76
SorptionImmob::SorptionImmob
SorptionImmob(Mesh &init_mesh, Input::Record in_rec)
Constructor.
Definition: sorption.cc:153
SorptionSimple::compute_common_ele_data
void compute_common_ele_data(const ElementAccessor< 3 > &elem) override
Computes CommonElementData.
Definition: sorption.cc:61
SorptionDual::immob_porosity_
Field< 3, FieldValue< 3 >::Scalar > immob_porosity_
Definition: sorption.hh:99
SorptionBase::get_input_type
static const Input::Type::Record & get_input_type()
Definition: sorption_base.cc:54
SorptionBase::data_
EqData * data_
Pointer to equation data. The object is constructed in descendants.
Definition: sorption_base.hh:196
ReactionTerm::it_abstract_immobile_term
static Input::Type::Abstract & it_abstract_immobile_term()
Definition: reaction_term.cc:37
SorptionMob::SorptionMob
SorptionMob(Mesh &init_mesh, Input::Record in_rec)
Constructor.
Definition: sorption.cc:113
SorptionSimple::registrar
static const int registrar
Registrar of class to factory.
Definition: sorption.hh:71
factory.hh
SorptionMob::~SorptionMob
~SorptionMob(void)
Destructor.
Definition: sorption.cc:118
SorptionImmob::~SorptionImmob
~SorptionImmob(void)
Destructor.
Definition: sorption.cc:157
SorptionSimple::~SorptionSimple
~SorptionSimple(void)
Destructor.
Definition: sorption.cc:58
asserts.hh
Definitions of ASSERTS.
FLOW123D_FORCE_LINK_IN_CHILD
#define FLOW123D_FORCE_LINK_IN_CHILD(x)
Definition: global_defs.h:157
ElementAccessor< 3 >
SorptionImmob::compute_common_ele_data
void compute_common_ele_data(const ElementAccessor< 3 > &elem) override
Computes CommonElementData.
Definition: sorption.cc:160
FieldCommon::set_limits
FieldCommon & set_limits(double min, double max=std::numeric_limits< double >::max())
Definition: field_common.hh:156
SorptionBase::CommonElementData::no_sorbing_surface_cond
double no_sorbing_surface_cond
Definition: sorption_base.hh:247
SorptionBase
Definition: sorption_base.hh:59
FieldCommon::flags_add
FieldCommon & flags_add(FieldFlag::Flags::Mask mask)
Definition: field_common.hh:195
Input::Type::Record::size
unsigned int size() const
Returns number of keys in the Record.
Definition: type_record.hh:602
Input::Type::Default
Class Input::Type::Default specifies default value of keys of a Input::Type::Record.
Definition: type_record.hh:61
Input::Type::Record::derive_from
virtual Record & derive_from(Abstract &parent)
Method to derive new Record from an AbstractRecord parent.
Definition: type_record.cc:196
SorptionBase::EqData::rock_density
Field< 3, FieldValue< 3 >::Scalar > rock_density
Rock matrix density.
Definition: sorption_base.hh:91
accessors.hh
SorptionBase::make_output_type
static Input::Type::Instance make_output_type(const string &equation_name, const string &output_field_name, const string &output_field_desc)
Definition: sorption_base.hh:74
SorptionImmob::get_input_type
static const Input::Type::Record & get_input_type()
Definition: sorption.cc:138
SorptionBase::EqData
Definition: sorption_base.hh:79
Input::Record
Accessor to the data with type Type::Record.
Definition: accessors.hh:291
sys_profiler.hh
SorptionBase::EqData::porosity
Field< 3, FieldValue< 3 >::Scalar > porosity
Porosity field copied from transport.
Definition: sorption_base.hh:100
sorption.hh
This file contains classes representing sorption model. Sorption model can be computed both in case t...
SorptionMob::compute_common_ele_data
void compute_common_ele_data(const ElementAccessor< 3 > &elem) override
Computes CommonElementData.
Definition: sorption.cc:121
SorptionBase::CommonElementData::scale_sorbed
double scale_sorbed
Definition: sorption_base.hh:246
Input::Type::Record::declare_key
Record & declare_key(const string &key, std::shared_ptr< TypeBase > type, const Default &default_value, const string &description, TypeBase::attribute_map key_attributes=TypeBase::attribute_map())
Declares a new key of the Record.
Definition: type_record.cc:503
SorptionDual::~SorptionDual
~SorptionDual(void)
Destructor.
Definition: sorption.cc:89
isotherm.hh
SorptionSimple
Simple sorption model without dual porosity.
Definition: sorption.hh:52
FieldFlag::input_copy
static constexpr Mask input_copy
Definition: field_flag.hh:44
Input::Type::Record::close
Record & close() const
Close the Record for further declarations of keys.
Definition: type_record.cc:304
SorptionMob::get_input_type
static const Input::Type::Record & get_input_type()
Definition: sorption.cc:96
Input::Type
Definition: balance.hh:41
Input::Type::Record
Record type proxy class.
Definition: type_record.hh:182
Field::value
virtual const Value::return_type & value(const Point &p, const ElementAccessor< spacedim > &elm) const
Definition: field.hh:452
Mesh
Definition: mesh.h:98
Input::Type::Record::copy_keys
Record & copy_keys(const Record &other)
Copy keys from other record.
Definition: type_record.cc:216
ReactionTerm::it_abstract_term
static Input::Type::Abstract & it_abstract_term()
Definition: reaction_term.cc:25
SorptionMob::registrar
static const int registrar
Registrar of class to factory.
Definition: sorption.hh:125
SorptionBase::CommonElementData::scale_aqua
double scale_aqua
Definition: sorption_base.hh:245
SorptionSimple::get_input_type
static const Input::Type::Record & get_input_type()
Definition: sorption.cc:36
EquationBase::eq_fieldset_
FieldSet * eq_fieldset_
Definition: equation.hh:227
ReactionTerm::it_abstract_mobile_term
static Input::Type::Abstract & it_abstract_mobile_term()
Definition: reaction_term.cc:31
SorptionDual
Abstract class of sorption model in case dual porosity is considered.
Definition: sorption.hh:78
SorptionSimple::SorptionSimple
SorptionSimple(Mesh &init_mesh, Input::Record in_rec)
Constructor.
Definition: sorption.cc:47
FieldCommon::name
FieldCommon & name(const string &name)
Definition: field_common.hh:118
ElementAccessor::centre
arma::vec::fixed< spacedim > centre() const
Computes the barycenter.
Definition: accessors_impl.hh:89
SorptionImmob::registrar
static const int registrar
Registrar of class to factory.
Definition: sorption.hh:151
SorptionBase::common_ele_data
struct SorptionBase::CommonElementData common_ele_data