Flow123d  JS_before_hm-1001-gfa0c761
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_data_ = 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_data_ = 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 }
FieldSet * eq_data_
Definition: equation.hh:227
void compute_common_ele_data(const ElementAccessor< 3 > &elem) override
Computes CommonElementData.
Definition: sorption.cc:61
~SorptionDual(void)
Destructor.
Definition: sorption.cc:89
unsigned int size() const
Returns number of keys in the Record.
Definition: type_record.hh:602
Class Input::Type::Default specifies default value of keys of a Input::Type::Record.
Definition: type_record.hh:61
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.
Definition: sorption.cc:118
void compute_common_ele_data(const ElementAccessor< 3 > &elem) override
Computes CommonElementData.
Definition: sorption.cc:160
Abstract class of sorption model in case dual porosity is considered.
Definition: sorption.hh:78
Definitions of ASSERTS.
Field< 3, FieldValue< 3 >::Scalar > rock_density
Rock matrix density.
Definition: mesh.h:78
static const Input::Type::Record & get_input_type()
Definition: sorption.cc:36
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.
Definition: sorption.cc:76
Record & close() const
Close the Record for further declarations of keys.
Definition: type_record.cc:304
void compute_common_ele_data(const ElementAccessor< 3 > &elem) override
Computes CommonElementData.
Definition: sorption.cc:121
arma::vec::fixed< spacedim > centre() const
Computes the barycenter.
virtual Record & derive_from(Abstract &parent)
Method to derive new Record from an AbstractRecord parent.
Definition: type_record.cc:196
Field< 3, FieldValue< 3 >::Scalar > porosity
Porosity field copied from transport.
Field< 3, FieldValue< 3 >::Scalar > immob_porosity_
Definition: sorption.hh:99
static constexpr Mask input_copy
Definition: field_flag.hh:44
Accessor to the data with type Type::Record.
Definition: accessors.hh:291
static const Input::Type::Record & get_input_type()
Definition: sorption.cc:96
static Input::Type::Abstract & it_abstract_immobile_term()
virtual Value::return_type const & value(const Point &p, const ElementAccessor< spacedim > &elm) const
Definition: field.hh:434
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
Record & copy_keys(const Record &other)
Copy keys from other record.
Definition: type_record.cc:216
static Input::Type::Abstract & it_abstract_term()
SorptionImmob(Mesh &init_mesh, Input::Record in_rec)
Constructor.
Definition: sorption.cc:153
static const int registrar
Registrar of class to factory.
Definition: sorption.hh:71
SorptionSimple(Mesh &init_mesh, Input::Record in_rec)
Constructor.
Definition: sorption.cc:47
static const int registrar
Registrar of class to factory.
Definition: sorption.hh:151
~SorptionSimple(void)
Destructor.
Definition: sorption.cc:58
FieldCommon & name(const string &name)
static const int registrar
Registrar of class to factory.
Definition: sorption.hh:125
Simple sorption model without dual porosity.
Definition: sorption.hh:52
Record type proxy class.
Definition: type_record.hh:182
static const Input::Type::Record & get_input_type()
FieldCommon & set_limits(double min, double max=std::numeric_limits< double >::max())
EqData * data_
Pointer to equation data. The object is constructed in descendants.
Other possible transformation of coordinates:
static const Input::Type::Record & get_input_type()
Definition: sorption.cc:138
This file contains classes representing sorption model. Sorption model can be computed both in case t...
#define FLOW123D_FORCE_LINK_IN_CHILD(x)
Definition: global_defs.h:180
SorptionMob(Mesh &init_mesh, Input::Record in_rec)
Constructor.
Definition: sorption.cc:113
struct SorptionBase::CommonElementData common_ele_data
~SorptionImmob(void)
Destructor.
Definition: sorption.cc:157