17#include <pybind11/eval.h>
20#include <boost/algorithm/string/predicate.hpp>
22#include <range/v3/action/sort.hpp>
23#include <range/v3/action/unique.hpp>
24#include <range/v3/algorithm/contains.hpp>
25#include <range/v3/range/conversion.hpp>
26#include <range/v3/view/adjacent_remove_if.hpp>
38#include "InfoLib/CMakeInfo.h"
44#elif defined(USE_PETSC)
68#ifdef OGS_EMBED_PYTHON_INTERPRETER
72#ifdef OGS_BUILD_PROCESS_COMPONENTTRANSPORT
76#ifdef OGS_BUILD_PROCESS_STEADYSTATEDIFFUSION
79#ifdef OGS_BUILD_PROCESS_HT
82#ifdef OGS_BUILD_PROCESS_HEATCONDUCTION
85#ifdef OGS_BUILD_PROCESS_HEATTRANSPORTBHE
88#ifdef OGS_BUILD_PROCESS_WELLBORESIMULATOR
91#ifdef OGS_BUILD_PROCESS_HYDROMECHANICS
94#ifdef OGS_BUILD_PROCESS_LARGEDEFORMATION
97#ifdef OGS_BUILD_PROCESS_LIE_M
100#ifdef OGS_BUILD_PROCESS_LIE_HM
103#ifdef OGS_BUILD_PROCESS_LIQUIDFLOW
106#ifdef OGS_BUILD_PROCESS_STOKESFLOW
110#ifdef OGS_BUILD_PROCESS_THERMORICHARDSMECHANICS
114#ifdef OGS_BUILD_PROCESS_PHASEFIELD
117#ifdef OGS_BUILD_PROCESS_HMPHASEFIELD
120#ifdef OGS_BUILD_PROCESS_RICHARDSCOMPONENTTRANSPORT
123#ifdef OGS_BUILD_PROCESS_RICHARDSFLOW
126#ifdef OGS_BUILD_PROCESS_RICHARDSMECHANICS
129#ifdef OGS_BUILD_PROCESS_SMALLDEFORMATION
132#ifdef OGS_BUILD_PROCESS_SMALLDEFORMATIONNONLOCAL
135#ifdef OGS_BUILD_PROCESS_TES
138#ifdef OGS_BUILD_PROCESS_TH2M
141#ifdef OGS_BUILD_PROCESS_THERMALTWOPHASEFLOWWITHPP
144#ifdef OGS_BUILD_PROCESS_THERMOHYDROMECHANICS
147#ifdef OGS_BUILD_PROCESS_THERMOMECHANICALPHASEFIELD
150#ifdef OGS_BUILD_PROCESS_THERMOMECHANICS
153#ifdef OGS_BUILD_PROCESS_THERMORICHARDSFLOW
156#ifdef OGS_BUILD_PROCESS_TWOPHASEFLOWWITHPP
159#ifdef OGS_BUILD_PROCESS_TWOPHASEFLOWWITHPRHO
166 std::string
const& dir_first, std::string
const& dir_second)
168 DBUG(
"Reading geometry file '{:s}'.", fname);
175 WARN(
"File {:s} not found in {:s}! Trying reading from {:s}.", fname,
176 dir_first, dir_second);
179 OGS_FATAL(
"Could not read geometry file {:s} in {:s}.", fname,
188 std::string
const& directory)
191 directory, mesh_config_parameter.
getValue<std::string>());
192 DBUG(
"Reading mesh file '{:s}'.", mesh_file);
198 std::filesystem::path abspath{mesh_file};
201 abspath = std::filesystem::absolute(mesh_file);
203 catch (std::filesystem::filesystem_error
const& e)
205 ERR(
"Determining the absolute path of '{}' failed: {}", mesh_file,
209 OGS_FATAL(
"Could not read mesh from '{:s}' file. No mesh added.",
213#ifdef DOXYGEN_DOCU_ONLY
218 if (
auto const axially_symmetric =
221 "axially_symmetric"))
223 mesh->setAxiallySymmetric(*axially_symmetric);
224 if (mesh->getDimension() == 3 && mesh->isAxiallySymmetric())
226 OGS_FATAL(
"3D mesh cannot be axially symmetric.");
235 std::string
const& project_directory)
237 std::vector<std::unique_ptr<MeshLib::Mesh>> meshes;
245 DBUG(
"Reading multiple meshes.");
247 auto const configs = optional_meshes->getConfigParameterList(
"mesh");
248 std::transform(configs.begin(), configs.end(),
249 std::back_inserter(meshes),
250 [&directory](
auto const& mesh_config)
251 { return readSingleMesh(mesh_config, directory); });
252 if (
auto const geometry_file_name =
256 readGeometry(*geometry_file_name, geoObjects, directory,
266 auto const geometry_file_name =
274 std::unique_ptr<MeshGeoToolsLib::SearchLength> search_length_algorithm =
276 bool const multiple_nodes_allowed =
false;
277 auto additional_meshes =
279 geoObjects, *meshes[0], std::move(search_length_algorithm),
280 multiple_nodes_allowed);
282 std::move(begin(additional_meshes), end(additional_meshes),
283 std::back_inserter(meshes));
287 ranges::actions::sort;
288 auto const sorted_names = meshes | mesh_names;
289 auto const unique_names = meshes | mesh_names | ranges::actions::unique;
290 if (unique_names.size() < sorted_names.size())
293 "Mesh names aren't unique. From project file read mesh names are:");
300 auto const zero_mesh_field_data_by_material_ids =
303 "zero_mesh_field_data_by_material_ids");
304 if (zero_mesh_field_data_by_material_ids)
307 "Tag 'zero_mesh_field_data_by_material_ids` is experimental. Its "
308 "name may be changed, or it may be removed due to its "
309 "corresponding feature becomes a single tool. Please use it with "
312 *meshes[0], *zero_mesh_field_data_by_material_ids);
324 INFO(
"readRasters ...");
325 std::vector<GeoLib::NamedRaster> named_rasters;
329 if (optional_rasters)
332 auto const configs = optional_rasters->getConfigSubtreeList(
"raster");
334 configs.begin(), configs.end(), std::back_inserter(named_rasters),
335 [&raster_directory, &min_max_points](
auto const& raster_config)
337 return GeoLib::IO::readRaster(raster_config, raster_directory,
341 INFO(
"readRasters done");
342 return named_rasters;
370 std::string
const& project_directory,
371 std::string
const& output_directory,
372 std::string
const& mesh_directory,
373 [[maybe_unused]] std::string
const& script_directory)
374 : _mesh_vec(
readMeshes(project_config, mesh_directory, project_directory)),
375 _named_rasters(
readRasters(project_config, project_directory,
382 if (
auto const python_script =
386 namespace py = pybind11;
388#ifdef OGS_EMBED_PYTHON_INTERPRETER
389 _py_scoped_interpreter.emplace(ApplicationsLib::setupEmbeddedPython());
393 auto py_path = py::module::import(
"sys").attr(
"path");
394 py_path.attr(
"append")(script_directory);
396 auto const script_path =
397 BaseLib::joinPaths(script_directory, *python_script);
400 py::object scope = py::module::import(
"__main__").attr(
"__dict__");
402 auto globals = py::dict(scope);
403 globals[
"ogs_prj_directory"] = project_directory;
404 globals[
"ogs_mesh_directory"] = mesh_directory;
405 globals[
"ogs_script_directory"] = script_directory;
408 py::eval_file(script_path, scope);
410 catch (py::error_already_set
const& e)
412 OGS_FATAL(
"Error evaluating python script {}: {}", script_path,
418 parseCurves(project_config.getConfigSubtreeOptional(
"curves"));
420 auto parameter_names_for_transformation =
422 parseParameters(project_config.getConfigSubtree(
"parameters"));
426 project_config.getConfigSubtreeOptional(
"local_coordinate_system"),
429 for (
auto& parameter : _parameters)
431 if (std::find(begin(parameter_names_for_transformation),
432 end(parameter_names_for_transformation),
434 end(parameter_names_for_transformation))
436 if (!_local_coordinate_system)
439 "The parameter '{:s}' is using the local coordinate system "
440 "but no local coordinate system was provided.",
443 parameter->setCoordinateSystem(*_local_coordinate_system);
446 parameter->initialize(_parameters);
450 parseProcessVariables(project_config.getConfigSubtree(
"process_variables"));
453 parseMedia(project_config.getConfigSubtreeOptional(
"media"));
456 parseLinearSolvers(project_config.getConfigSubtree(
"linear_solvers"));
458 auto chemical_solver_interface = parseChemicalSolverInterface(
460 project_config.getConfigSubtreeOptional(
"chemical_system"),
464 parseProcesses(project_config.getConfigSubtree(
"processes"),
465 project_directory, output_directory,
466 std::move(chemical_solver_interface));
469 parseNonlinearSolvers(project_config.getConfigSubtree(
"nonlinear_solvers"));
472 parseTimeLoop(project_config.getConfigSubtree(
"time_loop"),
479 DBUG(
"Parse process variables:");
481 std::set<std::string> names;
489 auto const mesh_name =
491 var_config.getConfigParameter<std::string>(
"mesh",
498 if (!names.insert(pv.getName()).second)
500 OGS_FATAL(
"A process variable with name `{:s}' already exists.",
513 std::set<std::string> names;
514 std::vector<std::string> parameter_names_for_transformation;
516 DBUG(
"Reading parameters:");
517 for (
auto parameter_config :
523 if (!names.insert(p->name).second)
525 OGS_FATAL(
"A parameter with name `{:s}' already exists.", p->name);
528 auto const use_local_coordinate_system =
530 parameter_config.getConfigParameterOptional<
bool>(
531 "use_local_coordinate_system");
532 if (!!use_local_coordinate_system && *use_local_coordinate_system)
534 parameter_names_for_transformation.push_back(p->name);
547 return parameter_names_for_transformation;
551 std::optional<BaseLib::ConfigTree>
const& media_config)
558 DBUG(
"Reading media:");
562 ERR(
"A mesh is required to define medium materials.");
566 for (
auto const& medium_config :
568 media_config->getConfigSubtreeList(
"medium"))
570 auto create_medium = [dim =
_mesh_vec[0]->getDimension(),
571 &medium_config,
this](
int const id)
579 auto const material_id_string =
581 medium_config.getConfigAttribute<std::string>(
"id",
"0");
583 std::vector<int>
const material_ids_of_this_medium =
587 for (
auto const&
id : material_ids_of_this_medium)
590 id,
_media, material_ids_of_this_medium, create_medium);
596 OGS_FATAL(
"No entity is found inside <media>.");
600std::unique_ptr<ChemistryLib::ChemicalSolverInterface>
602 std::optional<BaseLib::ConfigTree>
const& config,
603 std::string
const& output_directory)
610 std::unique_ptr<ChemistryLib::ChemicalSolverInterface>
611 chemical_solver_interface;
612#ifdef OGS_BUILD_PROCESS_COMPONENTTRANSPORT
614 "Ready for initializing interface to a chemical solver for water "
615 "chemistry calculation.");
617 auto const chemical_solver =
619 config->getConfigAttribute<std::string>(
"chemical_solver");
621 if (boost::iequals(chemical_solver,
"Phreeqc"))
624 "Configuring phreeqc interface for water chemistry calculation "
625 "using file-based approach.");
629 *config, output_directory);
631 else if (boost::iequals(chemical_solver,
"PhreeqcKernel"))
634 "The chemical solver option of PhreeqcKernel is not accessible for "
635 "the time being. Please set 'Phreeqc'' as the chemical solver for "
636 "reactive transport modeling.");
638 else if (boost::iequals(chemical_solver,
"SelfContained"))
641 "Use self-contained chemical solver for water chemistry "
651 "Unknown chemical solver. Please specify either Phreeqc or "
652 "PhreeqcKernel as the solver for water chemistry calculation "
656 (void)output_directory;
659 "Found the type of the process to be solved is not component transport "
660 "process. Please specify the process type to ComponentTransport. At "
661 "the present, water chemistry calculation is only available for "
662 "component transport process.");
664 return chemical_solver_interface;
669 std::string
const& project_directory,
670 std::string
const& output_directory,
671 [[maybe_unused]] std::unique_ptr<ChemistryLib::ChemicalSolverInterface>&&
672 chemical_solver_interface)
674 (void)project_directory;
675 (void)output_directory;
677 DBUG(
"Reading processes:");
683 process_config.peekConfigParameter<std::string>(
"type");
687 process_config.getConfigParameter<std::string>(
"name");
689 [[maybe_unused]]
auto const integration_order =
691 process_config.getConfigParameter<
int>(
"integration_order");
693 std::unique_ptr<ProcessLib::Process> process;
697 process_config.getConfigSubtreeOptional(
"jacobian_assembler"));
699#ifdef OGS_BUILD_PROCESS_STEADYSTATEDIFFUSION
700 if (type ==
"STEADY_STATE_DIFFUSION")
709 name, *
_mesh_vec[0], std::move(jacobian_assembler),
715#ifdef OGS_BUILD_PROCESS_LIQUIDFLOW
716 if (type ==
"LIQUID_FLOW")
719 name, *
_mesh_vec[0], std::move(jacobian_assembler),
725#ifdef OGS_BUILD_PROCESS_STOKESFLOW
726 if (type ==
"StokesFlow")
729 "The StokesFlow process is deprecated and will be removed in "
736 name, *
_mesh_vec[0], std::move(jacobian_assembler),
742 "StokesFlow process does not support given "
749#ifdef OGS_BUILD_PROCESS_TES
753 "The TES process is deprecated and will be removed in "
756 name, *
_mesh_vec[0], std::move(jacobian_assembler),
762#ifdef OGS_BUILD_PROCESS_TH2M
769 name, *
_mesh_vec[0], std::move(jacobian_assembler),
776 name, *
_mesh_vec[0], std::move(jacobian_assembler),
782 OGS_FATAL(
"TH2M process does not support given dimension");
787#ifdef OGS_BUILD_PROCESS_HEATCONDUCTION
788 if (type ==
"HEAT_CONDUCTION")
791 name, *
_mesh_vec[0], std::move(jacobian_assembler),
797#ifdef OGS_BUILD_PROCESS_HEATTRANSPORTBHE
798 if (type ==
"HEAT_TRANSPORT_BHE")
803 "HEAT_TRANSPORT_BHE can only work with a 3-dimensional "
809 name, *
_mesh_vec[0], std::move(jacobian_assembler),
815#ifdef OGS_BUILD_PROCESS_WELLBORESIMULATOR
816 if (type ==
"WELLBORE_SIMULATOR")
821 "WELLBORE_SIMULATOR can only work with a 1-dimensional "
827 name, *
_mesh_vec[0], std::move(jacobian_assembler),
833#ifdef OGS_BUILD_PROCESS_HYDROMECHANICS
834 if (type ==
"HYDRO_MECHANICS")
837 process_config.getConfigParameterOptional<
int>(
"dimension"))
840 "The 'dimension' tag has been removed in the merge-request "
842 "The dimension is now taken from the main mesh and the tag "
844 "removed. There is a python script in the merge-request "
846 "for automatic conversion.");
854 std::move(jacobian_assembler),
863 std::move(jacobian_assembler),
870 "HYDRO_MECHANICS process does not support given "
876#ifdef OGS_BUILD_PROCESS_LARGEDEFORMATION
877 if (type ==
"LARGE_DEFORMATION")
884 name, *
_mesh_vec[0], std::move(jacobian_assembler),
892 name, *
_mesh_vec[0], std::move(jacobian_assembler),
899 "LARGE_DEFORMATION process does not support given "
905#ifdef OGS_BUILD_PROCESS_LIE_HM
906 if (type ==
"HYDRO_MECHANICS_WITH_LIE")
909 process_config.getConfigParameterOptional<
int>(
"dimension"))
912 "The 'dimension' tag has been removed in the merge-request "
914 "The dimension is now taken from the main mesh and the tag "
916 "removed. There is a python script in the merge-request "
918 "for automatic conversion.");
925 name, *
_mesh_vec[0], std::move(jacobian_assembler),
933 name, *
_mesh_vec[0], std::move(jacobian_assembler),
940 "HYDRO_MECHANICS_WITH_LIE process does not support "
946#ifdef OGS_BUILD_PROCESS_HT
950 name, *
_mesh_vec[0], std::move(jacobian_assembler),
956#ifdef OGS_BUILD_PROCESS_COMPONENTTRANSPORT
957 if (type ==
"ComponentTransport")
961 name, *
_mesh_vec[0], std::move(jacobian_assembler),
964 std::move(chemical_solver_interface));
968#ifdef OGS_BUILD_PROCESS_PHASEFIELD
969 if (type ==
"PHASE_FIELD")
976 name, *
_mesh_vec[0], std::move(jacobian_assembler),
984 name, *
_mesh_vec[0], std::move(jacobian_assembler),
993#ifdef OGS_BUILD_PROCESS_HMPHASEFIELD
994 if (type ==
"HM_PHASE_FIELD")
1001 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1009 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1018#ifdef OGS_BUILD_PROCESS_RICHARDSCOMPONENTTRANSPORT
1019 if (type ==
"RichardsComponentTransport")
1023 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1029#ifdef OGS_BUILD_PROCESS_SMALLDEFORMATION
1030 if (type ==
"SMALL_DEFORMATION")
1037 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1045 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1052 "SMALL_DEFORMATION process does not support given "
1058#ifdef OGS_BUILD_PROCESS_SMALLDEFORMATIONNONLOCAL
1059 if (type ==
"SMALL_DEFORMATION_NONLOCAL")
1062 "The SMALL_DEFORMATION_NONLOCAL process is deprecated and will "
1063 "be removed in OGS-6.5.5.");
1069 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1077 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1084 "SMALL_DEFORMATION_NONLOCAL process does not support "
1085 "given dimension {:d}",
1091#ifdef OGS_BUILD_PROCESS_LIE_M
1092 if (type ==
"SMALL_DEFORMATION_WITH_LIE")
1095 process_config.getConfigParameterOptional<
int>(
"dimension"))
1098 "The 'dimension' tag has been removed in the merge-request "
1100 "The dimension is now taken from the main mesh and the tag "
1102 "removed. There is a python script in the merge-request "
1104 "for automatic conversion.");
1111 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1119 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1126 "SMALL_DEFORMATION_WITH_LIE process does not support "
1132#ifdef OGS_BUILD_PROCESS_THERMOHYDROMECHANICS
1133 if (type ==
"THERMO_HYDRO_MECHANICS")
1136 process_config.getConfigParameterOptional<
int>(
"dimension"))
1139 "The 'dimension' tag has been removed in the merge-request "
1141 "The dimension is now taken from the main mesh and the tag "
1143 "removed. There is a python script in the merge-request "
1145 "for automatic conversion.");
1152 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1160 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1167 "THERMO_HYDRO_MECHANICS process does not support given "
1173#ifdef OGS_BUILD_PROCESS_THERMOMECHANICALPHASEFIELD
1174 if (type ==
"THERMO_MECHANICAL_PHASE_FIELD")
1177 "The THERMO_MECHANICAL_PHASE_FIELD process is deprecated and "
1178 "will be removed in OGS-6.5.5.");
1184 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1192 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1201#ifdef OGS_BUILD_PROCESS_THERMOMECHANICS
1202 if (type ==
"THERMO_MECHANICS")
1209 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1217 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1226#ifdef OGS_BUILD_PROCESS_RICHARDSFLOW
1227 if (type ==
"RICHARDS_FLOW")
1230 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1236#ifdef OGS_BUILD_PROCESS_RICHARDSMECHANICS
1237 if (type ==
"RICHARDS_MECHANICS")
1240 process_config.getConfigParameterOptional<
int>(
"dimension"))
1243 "The 'dimension' tag has been removed in the merge-request "
1245 "The dimension is now taken from the main mesh and the tag "
1247 "removed. There is a python script in the merge-request "
1249 "for automatic conversion.");
1256 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1264 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1273#ifdef OGS_BUILD_PROCESS_THERMORICHARDSFLOW
1274 if (type ==
"THERMO_RICHARDS_FLOW")
1278 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1284#ifdef OGS_BUILD_PROCESS_THERMORICHARDSMECHANICS
1285 if (type ==
"THERMO_RICHARDS_MECHANICS")
1292 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1300 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1310#ifdef OGS_BUILD_PROCESS_TWOPHASEFLOWWITHPP
1311 if (type ==
"TWOPHASE_FLOW_PP")
1315 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1321#ifdef OGS_BUILD_PROCESS_TWOPHASEFLOWWITHPRHO
1322 if (type ==
"TWOPHASE_FLOW_PRHO")
1325 "The TWOPHASE_FLOW_PRHO process is deprecated and will be "
1326 "removed in OGS-6.5.5.");
1329 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1335#ifdef OGS_BUILD_PROCESS_THERMALTWOPHASEFLOWWITHPP
1336 if (type ==
"THERMAL_TWOPHASE_WITH_PP")
1340 name, *
_mesh_vec[0], std::move(jacobian_assembler),
1347 OGS_FATAL(
"Unknown process type: {:s}", type);
1351 [](std::unique_ptr<ProcessLib::Process>
const& p)
1352 {
return p->name; }))
1354 OGS_FATAL(
"The process name '{:s}' is not unique.", name);
1361 std::string
const& output_directory)
1363 DBUG(
"Reading time loop configuration.");
1365 bool const compensate_non_equilibrium_initial_residuum = std::any_of(
1368 [](
auto const& process_variable)
1369 {
return process_variable.compensateNonEquilibriumInitialResiduum(); });
1373 compensate_non_equilibrium_initial_residuum);
1377 OGS_FATAL(
"Initialization of time loop failed.");
1383 DBUG(
"Reading linear solver configuration.");
1389 auto const name = conf.getConfigParameter<std::string>(
"name");
1390 auto const linear_solver_parser =
1392 auto const solver_options =
1393 linear_solver_parser.parseNameAndOptions(
"", &conf);
1398 std::make_unique<GlobalLinearSolver>(std::get<0>(solver_options),
1399 std::get<1>(solver_options)),
1400 "The linear solver name is not unique");
1406 DBUG(
"Reading non-linear solver configuration.");
1411 auto const ls_name =
1413 conf.getConfigParameter<std::string>(
"linear_solver");
1416 "A linear solver with the given name does not exist.");
1419 auto const name = conf.getConfigParameter<std::string>(
"name");
1424 "The nonlinear solver name is not unique");
1435 DBUG(
"Reading curves configuration.");
1438 for (
auto conf : config->getConfigSubtreeList(
"curve"))
1441 auto const name = conf.getConfigParameter<std::string>(
"name");
1447 "The curve name is not unique.");
Definition of the AsciiRasterInterface class.
Definition of the BoostXmlGmlInterface class.
Functionality to build different search length algorithm objects from given config.
Definition of the GEOObjects class.
std::vector< std::size_t > getNodes(GeoLib::Point const &pnt, std::vector< MeshLib::Node * > const &nodes, MeshLib::PropertyVector< int > const &mat_ids, std::pair< int, int > const &mat_limits, std::pair< double, double > const &elevation_limits, MeshLib::Mesh const &mesh)
void INFO(fmt::format_string< Args... > fmt, Args &&... args)
void DBUG(fmt::format_string< Args... > fmt, Args &&... args)
void ERR(fmt::format_string< Args... > fmt, Args &&... args)
void WARN(fmt::format_string< Args... > fmt, Args &&... args)
Definition of the Mesh class.
Definition of the GeoLib::Raster class.
Base class for different search length strategies.
std::optional< ConfigTree > getConfigSubtreeOptional(std::string const &root) const
std::optional< T > getConfigParameterOptional(std::string const ¶m) const
T getConfigParameter(std::string const ¶m) const
Range< SubtreeIterator > getConfigSubtreeList(std::string const &root) const
std::optional< T > getConfigAttributeOptional(std::string const &attr) const
Container class for geometric objects.
bool readFile(const std::string &fname) override
Reads an xml-file containing OGS geometry.
static PROCESSLIB_EXPORT const std::string constant_one_parameter_name
std::map< std::string, std::unique_ptr< GlobalLinearSolver > > _linear_solvers
std::optional< ParameterLib::CoordinateSystem > _local_coordinate_system
std::map< std::string, std::unique_ptr< NumLib::NonlinearSolverBase > > _nonlinear_solvers
MeshLib::Mesh & getMesh(std::string const &mesh_name) const
void parseProcesses(BaseLib::ConfigTree const &processes_config, std::string const &project_directory, std::string const &output_directory, std::unique_ptr< ChemistryLib::ChemicalSolverInterface > &&chemical_solver_interface)
std::unique_ptr< ChemistryLib::ChemicalSolverInterface > parseChemicalSolverInterface(std::optional< BaseLib::ConfigTree > const &config, const std::string &output_directory)
void parseMedia(std::optional< BaseLib::ConfigTree > const &media_config)
Parses media configuration and saves them in an object.
void parseLinearSolvers(BaseLib::ConfigTree const &config)
std::vector< std::unique_ptr< ParameterLib::ParameterBase > > _parameters
Buffer for each parameter config passed to the process.
std::vector< std::unique_ptr< ProcessLib::Process > > _processes
std::vector< GeoLib::NamedRaster > _named_rasters
void parseNonlinearSolvers(BaseLib::ConfigTree const &config)
std::vector< ProcessLib::ProcessVariable > _process_variables
void parseProcessVariables(BaseLib::ConfigTree const &process_variables_config)
std::map< std::string, std::unique_ptr< MathLib::PiecewiseLinearInterpolation > > _curves
void parseCurves(std::optional< BaseLib::ConfigTree > const &config)
std::vector< std::unique_ptr< MeshLib::Mesh > > _mesh_vec
void parseTimeLoop(BaseLib::ConfigTree const &config, const std::string &output_directory)
Parses the time loop configuration.
std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > _media
std::vector< std::string > parseParameters(BaseLib::ConfigTree const ¶meters_config)
std::unique_ptr< ProcessLib::TimeLoop > _time_loop
The time loop used to solve this project's processes.
std::pair< std::unique_ptr< NonlinearSolverBase >, NonlinearSolverTag > createNonlinearSolver(GlobalLinearSolver &linear_solver, BaseLib::ConfigTree const &config)
void insertIfKeyUniqueElseError(Map &map, Key const &key, Value &&value, std::string const &error_message)
bool IsFileExisting(const std::string &strFilename)
Returns true if given file exists.
std::string joinPaths(std::string const &pathA, std::string const &pathB)
OGS_NO_DANGLING Map::mapped_type & getOrError(Map &map, Key const &key, std::string const &error_message)
std::unique_ptr< ChemicalSolverInterface > createChemicalSolverInterface(std::vector< std::unique_ptr< MeshLib::Mesh > > const &meshes, std::map< std::string, std::unique_ptr< GlobalLinearSolver > > const &linear_solvers, BaseLib::ConfigTree const &config, std::string const &output_directory)
void createMediumForId(int const id, std::map< int, std::shared_ptr< T > > &media, std::vector< int > const &material_ids_of_this_medium, CreateMedium &&create_medium)
std::vector< int > parseMaterialIdString(std::string const &material_id_string, MeshLib::PropertyVector< int > const *const material_ids)
std::unique_ptr< Medium > createMedium(int const material_id, int const geometry_dimension, BaseLib::ConfigTree const &config, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, ParameterLib::CoordinateSystem const *const local_coordinate_system, std::map< std::string, std::unique_ptr< MathLib::PiecewiseLinearInterpolation > > const &curves)
std::unique_ptr< CurveType > createPiecewiseLinearCurve(BaseLib::ConfigTree const &config)
MeshLib::Mesh * readMeshFromFile(const std::string &file_name, bool const compute_element_neighbors)
constexpr ranges::views::view_closure names
For an element of a range view return its name.
Mesh & findMeshByName(std::vector< std::unique_ptr< Mesh > > const &meshes, std::string_view const name)
void setMeshSpaceDimension(std::vector< std::unique_ptr< Mesh > > const &meshes)
std::optional< ParameterLib::CoordinateSystem > createCoordinateSystem(std::optional< BaseLib::ConfigTree > const &config, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters)
std::unique_ptr< ParameterBase > createParameter(BaseLib::ConfigTree const &config, std::vector< std::unique_ptr< MeshLib::Mesh > > const &meshes, std::vector< GeoLib::NamedRaster > const &named_rasters, std::map< std::string, std::unique_ptr< MathLib::PiecewiseLinearInterpolation > > const &curves)
std::unique_ptr< Process > createComponentTransportProcess(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, unsigned const integration_order, BaseLib::ConfigTree const &config, std::vector< std::unique_ptr< MeshLib::Mesh > > const &meshes, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media, std::unique_ptr< ChemistryLib::ChemicalSolverInterface > &&chemical_solver_interface)
template std::unique_ptr< Process > createHMPhaseFieldProcess< 3 >(std::string name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
template std::unique_ptr< Process > createHMPhaseFieldProcess< 2 >(std::string name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
std::unique_ptr< Process > createHTProcess(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, unsigned const integration_order, BaseLib::ConfigTree const &config, std::vector< std::unique_ptr< MeshLib::Mesh > > const &meshes, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
std::unique_ptr< Process > createHeatConductionProcess(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
std::unique_ptr< Process > createHeatTransportBHEProcess(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< std::string, std::unique_ptr< MathLib::PiecewiseLinearInterpolation > > const &curves, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
std::unique_ptr< Process > createHydroMechanicsProcess(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
template std::unique_ptr< Process > createHydroMechanicsProcess< 2 >(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
template std::unique_ptr< Process > createHydroMechanicsProcess< 3 >(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
std::unique_ptr< Process > createLiquidFlowProcess(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, unsigned const integration_order, BaseLib::ConfigTree const &config, std::vector< std::unique_ptr< MeshLib::Mesh > > const &meshes, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
template std::unique_ptr< Process > createPhaseFieldProcess< 2 >(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config)
template std::unique_ptr< Process > createPhaseFieldProcess< 3 >(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config)
std::unique_ptr< Process > createRichardsComponentTransportProcess(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
std::unique_ptr< Process > createRichardsFlowProcess(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
template std::unique_ptr< Process > createRichardsMechanicsProcess< 3 >(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
template std::unique_ptr< Process > createRichardsMechanicsProcess< 2 >(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
std::unique_ptr< Process > createSteadyStateDiffusion(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, unsigned const integration_order, BaseLib::ConfigTree const &config, std::vector< std::unique_ptr< MeshLib::Mesh > > const &meshes, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
template std::unique_ptr< Process > createStokesFlowProcess< 2 >(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
std::unique_ptr< Process > createTESProcess(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, unsigned const integration_order, BaseLib::ConfigTree const &config)
template std::unique_ptr< Process > createTH2MProcess< 3 >(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
template std::unique_ptr< Process > createTH2MProcess< 2 >(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
std::unique_ptr< Process > createThermalTwoPhaseFlowWithPPProcess(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
template std::unique_ptr< Process > createThermoHydroMechanicsProcess< 2 >(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
template std::unique_ptr< Process > createThermoHydroMechanicsProcess< 3 >(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
template std::unique_ptr< Process > createThermoMechanicalPhaseFieldProcess< 3 >(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config)
template std::unique_ptr< Process > createThermoMechanicalPhaseFieldProcess< 2 >(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config)
template std::unique_ptr< Process > createThermoMechanicsProcess< 3 >(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
template std::unique_ptr< Process > createThermoMechanicsProcess< 2 >(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
std::unique_ptr< Process > createThermoRichardsFlowProcess(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
template std::unique_ptr< Process > createThermoRichardsMechanicsProcess< 3 >(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
template std::unique_ptr< Process > createThermoRichardsMechanicsProcess< 2 >(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
std::unique_ptr< Process > createTwoPhaseFlowWithPPProcess(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
std::unique_ptr< Process > createTwoPhaseFlowWithPrhoProcess(std::string const &name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
std::unique_ptr< Process > createWellboreSimulatorProcess(std::string name, MeshLib::Mesh &mesh, std::unique_ptr< ProcessLib::AbstractJacobianAssembler > &&jacobian_assembler, std::vector< ProcessVariable > const &variables, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, unsigned const integration_order, BaseLib::ConfigTree const &config, std::map< int, std::shared_ptr< MaterialPropertyLib::Medium > > const &media)
std::unique_ptr< TimeLoop > createTimeLoop(BaseLib::ConfigTree const &config, std::string const &output_directory, const std::vector< std::unique_ptr< Process > > &processes, const std::map< std::string, std::unique_ptr< NumLib::NonlinearSolverBase > > &nonlinear_solvers, std::vector< std::unique_ptr< MeshLib::Mesh > > &meshes, bool const compensate_non_equilibrium_initial_residuum)
Builds a TimeLoop from the given configuration.
std::unique_ptr< AbstractJacobianAssembler > createJacobianAssembler(std::optional< BaseLib::ConfigTree > const &config)
std::vector< std::unique_ptr< MeshLib::Mesh > > readMeshes(BaseLib::ConfigTree const &config, std::string const &directory, std::string const &project_directory)
void readGeometry(std::string const &fname, GeoLib::GEOObjects &geo_objects, std::string const &dir_first, std::string const &dir_second)
std::vector< GeoLib::NamedRaster > readRasters(BaseLib::ConfigTree const &config, std::string const &raster_directory, GeoLib::MinMaxPoints const &min_max_points)
std::unique_ptr< MeshLib::Mesh > readSingleMesh(BaseLib::ConfigTree const &mesh_config_parameter, std::string const &directory)
Definition of readMeshFromFile function.
Single, constant value parameter.
static PROCESSLIB_EXPORT const std::string zero_parameter_name