Flow123d  master-1edfbef2b
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 
40 {
41  *this += water_content.name("water_content")
42  .units(UnitSI::dimensionless())
44  .description(R"(Water content.
45  It is a fraction of water volume to the whole volume.)");
46  *this += conductivity_richards.name("conductivity_richards")
47  .units( UnitSI().m().s(-1) )
49  .description("Computed isotropic scalar conductivity by the soil model.");
50 
51  *this += water_content_saturated.name("water_content_saturated")
52  .description(R"(Saturated water content (($ \theta_s $)).
53  Relative volume of water in a reference volume of a saturated porous media.)")
54  .input_default("0.0")
55  .units( UnitSI::dimensionless() );
56 
57  *this += water_content_residual.name("water_content_residual")
58  .description(R"(Residual water content (($ \theta_r $)).
59  Relative volume of water in a reference volume of an ideally dry porous media.)")
60  .input_default("0.0")
61  .units( UnitSI::dimensionless() );
62 
63  *this += genuchten_p_head_scale.name("genuchten_p_head_scale")
64  .description(R"(The van Genuchten pressure head scaling parameter (($ \alpha $)).
65  It is related to the inverse of the air entry pressure, i.e. the pressure
66  where the relative water content starts to decrease below 1.)")
67  .input_default("0.0")
68  .units( UnitSI().m(-1) );
69 
70  *this += genuchten_n_exponent.name("genuchten_n_exponent")
71  .description("The van Genuchten exponent parameter (($ n $)).")
72  .input_default("2.0")
73  .units( UnitSI::dimensionless() );
74 }
75 
76 
78 : DarcyLMH::EqData::EqData() {}
79 
80 
82  namespace it=Input::Type;
83 
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),
128 {
129  eq_fields_ = make_shared<EqFields>();
130  eq_data_ = make_shared<EqData>();
133  this->eq_fieldset_ = eq_fields_.get();
134  //eq_data_->edge_new_local_4_mesh_idx_ = &(this->edge_new_local_4_mesh_idx_);
135 
136  eq_fields_->set_mesh(*mesh_);
137 }
138 
139 
141 
142  auto model_rec = input_record_.val<Input::Record>("soil_model");
143  auto model_type = model_rec.val<SoilModelBase::SoilModelType>("model_type");
144  double fraction= model_rec.val<double>("cut_fraction");
145  if (model_type == SoilModelBase::van_genuchten)
146  eq_data_->soil_model_ = std::make_shared<SoilModel_VanGenuchten>(fraction);
147  else if (model_type == SoilModelBase::irmay)
148  eq_data_->soil_model_ = std::make_shared<SoilModel_Irmay>(fraction);
149  else
150  ASSERT_PERMANENT(false);
151 
152  // create edge vectors
153  eq_data_->water_content_previous_time = eq_data_->dh_cr_disc_->create_vector();
154  eq_data_->capacity = eq_data_->dh_cr_disc_->create_vector();
155 
156  ASSERT_PTR(mesh_);
157  eq_data_->mesh = mesh_;
158 
159  eq_fields_->water_content_ptr = create_field_fe< 3, FieldValue<3>::Scalar >(eq_data_->dh_cr_disc_);
160  eq_fields_->water_content.set(eq_fields_->water_content_ptr, 0.0);
161 
162  eq_fields_->conductivity_ptr = create_field_fe< 3, FieldValue<3>::Scalar >(eq_data_->dh_p_);
163  eq_fields_->conductivity_richards.set(eq_fields_->conductivity_ptr, 0.0);
164 
165 
166  //eq_data_->multidim_assembler = AssemblyFlowBase::create< AssemblyRichards >(eq_fields_, eq_data_);
167 }
168 
169 
170 //void RichardsLMH::initial_condition_postprocess()
171 //{
172 // // modify side fluxes in parallel
173 // // for every local edge take time term on diagonal and add it to the corresponding flux
174 //
175 // for ( DHCellAccessor dh_cell : eq_data_->dh_->own_range() ) {
176 // eq_data_->multidim_assembler[dh_cell.elm().dim()-1]->update_water_content(dh_cell);
177 // }
178 //}
179 
180 
182 {
183  eq_data_->p_edge_solution_previous_time.copy_from(eq_data_->p_edge_solution);
184  VectorMPI water_content_vec = eq_fields_->water_content_ptr->vec();
185  eq_data_->water_content_previous_time.copy_from(water_content_vec);
186 
187  eq_data_->p_edge_solution_previous_time.local_to_ghost_begin();
188  eq_data_->p_edge_solution_previous_time.local_to_ghost_end();
189 }
190 
191 bool RichardsLMH::zero_time_term(bool time_global) {
192  if (time_global) {
193  return (eq_fields_->storativity.input_list_size() == 0)
194  && (eq_fields_->water_content_saturated.input_list_size() == 0);
195 
196  } else {
197  return (eq_fields_->storativity.field_result(mesh_->region_db().get_region_set("BULK"))
198  == result_zeros)
199  && (eq_fields_->water_content_saturated.field_result(mesh_->region_db().get_region_set("BULK"))
200  == result_zeros);
201  }
202 }
203 
204 
206 {
207  START_TIMER("RicharsLMH::assembly_linear_system");
208 
209  eq_data_->p_edge_solution.local_to_ghost_begin();
210  eq_data_->p_edge_solution.local_to_ghost_end();
211 
212  eq_data_->is_linear = eq_fields_->genuchten_p_head_scale.field_result(mesh_->region_db().get_region_set("BULK")) == result_zeros;
213 
214  //DebugOut() << "Assembly linear system\n";
215  START_TIMER("full assembly");
216 // if (typeid(*schur0) != typeid(LinSys_BDDC)) {
217 // schur0->start_add_assembly(); // finish allocation and create matrix
218 // schur_compl->start_add_assembly();
219 // }
220 
222 
223  eq_data_->time_step_ = time_->dt();
224 
227 
228 // assembly_mh_matrix( eq_data_->multidim_assembler ); // fill matrix
229  START_TIMER("RichardsLMH::assembly_steady_mh_matrix");
230  this->mh_matrix_assembly_->assemble(eq_data_->dh_); // fill matrix
231  END_TIMER("RichardsLMH::assembly_steady_mh_matrix");
232 
235 }
236 
237 
241  this->mh_matrix_assembly_ = new GenericAssembly< MHMatrixAssemblyRichards >(this->eq_fields_.get(), this->eq_data_.get());
243 }
244 
245 
249 }
250 
251 
253  if (init_cond_postprocess_assembly_!=nullptr) {
256  }
257 }
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:181
result_zeros
@ result_zeros
Definition: field_algo_base.hh:74
RichardsLMH::read_init_cond_asm
void read_init_cond_asm() override
Call assemble of read_init_cond_assembly_ and init_cond_postprocess_assembly_.
Definition: richards_lmh.cc:246
TimeGovernor::dt
double dt() const
Definition: time_governor.hh:565
UnitSI::dimensionless
static UnitSI & dimensionless()
Returns dimensionless unit.
Definition: unit_si.cc:55
assembly_richards.hh
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:77
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:129
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
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:191
LinSys::mat_zero_entries
virtual PetscErrorCode mat_zero_entries()
Definition: linsys.hh:264
DarcyLMH::get_input_type
static const Input::Type::Record & get_input_type()
Definition: darcy_flow_lmh.cc:104
DarcyLMH::mh_matrix_assembly_
GenericAssemblyBase * mh_matrix_assembly_
Definition: darcy_flow_lmh.hh:355
GenericAssemblyBase::assemble
virtual void assemble(std::shared_ptr< DOFHandlerMultiDim > dh)=0
GenericAssembly::assemble
void assemble(std::shared_ptr< DOFHandlerMultiDim > dh) override
General assemble methods.
Definition: generic_assembly.hh:204
LinSys::set_matrix_changed
void set_matrix_changed()
Definition: linsys.hh:212
RichardsLMH::EqData
Definition: richards_lmh.hh:89
DarcyLMH::type_field_descriptor
static const Input::Type::Record & type_field_descriptor()
Definition: darcy_flow_lmh.cc:89
RichardsLMH::eq_fields_
std::shared_ptr< EqFields > eq_fields_
Definition: richards_lmh.hh:128
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::initialize_asm
void initialize_asm() override
Create and initialize assembly objects.
Definition: richards_lmh.cc:238
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::eq_fields
EqFields & eq_fields()
Definition: darcy_flow_lmh.hh:236
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
RichardsLMH::get_input_type
static const Input::Type::Record & get_input_type()
Definition: richards_lmh.cc:81
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:346
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:71
Input::Type::Record
Record type proxy class.
Definition: type_record.hh:182
RichardsLMH::~RichardsLMH
virtual ~RichardsLMH() override
Definition: richards_lmh.cc:252
DarcyLMH::lin_sys_schur
LinSys & lin_sys_schur()
Getter for the linear system of the 2. Schur complement.
Definition: darcy_flow_lmh.hh:323
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
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:111
DarcyLMH
Mixed-hybrid model of linear Darcy flow, possibly unsteady.
Definition: darcy_flow_lmh.hh:133
SoilModelBase::SoilModelType
SoilModelType
Definition: soil_models.hh:55
DarcyLMH::reconstruct_schur_assembly_
GenericAssemblyBase * reconstruct_schur_assembly_
Definition: darcy_flow_lmh.hh:356
RichardsLMH::init_cond_postprocess_assembly_
GenericAssembly< InitCondPostprocessAssembly > * init_cond_postprocess_assembly_
general assembly object, hold assembly objects of appropriate dimension
Definition: richards_lmh.hh:132
RichardsLMH
Edge lumped mixed-hybrid solution of unsteady Darcy flow.
Definition: richards_lmh.hh:65
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
DarcyLMH::read_init_cond_assembly_
GenericAssembly< ReadInitCondAssemblyLMH > * read_init_cond_assembly_
general assembly objects, hold assembly objects of appropriate dimension
Definition: darcy_flow_lmh.hh:354
balance.hh
VectorMPI
Definition: vector_mpi.hh:43
RichardsLMH::assembly_linear_system
void assembly_linear_system() override
Definition: richards_lmh.cc:205
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:345
START_TIMER
#define START_TIMER(tag)
Starts a timer with specified tag.
Definition: sys_profiler.hh:115
GenericAssembly< ReadInitCondAssemblyLMH >
SoilModelBase::irmay
@ irmay
Definition: soil_models.hh:57
END_TIMER
#define END_TIMER(tag)
Ends a timer with specified tag.
Definition: sys_profiler.hh:149
RichardsLMH::initialize_specific
void initialize_specific() override
Definition: richards_lmh.cc:140