Flow123d  release_3.0.0-903-ge56fc7d
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 }
FieldSet * eq_data_
Definition: equation.hh:232
void compute_common_ele_data(const ElementAccessor< 3 > &elem) override
Computes CommonElementData.
Definition: sorption.cc:60
~SorptionDual(void)
Destructor.
Definition: sorption.cc:88
unsigned int size() const
Returns number of keys in the Record.
Definition: type_record.hh:598
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:117
void compute_common_ele_data(const ElementAccessor< 3 > &elem) override
Computes CommonElementData.
Definition: sorption.cc:159
Abstract class of sorption model in case dual porosity is considered.
Definition: sorption.hh:78
Field< 3, FieldValue< 3 >::Scalar > rock_density
Rock matrix density.
Definition: mesh.h:80
static const Input::Type::Record & get_input_type()
Definition: sorption.cc:35
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:75
Record & close() const
Close the Record for further declarations of keys.
Definition: type_record.cc:303
void compute_common_ele_data(const ElementAccessor< 3 > &elem) override
Computes CommonElementData.
Definition: sorption.cc:120
arma::vec::fixed< spacedim > centre() const
Computes the barycenter.
Definition: accessors.hh:285
virtual Record & derive_from(Abstract &parent)
Method to derive new Record from an AbstractRecord parent.
Definition: type_record.cc:195
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:292
static const Input::Type::Record & get_input_type()
Definition: sorption.cc:95
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:389
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
Record & copy_keys(const Record &other)
Copy keys from other record.
Definition: type_record.cc:215
static Input::Type::Abstract & it_abstract_term()
SorptionImmob(Mesh &init_mesh, Input::Record in_rec)
Constructor.
Definition: sorption.cc:152
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:46
static const int registrar
Registrar of class to factory.
Definition: sorption.hh:151
~SorptionSimple(void)
Destructor.
Definition: sorption.cc:57
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:137
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:112
struct SorptionBase::CommonElementData common_ele_data
~SorptionImmob(void)
Destructor.
Definition: sorption.cc:156