1 #include <boost/foreach.hpp>
24 using namespace Input::Type;
29 "Linear isotherm runs the concentration exchange between liquid and solid.")
31 "Langmuir isotherm runs the concentration exchange between liquid and solid.")
33 "Freundlich isotherm runs the concentration exchange between liquid and solid.");
38 =
Record(
"Adsorption",
"AUXILIARY RECORD. Should not be directly part of the input tree.")
40 "Names of the substances that take part in the adsorption model.")
42 "Density of the solvent.")
44 "Number of equidistant substeps, molar mass and isotherm intersections")
46 "Specifies molar masses of all the adsorbing species.")
48 "Specifies solubility limits of all the adsorbing species.")
50 "Specifies highest aqueous concentration in interpolation table.")
51 .
declare_key(
"input_fields",
Array(EqData(
"").input_data_set_.make_field_descriptor_type(
"Sorption")), Default::obligatory(),
52 "Containes region specific data necessary to construct isotherms.")
53 .declare_key(
"reaction_liquid",
ReactionTerm::input_type, Default::optional(),
"Reaction model following the sorption in the liquid.")
54 .declare_key(
"reaction_solid",
ReactionTerm::input_type, Default::optional(),
"Reaction model following the sorption in the solid.");
59 ADD_FIELD(rock_density,
"Rock matrix density.",
"0.0");
61 ADD_FIELD(sorption_type,
"Considered adsorption is described by selected isotherm.");
62 sorption_type.input_selection(&sorption_type_selection);
64 ADD_FIELD(isotherm_mult,
"Multiplication parameters (k, omega) in either Langmuir c_s = omega * (alpha*c_a)/(1- alpha*c_a) or in linear c_s = k * c_a isothermal description.",
"1.0");
66 ADD_FIELD(isotherm_other,
"Second parameters (alpha, ...) defining isotherm c_s = omega * (alpha*c_a)/(1- alpha*c_a).",
"1.0");
67 ADD_FIELD(init_conc_solid,
"Initial solid concentration of substances."
68 " Vector, one value for every substance.",
"0");
70 rock_density.units(
"");
71 init_conc_solid.units(
"M/L^3");
73 input_data_set_ += *
this;
82 output_fields += *
this;
83 output_fields += conc_solid.name(output_field_name).units(
"M/L^3");
91 case SorptionRecord::mobile:
92 rec =
IT::Record(
"SorptionMobile",
"Adsorption model in the mobile zone, following the dual porosity model.")
95 .
declare_key(
"output_fields",
IT::Array(make_output_selection(
"conc_solid",
"SorptionMobile_Output")),
96 IT::Default(
"conc_solid"),
"List of fields to write to output stream.");
98 case SorptionRecord::immobile:
99 rec =
IT::Record(
"SorptionImmobile",
"Adsorption model in the immobile zone, following the dual porosity model.")
102 .
declare_key(
"output_fields",
IT::Array(make_output_selection(
"conc_immobile_solid",
"SorptionImmobile_Output")),
103 IT::Default(
"conc_immobile_solid"),
"List of fields to write to output stream.");
107 rec =
IT::Record(
"Sorption",
"Adsorption model in the reaction term of transport.")
110 .
declare_key(
"output_fields",
IT::Array(make_output_selection(
"conc_solid",
"Sorption_Output")),
111 IT::Default(
"conc_solid"),
"List of fields to write to output stream.");
137 for (
unsigned int sbi = 0; sbi <
names_.size(); sbi++)
162 xprintf(
UsrErr,
"Sorption model cannot have another descendant sorption model.\n");
165 xprintf(
UsrErr,
"Sorption model cannot have descendant dual porosity model.\n");
169 xprintf(
UsrErr,
"Semchem chemistry model is not supported at current time.\n");
172 xprintf(
UsrErr,
"Unknown reactions type in Sorption model.\n");
189 xprintf(
UsrErr,
"Sorption model cannot have another descendant sorption model.\n");
192 xprintf(
UsrErr,
"Sorption model cannot have descendant dual porosity model.\n");
196 xprintf(
UsrErr,
"Semchem chemistry model is not supported at current time.\n");
199 xprintf(
UsrErr,
"Unknown reactions type in Sorption model.\n");
211 ASSERT(
time_ !=
nullptr,
"Time governor has not been set yet.\n");
221 for(
unsigned int i_reg = 0; i_reg < nr_of_regions; i_reg++)
224 for(
unsigned int i_subst = 0; i_subst <
n_substances_; i_subst++)
233 for (
unsigned int sbi = 0; sbi <
names_.size(); sbi++)
266 unsigned int k, global_idx, i_subst = 0;
270 for(; spec_iter != substances_array.
end(); ++spec_iter, i_subst++)
274 for(k = 0; k <
names_.size(); k++)
276 if (*spec_iter ==
names_[k])
285 xprintf(
UsrErr,
"Wrong name of %d-th substance - not found in global set of transported substances.\n",
310 xprintf(
UsrErr,
"Number of 'substeps'=%d in isotherm interpolation table must be be >0.\n",
321 else xprintf(
UsrErr,
"Number of molar masses %d has to match number of adsorbing species %d.\n",
330 xprintf(
UsrErr,
"Number of given solubility limits %d has to match number of adsorbing species %d.\n",
339 if( interp_table_limits )
344 xprintf(
UsrErr,
"Number of given table limits %d has to match number of adsorbing species %d.\n",
355 ASSERT(
n_substances_ > 0,
"Number of substances is wrong, they might have not been set yet.\n");
371 for (
unsigned int sbi=0; sbi<
names_.size(); sbi++)
374 std::shared_ptr<FieldElementwise<3, FieldValue<3>::Scalar> > output_field_ptr(
387 ASSERT(
time_ !=
nullptr,
"Time governor has not been set yet.\n");
456 for(
unsigned int i_subst = 0; i_subst <
n_substances_; i_subst++)
468 int reg_idx = elem->region().bulk_idx();
469 unsigned int i_subst, subst_id;
475 if (isotherms_vec[0].is_precomputed())
498 return concentrations;
506 int sbi, n_subst, ierr;
512 for (sbi = 0; sbi < n_subst; sbi++) {
534 for (sbi = 0; sbi <
names_.size(); sbi++) {
void output_type(OutputTime::DiscreteSpace rt)
unsigned int size() const
get global size
void set_input_list(Input::Array input_list)
virtual void zero_time_step()
void allocate_output_mpi(void)
Allocates petsc vectors, prepares them for output and creates vector scatter.
void set_limit_side(LimitSide side)
MultiField< 3, FieldValue< 3 >::Scalar > conc_solid
Calculated sorbed concentrations, for output only.
OutputTime * output_stream_
Pointer to a transport output stream.
void init(const vector< string > &names)
ReactionTerm * reaction_liquid
std::vector< std::vector< Isotherm > > isotherms
virtual ~SorptionBase(void)
void initialize_substance_ids()
Reads names of substances from input and creates indexing to global vector of substance,.
double ** concentration_matrix_
unsigned int bulk_size() const
virtual void initialize()
Initialize fields.
EqData(const string &output_field_name)
Collect all fields.
Input::Type::Selection output_selection
Vec * vconc_solid_out
PETSC sorbed concentration vector output (gathered - sequential)
double ** compute_reaction(double **concentrations, int loc_el)
vector< string > names_
Names belonging to substances.
void zero_time_step() override
static Input::Type::Record input_type
RegionSet get_region_set(const string &set_name) const
static Input::Type::Record input_type
int * row_4_el_
Indices of rows belonging to elements.
std::vector< double > molar_masses_
const RegionDB & region_db() const
ElementAccessor< 3 > element_accessor(unsigned int idx, bool boundary=false)
static Input::Type::Selection sorption_type_selection
Field< 3, FieldValue< 3 >::Vector > init_conc_solid
Initial sorbed concentrations.
std::vector< double > table_limit_
#define ADD_FIELD(name,...)
std::vector< unsigned int > substance_global_idx_
Mapping from local indexing of substances to global.
void initialize_fields()
Initializes field sets.
static Input::Type::AbstractRecord input_type
unsigned int n_elements() const
static Input::Type::Record input_type
Distribution * distribution_
Pointer to reference to distribution of elements between processors.
void output_data(void) override
Output method.
static constexpr Mask input_copy
A field that is input of its equation and cna not read from input, thus muzt be set by copy...
Vec * vconc_solid
PETSC sorbed concentration vector (parallel).
FieldSet output_fields
Fields indended for output, i.e. all input fields plus those representing solution.
void initialize_from_input()
Initializes private members of sorption from the input record.
std::vector< double > solubility_vec_
unsigned int n_interpolation_steps_
#define ASSERT_LESS(a, b)
#define START_TIMER(tag)
Starts a timer with specified tag.
virtual void isotherm_reinit(std::vector< Isotherm > &isotherms, const ElementAccessor< 3 > &elm)=0
Reinitializes the isotherm.
virtual Value::return_type const & value(const Point &p, const ElementAccessor< spacedim > &elm) const
ReactionTerm * reaction_solid
static Input::Type::Record input_type
static Input::Type::Record record_factory(SorptionRecord::Type)
Creates the input record for different cases of sorption model (simple or in dual porosity)...
double ** conc_solid_out
sorbed concentration array output (gathered - sequential)
void output_vector_gather(void) override
Gathers all the parallel vectors to enable them to be output.
Input::Array output_array
void update_solution(void) override
Updates the solution.
static Input::Type::AbstractRecord input_type
void * xmalloc(size_t size)
Memory allocation with checking.
void set_time(const TimeGovernor &time)
virtual void set_time_governor(TimeGovernor &time)
Support classes for parallel programing.
void set_n_components(unsigned int n_comp)
virtual void update_solution()
void output(OutputTime *stream)
Input::Record input_record_
int * el_4_loc_
Indices of elements belonging to local dofs.
void add_admissible_field_names(const Input::Array &in_array, const Input::Type::Selection &in_sel)
Registers names of output fields that can be written using this stream.
void set_initial_condition()
Reads and sets initial condition for concentration in solid.
bool is_constant(Region reg) const
ReactionTerm & names(const std::vector< string > &names)
Sets the names of substances considered in transport.
unsigned int bulk_idx() const
Returns index of the region in the bulk set.
#define END_TIMER(tag)
Ends a timer with specified tag.
arma::vec::fixed< spacedim > centre() const
void set_mesh(const Mesh &mesh)
VecScatter vconc_out_scatter
Output vector scatter.
unsigned int n_substances_
#define MPI_Barrier(comm)
EqData * data_
Pointer to equation data. The object is constructed in descendants.
ReactionTerm & concentration_matrix(double **concentration, Distribution *conc_distr, int *el_4_loc, int *row_4_el)
void set_mesh(const Mesh &mesh) override
ElementVector element
Vector of elements of the mesh.
FieldSet input_data_set_
Input data set - fields in this set are read from the input file.
unsigned int lsize(int proc) const
get local size
void initialize() override
Prepares the object to usage.