Flow123d  release_3.0.0-873-g1d64664
dual_porosity.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 dual_porosity.hh
15  * @brief Class Dual_por_exchange implements the model of dual porosity.
16  *
17  * It can be part of the transport model and it computes the concentrations of substances both in
18  * mobile and immobile zone. This model can also work above the sorption model - the sorbed concentration
19  * is then computed both from mobile and immobile concentrations. Linear reactions can be define
20  * also in both zones.
21  */
22 
23 #ifndef DUAL_POROSITY_H_
24 #define DUAL_POROSITY_H_
25 
26 #include <boost/exception/info.hpp> // for operator<<, error_info::error_i...
27 #include <memory> // for shared_ptr
28 #include <vector>
29 #include "fields/field.hh" // for Field
30 #include "fields/field_values.hh" // for FieldValue<>::Scalar, FieldValue
31 #include "fields/field_set.hh"
32 #include "fields/multi_field.hh"
33 #include "la/vector_mpi.hh"
35 #include "input/type_base.hh" // for Array
36 #include "input/type_generic.hh" // for Instance
37 #include "petscvec.h" // for Vec, VecScatter, _p_VecScatter
38 #include "reaction/reaction_term.hh" // for ReactionTerm
39 
40 class Mesh;
41 namespace Input {
42  class Record;
43  namespace Type {
44  class Record;
45  }
46 }
47 template <int spacedim, class Value> class FieldFE;
48 
49 
50 /// Class representing dual porosity model in transport.
52 {
53 public:
55 
56  /**
57  * Static variable for new input data types input
58  */
59  static const Input::Type::Record & get_input_type();
60 
61  /// DualPorosity data
62  class EqData : public FieldSet
63  {
64  public:
65 
66  /// Collect all fields
67  EqData();
68 
69  MultiField<3, FieldValue<3>::Scalar > diffusion_rate_immobile; ///< Mass transfer coefficients between mobile and immobile pores.
70  Field<3, FieldValue<3>::Scalar > porosity_immobile; ///< Immobile porosity field.
71 
72  MultiField<3, FieldValue<3>::Scalar> init_conc_immobile; ///< Initial concentrations in the immobile zone.
73 
74  Field<3, FieldValue<3>::Scalar > porosity; ///< Porosity field.
75 
76  MultiField<3, FieldValue<3>::Scalar> conc_immobile; ///< Calculated concentrations in the immobile zone.
77 
78  /// Fields indended for output, i.e. all input fields plus those representing solution.
80 
81  };
82 
83  /// Constructor.
84  DualPorosity(Mesh &init_mesh, Input::Record in_rec);
85 
86  ///Destructor.
87  ~DualPorosity(void);
88 
89  /// Prepares the object to usage.
90  /**
91  * Allocating memory, reading input, initialization of fields.
92  */
93  void initialize() override;
94 
95  /**
96  * Does first computation after initialization process.
97  * The time is set and initial condition is set and output.
98  */
99  void zero_time_step() override;
100 
101  /**
102  * Updates the solution according to the dual porosity model.
103  */
104  void update_solution(void) override;
105 
106  /// Main output routine.
107  void output_data(void) override;
108 
109  bool evaluate_time_constraint(double &time_constraint) override;
110 
111 protected:
112  /**
113  * This method disables to use constructor without parameters.
114  */
115  DualPorosity();
116 
117  /// Resolves construction of following reactions.
118  void make_reactions();
119 
120  /// Sets initial condition from input.
121  void set_initial_condition();
122  /// Initializes field sets.
123  void initialize_fields();
124 
125  double **compute_reaction(double **concentrations, int loc_el) override;
126 
127  /**
128  * Pointer to twodimensional array[substance][elements] containing concentrations either in immobile.
129  */
130  double **conc_immobile;
131 
132  /**
133  * Equation data - all data fields are in this set.
134  */
136 
137  /**
138  * Input data set - fields in this set are read from the input file.
139  */
141 
142  std::shared_ptr<ReactionTerm> reaction_mobile; ///< Reaction running in mobile zone
143  std::shared_ptr<ReactionTerm> reaction_immobile; ///< Reaction running in immobile zone
144 
145  /// Dual porosity computational scheme tolerance.
146  /** According to this tolerance the analytical solution of dual porosity concentrations or
147  * simple forward difference approximation of concentrations is chosen for computation.
148  */
150 
151  ///@name members used in output routines
152  //@{
153  std::vector<VectorMPI> conc_immobile_out; ///< concentration array output for immobile phase (parallel, shared with FieldFE)
154  //@}
155 
156 private:
157  /// Registrar of class to factory
158  static const int registrar;
159 
160 };
161 
162 #endif //DUAL_POROSITY_H_
ReactionTerm FactoryBaseType
Container for various descendants of FieldCommonBase.
Definition: field_set.hh:71
std::shared_ptr< ReactionTerm > reaction_mobile
Reaction running in mobile zone.
std::vector< VectorMPI > conc_immobile_out
concentration array output for immobile phase (parallel, shared with FieldFE)
MultiField< 3, FieldValue< 3 >::Scalar > conc_immobile
Calculated concentrations in the immobile zone.
Abstract linear system class.
Definition: balance.hh:35
Class template representing a field with values dependent on: point, element, and region...
Definition: field.hh:83
EquationOutput output_fields
Fields indended for output, i.e. all input fields plus those representing solution.
Definition: mesh.h:80
Field< 3, FieldValue< 3 >::Scalar > porosity_immobile
Immobile porosity field.
Class ReactionTerm is an abstract class representing reaction term in transport.
double scheme_tolerance_
Dual porosity computational scheme tolerance.
std::shared_ptr< ReactionTerm > reaction_immobile
Reaction running in immobile zone.
Accessor to the data with type Type::Record.
Definition: accessors.hh:292
Class representing dual porosity model in transport.
double ** conc_immobile
MultiField< 3, FieldValue< 3 >::Scalar > diffusion_rate_immobile
Mass transfer coefficients between mobile and immobile pores.
static const int registrar
Registrar of class to factory.
MultiField< 3, FieldValue< 3 >::Scalar > init_conc_immobile
Initial concentrations in the immobile zone.
Record type proxy class.
Definition: type_record.hh:182
Field< 3, FieldValue< 3 >::Scalar > porosity
Porosity field.
Class for representation of a vector of fields of the same physical quantity.
Definition: multi_field.hh:87
DualPorosity data.
FieldSet input_data_set_
Definition: field.hh:56