Flow123d  release_3.0.0-973-g92f55e826
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 "mesh/accessors.hh"
25 #include "input/factory.hh"
26 
27 FLOW123D_FORCE_LINK_IN_CHILD(sorptionMobile)
28 FLOW123D_FORCE_LINK_IN_CHILD(sorptionImmobile)
30 
31 
32 /********************************* SORPTION_SIMPLE *********************************************************/
33 /********************************* *********************************************************/
34 
35 const IT::Record & SorptionSimple::get_input_type() {
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."),
40  IT::Default("{ \"fields\": [ \"conc_solid\" ] }"),
41  "Setting of the fields output.")
42 
43  .close();
44 }
45 
47  : SorptionBase(init_mesh, in_rec)
48 {
49  data_ = new EqData("conc_solid", "Concentration solution in the solid phase.");
50  this->eq_data_ = data_;
51 }
52 
53 const int SorptionSimple::registrar =
54  Input::register_class< SorptionSimple, Mesh &, Input::Record >("Sorption") +
56 
58 {}
59 
61 {
62  double rock_density = data_->rock_density.value(elem.centre(),elem);
63  double por_m = data_->porosity.value(elem.centre(),elem);
64 
65  this->common_ele_data.scale_aqua = por_m;
66  this->common_ele_data.scale_sorbed = (1 - por_m) * rock_density;
68 }
69 
70 
71 /*********************************** *********************************************************/
72 /*********************************** SORPTION_DUAL *********************************************************/
73 /*********************************** *********************************************************/
74 
76  const string &output_conc_name,
77  const string &output_conc_desc)
78  : SorptionBase(init_mesh, in_rec)
79 {
80  data_ = new EqData(output_conc_name, output_conc_desc);
83  .name("porosity_immobile")
84  .set_limits(0.0);
85  this->eq_data_ = data_;
86 }
87 
89 {}
90 
91 /********************************** *******************************************************/
92 /*********************************** SORPTION_MOBILE *******************************************************/
93 /********************************** *******************************************************/
94 
96  return IT::Record("SorptionMobile", "Sorption model in the mobile zone, following the dual porosity model.")
99  .declare_key("output", make_output_type("SorptionMobile", "conc_solid", "Concentration solution in the solid mobile phase."),
100  IT::Default("{ \"fields\": [ \"conc_solid\" ] }"),
101  "Setting of the fields output.")
102 
103  .close();
104 }
105 
106 
107 const int SorptionMob::registrar =
108  Input::register_class< SorptionMob, Mesh &, Input::Record >("SorptionMobile") +
110 
111 
113  : SorptionDual(init_mesh, in_rec, "conc_solid", "Concentration solution in the solid mobile phase.")
114 {}
115 
116 
118 {}
119 
121 {
122  double rock_density = data_->rock_density.value(elem.centre(),elem);
123  double por_m = data_->porosity.value(elem.centre(),elem);
124  double por_imm = immob_porosity_.value(elem.centre(),elem);
125  double phi = por_m/(por_m + por_imm);
126 
127  this->common_ele_data.scale_aqua = por_m;
128  this->common_ele_data.scale_sorbed = phi * (1 - por_m - por_imm) * rock_density;
129  this->common_ele_data.no_sorbing_surface_cond = 1-por_m-por_imm;
130 }
131 
132 
133 /*********************************** *****************************************************/
134 /*********************************** SORPTION_IMMOBILE *****************************************************/
135 /*********************************** *****************************************************/
136 
138  return IT::Record("SorptionImmobile", "Sorption model in the immobile zone, following the dual porosity model.")
141  .declare_key("output", make_output_type("SorptionImmobile", "conc_immobile_solid", "Concentration solution in the solid immobile phase."),
142  IT::Default("{ \"fields\": [ \"conc_immobile_solid\" ] }"),
143  "Setting of the fields output.")
144 
145  .close();
146 }
147 
148 const int SorptionImmob::registrar =
149  Input::register_class< SorptionImmob, Mesh &, Input::Record >("SorptionImmobile") +
151 
153 : SorptionDual(init_mesh, in_rec, "conc_immobile_solid", "Concentration solution in the solid immobile phase.")
154 {}
155 
157 {}
158 
160 {
161  double rock_density = data_->rock_density.value(elem.centre(),elem);
162  double por_m = data_->porosity.value(elem.centre(),elem);
163  double por_imm = immob_porosity_.value(elem.centre(),elem);
164  double phi = por_m/(por_m + por_imm);
165 
166  this->common_ele_data.scale_aqua = por_m;
167  this->common_ele_data.scale_sorbed = (1 - phi) * (1 - por_m - por_imm) * rock_density;
168  this->common_ele_data.no_sorbing_surface_cond = 1-por_m-por_imm;
169 }
SorptionDual::SorptionDual
SorptionDual(Mesh &init_mesh, Input::Record in_rec, const string &output_conc_name, const string &output_conc_desc)
Constructor.
Definition: sorption.cc:75
SorptionImmob::SorptionImmob
SorptionImmob(Mesh &init_mesh, Input::Record in_rec)
Constructor.
Definition: sorption.cc:152
SorptionSimple::compute_common_ele_data
void compute_common_ele_data(const ElementAccessor< 3 > &elem) override
Computes CommonElementData.
Definition: sorption.cc:60
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:194
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:112
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:117
EquationBase::eq_data_
FieldSet * eq_data_
Definition: equation.hh:230
SorptionImmob::~SorptionImmob
~SorptionImmob(void)
Destructor.
Definition: sorption.cc:156
SorptionSimple::~SorptionSimple
~SorptionSimple(void)
Destructor.
Definition: sorption.cc:57
FLOW123D_FORCE_LINK_IN_CHILD
#define FLOW123D_FORCE_LINK_IN_CHILD(x)
Definition: global_defs.h:180
ElementAccessor< 3 >
SorptionImmob::compute_common_ele_data
void compute_common_ele_data(const ElementAccessor< 3 > &elem) override
Computes CommonElementData.
Definition: sorption.cc:159
FieldCommon::set_limits
FieldCommon & set_limits(double min, double max=std::numeric_limits< double >::max())
Definition: field_common.hh:146
SorptionBase::CommonElementData::no_sorbing_surface_cond
double no_sorbing_surface_cond
Definition: sorption_base.hh:259
SorptionBase
Definition: sorption_base.hh:59
FieldCommon::flags_add
FieldCommon & flags_add(FieldFlag::Flags::Mask mask)
Definition: field_common.hh:185
Input::Type::Record::size
unsigned int size() const
Returns number of keys in the Record.
Definition: type_record.hh:598
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:195
SorptionBase::EqData::rock_density
Field< 3, FieldValue< 3 >::Scalar > rock_density
Rock matrix density.
Definition: sorption_base.hh:88
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:71
SorptionImmob::get_input_type
static const Input::Type::Record & get_input_type()
Definition: sorption.cc:137
SorptionBase::EqData
Definition: sorption_base.hh:76
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:97
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:120
SorptionBase::CommonElementData::scale_sorbed
double scale_sorbed
Definition: sorption_base.hh:258
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:501
SorptionDual::~SorptionDual
~SorptionDual(void)
Destructor.
Definition: sorption.cc:88
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:303
SorptionMob::get_input_type
static const Input::Type::Record & get_input_type()
Definition: sorption.cc:95
Input::Type
Definition: balance.hh:38
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:392
Mesh
Definition: mesh.h:80
Input::Type::Record::copy_keys
Record & copy_keys(const Record &other)
Copy keys from other record.
Definition: type_record.cc:215
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:257
SorptionSimple::get_input_type
static const Input::Type::Record & get_input_type()
Definition: sorption.cc:35
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:46
FieldCommon::name
FieldCommon & name(const string &name)
Definition: field_common.hh:108
ElementAccessor::centre
arma::vec::fixed< spacedim > centre() const
Computes the barycenter.
Definition: accessors.hh:285
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