Flow123d  JS_before_hm-1623-gd361259
sorption_base.hh
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_base.hh
15  * @brief Class SorptionBase is abstract class representing model of sorption in transport.
16  *
17  * The sorption is described by several types of isotherms - linear, Freundlich or Langmuir.
18  * Limited solubility can be considered.
19  *
20  * Interpolation tables are used to speed up evaluation of isotherms.
21  *
22  */
23 
24 #ifndef SORPTION_BASE_H
25 #define SORPTION_BASE_H
26 
27 
28 #include <memory> // for shared_ptr
29 #include <string> // for string
30 #include <vector>
31 #include "reaction/reaction_term.hh" // for ReactionTerm
32 #include "fields/field.hh" // for Field
33 #include "fields/field_values.hh" // for FieldValue<>::Scalar, FieldVa...
34 #include "fields/field_set.hh"
35 #include "fields/multi_field.hh"
36 #include "la/vector_mpi.hh"
38 #include "input/input_exception.hh" // for DECLARE_INPUT_EXCEPTION, Exce...
39 #include "input/type_base.hh" // for Array
40 #include "input/type_generic.hh" // for Instance
41 #include "petscvec.h" // for Vec, VecScatter, _p_VecScatter
42 //
43 #include "system/exceptions.hh" // for operator<<, ExcStream, EI
44 
45 class Isotherm;
46 class Mesh;
47 namespace Input {
48  class Record;
49  namespace Type {
50  class Record;
51  class Selection;
52  }
53 }
54 template <int spacedim> class ElementAccessor;
55 
56 
57 
58 
60 {
61 public:
62  TYPEDEF_ERR_INFO( EI_ArrayName, std::string);
63  TYPEDEF_ERR_INFO( EI_Subst, unsigned int);
64  DECLARE_INPUT_EXCEPTION( ExcSubstanceCountMatch, << "The size of the input array " << EI_ArrayName::qval
65  << " does not match the number of substances.");
66  DECLARE_EXCEPTION( ExcNotPositiveScaling,
67  << "Scaling parameter in sorption is not positive. Check the input for rock density and molar mass of " << EI_Subst::val << ". substance.\n" );
68 
69  /**
70  * Static variable for new input data types input
71  */
72  static const Input::Type::Record & get_input_type();
73 
74  static Input::Type::Instance make_output_type(const string &equation_name, const string &output_field_name, const string &output_field_desc )
75  {
76  return EqData(output_field_name, output_field_desc).output_fields.make_output_type(equation_name, "");
77  }
78 
79  class EqData : public FieldSet
80  {
81  public:
82  /**
83  * Sorption type specifies a kind of equilibrial description of adsorption.
84  */
85  static const Input::Type::Selection & get_sorption_type_selection();
86 
87  /// Collect all fields
88  EqData(const string &output_field_name, const string &output_field_desc);
89 
90  MultiField<3, FieldValue<3>::Enum > sorption_type; ///< Discrete need Selection for initialization.
91  Field<3, FieldValue<3>::Scalar > rock_density; ///< Rock matrix density.
92 
93  /// Multiplication coefficients (k, omega) for all types of isotherms.
94  /** Langmuir: c_s = omega * (alpha*c_a)/(1- alpha*c_a), Linear: c_s = k*c_a */
96  /// Langmuir sorption coeficients alpha (in fraction c_s = omega * (alpha*c_a)/(1- alpha*c_a)).
98 
99  MultiField<3, FieldValue<3>::Scalar> init_conc_solid; ///< Initial sorbed concentrations.
100  Field<3, FieldValue<3>::Scalar > porosity; ///< Porosity field copied from transport.
101 
102  MultiField<3, FieldValue<3>::Scalar> conc_solid; ///< Calculated sorbed concentrations, for output only.
103  FieldFEScalarVec conc_solid_fe; ///< Underlaying FieldFE for each substance of conc_solid.
104 
105  /// Input data set - fields in this set are read from the input file.
107 
108  /// Fields indended for output, i.e. all input fields plus those representing solution.
110 
111  };
112 
113  /**
114  * Constructor with parameter for initialization of a new declared class member
115  */
116  SorptionBase(Mesh &init_mesh, Input::Record in_rec);
117  /**
118  * Destructor.
119  */
120  virtual ~SorptionBase(void);
121 
122  /// Prepares the object to usage.
123  /**
124  * Allocating memory, reading input, initialization of fields.
125  */
126  void initialize() override;
127 
128  /**
129  * Does first computation after initialization process.
130  * The time is set and initial condition is set and output.
131  */
132  void zero_time_step() override;
133 
134  /// Updates the solution.
135  /**
136  * Goes through local distribution of elements and calls @p compute_reaction.
137  */
138  void update_solution(void) override;
139 
140  void output_data(void) override;
141 
142  bool evaluate_time_constraint(FMT_UNUSED double &time_constraint) override { return false; }
143 
144 
145 protected:
146  /**
147  * This method disables to use constructor without parameters.
148  */
149  SorptionBase();
150 
151  /** Initializes possible following reactions from input record.
152  * It should be called after setting mesh, time_governor, distribution and concentration_matrix
153  * if there are some setting methods for reactions called (they are not at the moment, so it could be part of init_from_input).
154  */
155  void make_reactions();
156 
157  /// Reads names of substances from input and creates indexing to global vector of substance.
158  /** Also creates the local vector of molar masses. */
159  void initialize_substance_ids();
160 
161  /// Initializes private members of sorption from the input record.
162  void initialize_from_input();
163 
164  /// Initializes field sets.
165  void initialize_fields();
166 
167  ///Reads and sets initial condition for concentration in solid.
168  void set_initial_condition();
169 
170  /// Compute reaction on a single element.
171  void compute_reaction(const DHCellAccessor& dh_cell) override;
172 
173  /// Reinitializes the isotherm.
174  /**
175  * On data change the isotherm is recomputed, possibly new interpolation table is made.
176  * NOTE: Be sure to update common element data (porosity, rock density etc.)
177  * by @p compute_common_ele_data(), before calling reinitialization!
178  */
179  void isotherm_reinit(unsigned int i_subst, const ElementAccessor<3> &elm);
180 
181  /// Calls @p isotherm_reinit for all isotherms.
182  void isotherm_reinit_all(const ElementAccessor<3> &elm);
183 
184  /**
185  * Creates interpolation table for isotherms.
186  */
187  void make_tables(void);
188 
189  /// Computes maximal aqueous concentration at the current step.
190  void update_max_conc();
191 
192  /// Sets max conc to zeros on all regins.
193  void clear_max_conc();
194 
195  /// Pointer to equation data. The object is constructed in descendants.
197 
198  /**
199  * Temporary nr_of_points can be computed using step_length. Should be |nr_of_region x nr_of_substances| matrix later.
200  */
202  /**
203  * Density of the solvent.
204  * TODO: Could be done region dependent, easily.
205  */
207  /**
208  * Critical concentrations of species dissolved in water.
209  */
211  /**
212  * Concentration table limits of species dissolved in water.
213  */
215  /**
216  * Maximum concentration per region.
217  * It is used for optimization of interpolation table.
218  */
220  /**
221  * Three dimensional array contains intersections between isotherms and mass balance lines.
222  * It describes behaviour of sorbents in mobile pores of various rock matrix enviroments.
223  * Up to |nr_of_region x nr_of_substances x n_points| doubles. Because of equidistant step
224  * lenght in cocidered system of coordinates, just function values are stored.
225  */
227 
228  unsigned int n_substances_; //< number of substances that take part in the sorption mode
229 
230  /// Mapping from local indexing of substances to global.
232 
233  /**
234  * Reaction model that follows the sorption.
235  */
236  std::shared_ptr<ReactionTerm> reaction_liquid;
237  std::shared_ptr<ReactionTerm> reaction_solid;
238 
239 
240  /** Structure for data respectful to element, but indepedent of actual isotherm.
241  * Reads mobile/immobile porosity, rock density and then computes concentration scaling parameters.
242  * Is kind of optimization, so that these data are computed only when necessary.
243  */
245  double scale_aqua;
246  double scale_sorbed;
248  } common_ele_data;
249 
250  /** Computes @p CommonElementData.
251  * Is pure virtual, implemented differently for simple/mobile/immobile sorption class.
252  */
253  virtual void compute_common_ele_data(const ElementAccessor<3> &elem) = 0;
254 };
255 
256 #endif //SORPTION_BASE_H
std::shared_ptr< ReactionTerm > reaction_solid
Container for various descendants of FieldCommonBase.
Definition: field_set.hh:159
MultiField< 3, FieldValue< 3 >::Scalar > conc_solid
Calculated sorbed concentrations, for output only.
double solvent_density_
std::vector< std::vector< Isotherm > > isotherms
TYPEDEF_ERR_INFO(EI_KeyName, const string)
static Input::Type::Instance make_output_type(const string &equation_name, const string &output_field_name, const string &output_field_desc)
Abstract linear system class.
Definition: balance.hh:40
Class template representing a field with values dependent on: point, element, and region...
Definition: field.hh:95
Field< 3, FieldValue< 3 >::Scalar > rock_density
Rock matrix density.
Definition: mesh.h:77
Cell accessor allow iterate over DOF handler cells.
EquationOutput output_fields
Fields indended for output, i.e. all input fields plus those representing solution.
Helper class that stores data of generic types.
Definition: type_generic.hh:89
std::vector< double > table_limit_
Class ReactionTerm is an abstract class representing reaction term in transport.
std::vector< unsigned int > substance_global_idx_
Mapping from local indexing of substances to global.
MultiField< 3, FieldValue< 3 >::Scalar > isotherm_other
Langmuir sorption coeficients alpha (in fraction c_s = omega * (alpha*c_a)/(1- alpha*c_a)).
FieldFEScalarVec conc_solid_fe
Underlaying FieldFE for each substance of conc_solid.
#define FMT_UNUSED
Definition: posix.h:75
Field< 3, FieldValue< 3 >::Scalar > porosity
Porosity field copied from transport.
MultiField< 3, FieldValue< 3 >::Scalar > init_conc_solid
Initial sorbed concentrations.
std::vector< double > solubility_vec_
Accessor to the data with type Type::Record.
Definition: accessors.hh:291
unsigned int n_interpolation_steps_
MultiField< 3, FieldValue< 3 >::Enum > sorption_type
Discrete need Selection for initialization.
bool evaluate_time_constraint(FMT_UNUSED double &time_constraint) override
DECLARE_EXCEPTION(ExcWrongDefaultJSON,<< "Consistency Error: Not valid JSON of Default value "<< EI_DefaultStr::qval<< " of type "<< EI_TypeName::qval<< ";\n"<< "During declaration of the key: "<< EI_KeyName::qval)
Record type proxy class.
Definition: type_record.hh:182
const Input::Type::Instance & make_output_type(const string &equation_name, const string &aditional_description="")
Class for representation of a vector of fields of the same physical quantity.
Definition: multi_field.hh:87
MultiField< 3, FieldValue< 3 >::Scalar > distribution_coefficient
Multiplication coefficients (k, omega) for all types of isotherms.
unsigned int n_substances_
DECLARE_INPUT_EXCEPTION(ExcInputMessage,<< EI_Message::val)
Simple input exception that accepts just string message.
EqData * data_
Pointer to equation data. The object is constructed in descendants.
std::vector< std::vector< double > > max_conc
Template for classes storing finite set of named values.
FieldSet input_data_set_
Input data set - fields in this set are read from the input file.
std::shared_ptr< ReactionTerm > reaction_liquid