Flow123d  JS_before_hm-2212-gb8d94e0c1
richards_lmh.cc
Go to the documentation of this file.
1 /*
2  * richards_lmh.cc
3  *
4  * Created on: Sep 16, 2015
5  * Author: jb
6  */
7 
8 
9 #include "system/global_defs.h"
10 #include "system/sys_profiler.hh"
11 #include "system/asserts.hh"
12 
13 #include "coupling/balance.hh"
14 
15 #include "input/input_type.hh"
16 #include "input/factory.hh"
17 #include "flow/richards_lmh.hh"
18 #include "flow/soil_models.hh"
21 #include "tools/time_governor.hh"
22 
23 #include "petscmat.h"
24 #include "petscviewer.h"
25 #include "petscerror.h"
26 #include <armadillo>
27 
28 #include "la/schur.hh"
29 #include "la/vector_mpi.hh"
30 
31 
32 #include "tools/include_fadbad.hh" // for "fadbad.h", "badiff.h", "fadiff.h"
33 
34 
35 FLOW123D_FORCE_LINK_IN_CHILD(richards_lmh)
36 
37 
38 namespace it=Input::Type;
39 
40 
42 {
43  *this += water_content.name("water_content")
46  .description(R"(Water content.
47  It is a fraction of water volume to the whole volume.)");
48  *this += conductivity_richards.name("conductivity_richards")
49  .units( UnitSI().m().s(-1) )
51  .description("Computed isotropic scalar conductivity by the soil model.");
52 
53  *this += water_content_saturated.name("water_content_saturated")
54  .description(R"(Saturated water content (($ \theta_s $)).
55  Relative volume of water in a reference volume of a saturated porous media.)")
56  .input_default("0.0")
58 
59  *this += water_content_residual.name("water_content_residual")
60  .description(R"(Residual water content (($ \theta_r $)).
61  Relative volume of water in a reference volume of an ideally dry porous media.)")
62  .input_default("0.0")
64 
65  *this += genuchten_p_head_scale.name("genuchten_p_head_scale")
66  .description(R"(The van Genuchten pressure head scaling parameter (($ \alpha $)).
67  It is related to the inverse of the air entry pressure, i.e. the pressure
68  where the relative water content starts to decrease below 1.)")
69  .input_default("0.0")
70  .units( UnitSI().m(-1) );
71 
72  *this += genuchten_n_exponent.name("genuchten_n_exponent")
73  .description("The van Genuchten exponent parameter (($ n $)).")
74  .input_default("2.0")
76 }
77 
78 
80 : DarcyLMH::EqData::EqData() {}
81 
82 
84  it::Record field_descriptor = it::Record("RichardsLMH_Data",FieldCommon::field_descriptor_record_description("RichardsLMH_Data"))
86  .copy_keys( RichardsLMH::EqFields().make_field_descriptor_type("RichardsLMH_Data_aux") )
87  .close();
88 
89  auto model_selection = it::Selection("Soil_Model_Type", "")
90  .add_value(SoilModelBase::van_genuchten, "van_genuchten", "Van Genuchten soil model with cutting near zero.")
91  .add_value(SoilModelBase::irmay, "irmay", "Irmay model for conductivity, Van Genuchten model for the water content. Suitable for bentonite.")
92  .close();
93 
94  auto soil_rec = it::Record("SoilModel", "Soil model settings.")
95  .allow_auto_conversion("model_type")
96  .declare_key("model_type", model_selection, it::Default("\"van_genuchten\""),
97  "Selection of the globally applied soil model. In future we replace this key by a field for selection of the model."
98  "That will allow usage of different soil model in a single simulation.")
99  .declare_key("cut_fraction", it::Double(0.0,1.0), it::Default("0.999"),
100  "Fraction of the water content where we cut and rescale the curve.")
101  .close();
102 
104 
105  return it::Record("Flow_Richards_LMH", "Lumped Mixed-Hybrid solver for unsteady unsaturated Darcy flow.")
108  .declare_key("input_fields", it::Array( field_descriptor ), it::Default::obligatory(),
109  "Input data for Darcy flow model.")
110  .declare_key("output", DarcyFlowMHOutput::get_input_type(eq_fields, "Flow_Richards_LMH"),
111  IT::Default("{ \"fields\": [ \"pressure_p0\", \"velocity_p0\" ] }"),
112  "Specification of output fields and output times.")
113  .declare_key("soil_model", soil_rec, it::Default("\"van_genuchten\""),
114  "Soil model settings.")
115  .close();
116 }
117 
118 
119 const int RichardsLMH::registrar =
120  Input::register_class< RichardsLMH, Mesh &, const Input::Record >("Flow_Richards_LMH") +
122 
123 
124 
126  : DarcyLMH(mesh_in, in_rec, tm)
127 {
128  eq_fields_ = make_shared<EqFields>();
129  eq_data_ = make_shared<EqData>();
132  this->eq_fieldset_ = eq_fields_.get();
133  //eq_data_->edge_new_local_4_mesh_idx_ = &(this->edge_new_local_4_mesh_idx_);
134 }
135 
136 
138 
139  auto model_rec = input_record_.val<Input::Record>("soil_model");
140  auto model_type = model_rec.val<SoilModelBase::SoilModelType>("model_type");
141  double fraction= model_rec.val<double>("cut_fraction");
142  if (model_type == SoilModelBase::van_genuchten)
143  eq_data_->soil_model_ = std::make_shared<SoilModel_VanGenuchten>(fraction);
144  else if (model_type == SoilModelBase::irmay)
145  eq_data_->soil_model_ = std::make_shared<SoilModel_Irmay>(fraction);
146  else
147  ASSERT_PERMANENT(false);
148 
149  // create edge vectors
150  eq_data_->water_content_previous_time = eq_data_->dh_cr_disc_->create_vector();
151  eq_data_->capacity = eq_data_->dh_cr_disc_->create_vector();
152 
153  ASSERT_PTR(mesh_);
154  eq_data_->mesh = mesh_;
155  eq_fields_->set_mesh(*mesh_);
156 
157  eq_fields_->water_content_ptr = create_field_fe< 3, FieldValue<3>::Scalar >(eq_data_->dh_cr_disc_);
158  eq_fields_->water_content.set(eq_fields_->water_content_ptr, 0.0);
159 
160  eq_fields_->conductivity_ptr = create_field_fe< 3, FieldValue<3>::Scalar >(eq_data_->dh_p_);
161  eq_fields_->conductivity_richards.set(eq_fields_->conductivity_ptr, 0.0);
162 
163 
164  eq_data_->multidim_assembler = AssemblyFlowBase::create< AssemblyRichards >(eq_fields_, eq_data_);
165 }
166 
167 
169 {
170  // modify side fluxes in parallel
171  // for every local edge take time term on diagonal and add it to the corresponding flux
172 
173  for ( DHCellAccessor dh_cell : eq_data_->dh_->own_range() ) {
174  eq_data_->multidim_assembler[dh_cell.elm().dim()-1]->update_water_content(dh_cell);
175  }
176 }
177 
178 
180 {
181  eq_data_->p_edge_solution_previous_time.copy_from(eq_data_->p_edge_solution);
182  VectorMPI water_content_vec = eq_fields_->water_content_ptr->vec();
183  eq_data_->water_content_previous_time.copy_from(water_content_vec);
184 
185  eq_data_->p_edge_solution_previous_time.local_to_ghost_begin();
186  eq_data_->p_edge_solution_previous_time.local_to_ghost_end();
187 }
188 
189 bool RichardsLMH::zero_time_term(bool time_global) {
190  if (time_global) {
191  return (eq_fields_->storativity.input_list_size() == 0)
192  && (eq_fields_->water_content_saturated.input_list_size() == 0);
193 
194  } else {
195  return (eq_fields_->storativity.field_result(mesh_->region_db().get_region_set("BULK"))
196  == result_zeros)
197  && (eq_fields_->water_content_saturated.field_result(mesh_->region_db().get_region_set("BULK"))
198  == result_zeros);
199  }
200 }
201 
202 
204 {
205  START_TIMER("RicharsLMH::assembly_linear_system");
206 
207  eq_data_->p_edge_solution.local_to_ghost_begin();
208  eq_data_->p_edge_solution.local_to_ghost_end();
209 
210  eq_data_->is_linear = eq_fields_->genuchten_p_head_scale.field_result(mesh_->region_db().get_region_set("BULK")) == result_zeros;
211 
212  //DebugOut() << "Assembly linear system\n";
213  START_TIMER("full assembly");
214 // if (typeid(*schur0) != typeid(LinSys_BDDC)) {
215 // schur0->start_add_assembly(); // finish allocation and create matrix
216 // schur_compl->start_add_assembly();
217 // }
218 
220 
221  eq_data_->time_step_ = time_->dt();
222 
225 
226  assembly_mh_matrix( eq_data_->multidim_assembler ); // fill matrix
227 
230 }
FieldCommon::units
FieldCommon & units(const UnitSI &units)
Set basic units of the field.
Definition: field_common.hh:152
EquationBase::mesh_
Mesh * mesh_
Definition: equation.hh:220
RichardsLMH::accept_time_step
void accept_time_step() override
postprocess velocity field (add sources)
Definition: richards_lmh.cc:179
result_zeros
@ result_zeros
Definition: field_algo_base.hh:74
RichardsLMH::EqFields::conductivity_richards
Field< 3, FieldValue< 3 >::Scalar > conductivity_richards
Definition: richards_lmh.hh:81
RichardsLMH::EqFields::water_content
Field< 3, FieldValue< 3 >::Scalar > water_content
Definition: richards_lmh.hh:78
RichardsLMH::EqFields::genuchten_p_head_scale
Field< 3, FieldValue< 3 >::Scalar > genuchten_p_head_scale
Definition: richards_lmh.hh:74
TimeGovernor::dt
double dt() const
Definition: time_governor.hh:565
UnitSI::dimensionless
static UnitSI & dimensionless()
Returns dimensionless unit.
Definition: unit_si.cc:55
factory.hh
vector_mpi.hh
time_governor.hh
Basic time management class.
MeshBase::region_db
const RegionDB & region_db() const
Definition: mesh.h:175
EquationBase::time_
TimeGovernor * time_
Definition: equation.hh:221
include_fadbad.hh
RichardsLMH::EqData::EqData
EqData()
Constructor.
Definition: richards_lmh.cc:79
Input::Record::val
const Ret val(const string &key) const
Definition: accessors_impl.hh:31
asserts.hh
Definitions of ASSERTS.
richards_lmh.hh
Input::Type::Selection::close
const Selection & close() const
Close the Selection, no more values can be added.
Definition: type_selection.cc:65
RichardsLMH::eq_data_
std::shared_ptr< EqData > eq_data_
Definition: richards_lmh.hh:117
Input::Type::Double
Class for declaration of the input data that are floating point numbers.
Definition: type_base.hh:534
LinSys::rhs_zero_entries
virtual PetscErrorCode rhs_zero_entries()
Definition: linsys.hh:273
RichardsLMH::initial_condition_postprocess
void initial_condition_postprocess() override
Definition: richards_lmh.cc:168
FLOW123D_FORCE_LINK_IN_CHILD
#define FLOW123D_FORCE_LINK_IN_CHILD(x)
Definition: global_defs.h:104
RichardsLMH::zero_time_term
bool zero_time_term(bool time_global=false) override
Definition: richards_lmh.cc:189
LinSys::mat_zero_entries
virtual PetscErrorCode mat_zero_entries()
Definition: linsys.hh:264
RichardsLMH::EqFields::water_content_residual
Field< 3, FieldValue< 3 >::Scalar > water_content_residual
Definition: richards_lmh.hh:73
FieldCommon::flags
FieldCommon & flags(FieldFlag::Flags::Mask mask)
Definition: field_common.hh:191
RichardsLMH::EqFields::genuchten_n_exponent
Field< 3, FieldValue< 3 >::Scalar > genuchten_n_exponent
Definition: richards_lmh.hh:75
DarcyLMH::get_input_type
static const Input::Type::Record & get_input_type()
Definition: darcy_flow_lmh.cc:103
LinSys::set_matrix_changed
void set_matrix_changed()
Definition: linsys.hh:212
RichardsLMH::EqData
Definition: richards_lmh.hh:86
DarcyLMH::type_field_descriptor
static const Input::Type::Record & type_field_descriptor()
Definition: darcy_flow_lmh.cc:88
RichardsLMH::eq_fields_
std::shared_ptr< EqFields > eq_fields_
Definition: richards_lmh.hh:116
DarcyFlowMHOutput::get_input_type
static const Input::Type::Instance & get_input_type(FieldSet &eq_data, const std::string &equation_name)
Definition: darcy_flow_mh_output.cc:62
Input::Type::Record::size
unsigned int size() const
Returns number of keys in the Record.
Definition: type_record.hh:602
Input::Type::Default
Class Input::Type::Default specifies default value of keys of a Input::Type::Record.
Definition: type_record.hh:61
RichardsLMH::EqFields::EqFields
EqFields()
Definition: richards_lmh.cc:41
Input::Type::Record::derive_from
virtual Record & derive_from(Abstract &parent)
Method to derive new Record from an AbstractRecord parent.
Definition: type_record.cc:196
DarcyLMH::assembly_mh_matrix
void assembly_mh_matrix(MultidimAssembly &assembler)
Definition: darcy_flow_lmh.cc:683
DarcyLMH::eq_fields
EqFields & eq_fields()
Definition: darcy_flow_lmh.hh:202
Input::Record
Accessor to the data with type Type::Record.
Definition: accessors.hh:291
FieldFlag::equation_result
static constexpr Mask equation_result
Match result fields. These are never given by input or copy of input.
Definition: field_flag.hh:55
sys_profiler.hh
darcy_flow_mh_output.hh
Output class for darcy_flow_mh model.
ASSERT_PERMANENT
#define ASSERT_PERMANENT(expr)
Allow use shorter versions of macro names if these names is not used with external library.
Definition: asserts.hh:347
Input::Type::Record::allow_auto_conversion
virtual Record & allow_auto_conversion(const string &from_key)
Allows shorter input of the Record providing only value of the from_key given as the parameter.
Definition: type_record.cc:133
schur.hh
Assembly explicit Schur complement for the given linear system. Provides method for resolution of the...
TimeGovernor
Basic time management functionality for unsteady (and steady) solvers (class Equation).
Definition: time_governor.hh:317
Input::Type::Default::obligatory
static Default obligatory()
The factory function to make an empty default value which is obligatory.
Definition: type_record.hh:110
UnitSI
Class for representation SI units of Fields.
Definition: unit_si.hh:40
EquationBase::input_record_
Input::Record input_record_
Definition: equation.hh:222
RegionDB::get_region_set
RegionSet get_region_set(const std::string &set_name) const
Definition: region.cc:328
FieldCommon::field_descriptor_record_description
static const std::string field_descriptor_record_description(const string &record_name)
Definition: field_common.cc:73
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:503
SoilModelBase::van_genuchten
@ van_genuchten
Definition: soil_models.hh:56
soil_models.hh
Input::Type::Selection
Template for classes storing finite set of named values.
Definition: type_selection.hh:65
DarcyFlowInterface::get_input_type
static Input::Type::Abstract & get_input_type()
Definition: darcy_flow_interface.hh:23
LinSys::start_add_assembly
virtual void start_add_assembly()
Definition: linsys.hh:341
DarcyLMH::eq_data_
std::shared_ptr< EqData > eq_data_
Definition: darcy_flow_lmh.hh:307
Input::Type::Record::close
Record & close() const
Close the Record for further declarations of keys.
Definition: type_record.cc:304
Input::Type
Definition: balance.hh:41
RichardsLMH::EqFields
Definition: richards_lmh.hh:68
Input::Type::Record
Record type proxy class.
Definition: type_record.hh:182
DarcyLMH::lin_sys_schur
LinSys & lin_sys_schur()
Getter for the linear system of the 2. Schur complement.
Definition: darcy_flow_lmh.hh:289
FieldCommon::input_default
FieldCommon & input_default(const string &input_default)
Definition: field_common.hh:139
input_type.hh
Mesh
Definition: mesh.h:359
Input::Type::Record::copy_keys
Record & copy_keys(const Record &other)
Copy keys from other record.
Definition: type_record.cc:216
Input::Type::Array
Class for declaration of inputs sequences.
Definition: type_base.hh:339
RichardsLMH::get_input_type
static const Input::Type::Record & get_input_type()
Definition: richards_lmh.cc:83
DHCellAccessor
Cell accessor allow iterate over DOF handler cells.
Definition: dh_cell_accessor.hh:43
LinSys::finish_assembly
virtual void finish_assembly()=0
global_defs.h
Global macros to enhance readability and debugging, general constants.
RichardsLMH::registrar
static const int registrar
Registrar of class to factory.
Definition: richards_lmh.hh:106
DarcyLMH
Mixed-hybrid model of linear Darcy flow, possibly unsteady.
Definition: darcy_flow_lmh.hh:128
SoilModelBase::SoilModelType
SoilModelType
Definition: soil_models.hh:55
RichardsLMH::RichardsLMH
RichardsLMH(Mesh &mesh, const Input::Record in_rec, TimeGovernor *tm=nullptr)
Definition: richards_lmh.cc:125
EquationBase::eq_fieldset_
FieldSet * eq_fieldset_
Definition: equation.hh:229
balance.hh
VectorMPI
Definition: vector_mpi.hh:43
FieldCommon::description
FieldCommon & description(const string &description)
Definition: field_common.hh:127
RichardsLMH::assembly_linear_system
void assembly_linear_system() override
Definition: richards_lmh.cc:203
Input::Type::Selection::add_value
Selection & add_value(const int value, const std::string &key, const std::string &description="", TypeBase::attribute_map attributes=TypeBase::attribute_map())
Adds one new value with name given by key to the Selection.
Definition: type_selection.cc:50
ASSERT_PTR
#define ASSERT_PTR(ptr)
Definition of assert macro checking non-null pointer (PTR) only for debug mode.
Definition: asserts.hh:340
DarcyLMH::eq_fields_
std::shared_ptr< EqFields > eq_fields_
Definition: darcy_flow_lmh.hh:306
START_TIMER
#define START_TIMER(tag)
Starts a timer with specified tag.
Definition: sys_profiler.hh:115
SoilModelBase::irmay
@ irmay
Definition: soil_models.hh:57
RichardsLMH::EqFields::water_content_saturated
Field< 3, FieldValue< 3 >::Scalar > water_content_saturated
Definition: richards_lmh.hh:72
RichardsLMH::initialize_specific
void initialize_specific() override
Definition: richards_lmh.cc:137
FieldCommon::name
FieldCommon & name(const string &name)
Definition: field_common.hh:120
assembly_richards_old.hh