Loading [MathJax]/extensions/MathMenu.js
OGS
ProjectData.cpp
Go to the documentation of this file.
1
15#include "ProjectData.h"
16
17#include <pybind11/eval.h>
18
19#include <algorithm>
20#include <boost/algorithm/string/predicate.hpp>
21#include <cctype>
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>
27#include <set>
28
29#include "BaseLib/Algorithm.h"
30#include "BaseLib/ConfigTree.h"
31#include "BaseLib/FileTools.h"
32#include "BaseLib/Logging.h"
33#include "BaseLib/StringTools.h"
34#include "GeoLib/GEOObjects.h"
37#include "GeoLib/Raster.h"
38#include "InfoLib/CMakeInfo.h"
42#if defined(USE_LIS)
44#elif defined(USE_PETSC)
46#else
48#endif
52#include "MeshLib/Mesh.h"
58
59// FileIO
64#include "ParameterLib/Utils.h"
66#include "ProcessLib/TimeLoop.h"
67
68#ifdef OGS_EMBED_PYTHON_INTERPRETER
70#endif
71
72#ifdef OGS_BUILD_PROCESS_COMPONENTTRANSPORT
75#endif
76#ifdef OGS_BUILD_PROCESS_STEADYSTATEDIFFUSION
78#endif
79#ifdef OGS_BUILD_PROCESS_HT
81#endif
82#ifdef OGS_BUILD_PROCESS_HEATCONDUCTION
84#endif
85#ifdef OGS_BUILD_PROCESS_HEATTRANSPORTBHE
87#endif
88#ifdef OGS_BUILD_PROCESS_WELLBORESIMULATOR
90#endif
91#ifdef OGS_BUILD_PROCESS_HYDROMECHANICS
93#endif
94#ifdef OGS_BUILD_PROCESS_LARGEDEFORMATION
96#endif
97#ifdef OGS_BUILD_PROCESS_LIE_M
99#endif
100#ifdef OGS_BUILD_PROCESS_LIE_HM
102#endif
103#ifdef OGS_BUILD_PROCESS_LIQUIDFLOW
105#endif
106#ifdef OGS_BUILD_PROCESS_STOKESFLOW
108#endif
109
110#ifdef OGS_BUILD_PROCESS_THERMORICHARDSMECHANICS
112#endif
113
114#ifdef OGS_BUILD_PROCESS_PHASEFIELD
116#endif
117#ifdef OGS_BUILD_PROCESS_HMPHASEFIELD
119#endif
120#ifdef OGS_BUILD_PROCESS_RICHARDSCOMPONENTTRANSPORT
122#endif
123#ifdef OGS_BUILD_PROCESS_RICHARDSFLOW
125#endif
126#ifdef OGS_BUILD_PROCESS_RICHARDSMECHANICS
128#endif
129#ifdef OGS_BUILD_PROCESS_SMALLDEFORMATION
131#endif
132#ifdef OGS_BUILD_PROCESS_SMALLDEFORMATIONNONLOCAL
134#endif
135#ifdef OGS_BUILD_PROCESS_TES
137#endif
138#ifdef OGS_BUILD_PROCESS_TH2M
140#endif
141#ifdef OGS_BUILD_PROCESS_THERMALTWOPHASEFLOWWITHPP
143#endif
144#ifdef OGS_BUILD_PROCESS_THERMOHYDROMECHANICS
146#endif
147#ifdef OGS_BUILD_PROCESS_THERMOMECHANICALPHASEFIELD
149#endif
150#ifdef OGS_BUILD_PROCESS_THERMOMECHANICS
152#endif
153#ifdef OGS_BUILD_PROCESS_THERMORICHARDSFLOW
155#endif
156#ifdef OGS_BUILD_PROCESS_TWOPHASEFLOWWITHPP
158#endif
159#ifdef OGS_BUILD_PROCESS_TWOPHASEFLOWWITHPRHO
161#endif
162
163namespace
164{
165void readGeometry(std::string const& fname, GeoLib::GEOObjects& geo_objects,
166 std::string const& dir_first, std::string const& dir_second)
167{
168 DBUG("Reading geometry file '{:s}'.", fname);
169 GeoLib::IO::BoostXmlGmlInterface gml_reader(geo_objects);
170 std::string geometry_file = BaseLib::joinPaths(dir_first, fname);
171 if (!BaseLib::IsFileExisting(geometry_file))
172 {
173 // Fallback to reading gml from prj-file directory
174 geometry_file = BaseLib::joinPaths(dir_second, fname);
175 WARN("File {:s} not found in {:s}! Trying reading from {:s}.", fname,
176 dir_first, dir_second);
177 if (!BaseLib::IsFileExisting(geometry_file))
178 {
179 OGS_FATAL("Could not read geometry file {:s} in {:s}.", fname,
180 dir_second);
181 }
182 }
183 gml_reader.readFile(geometry_file);
184}
185
186std::unique_ptr<MeshLib::Mesh> readSingleMesh(
187 BaseLib::ConfigTree const& mesh_config_parameter,
188 std::string const& directory)
189{
190 std::string const mesh_file = BaseLib::joinPaths(
191 directory, mesh_config_parameter.getValue<std::string>());
192 DBUG("Reading mesh file '{:s}'.", mesh_file);
193
194 auto mesh = std::unique_ptr<MeshLib::Mesh>(MeshLib::IO::readMeshFromFile(
195 mesh_file, true /* compute_element_neighbors */));
196 if (!mesh)
197 {
198 std::filesystem::path abspath{mesh_file};
199 try
200 {
201 abspath = std::filesystem::absolute(mesh_file);
202 }
203 catch (std::filesystem::filesystem_error const& e)
204 {
205 ERR("Determining the absolute path of '{}' failed: {}", mesh_file,
206 e.what());
207 }
208
209 OGS_FATAL("Could not read mesh from '{:s}' file. No mesh added.",
210 abspath.string());
211 }
212
213#ifdef DOXYGEN_DOCU_ONLY
215 mesh_config_parameter.getConfigAttributeOptional<bool>("axially_symmetric");
216#endif // DOXYGEN_DOCU_ONLY
217
218 if (auto const axially_symmetric =
220 mesh_config_parameter.getConfigAttributeOptional<bool>(
221 "axially_symmetric"))
222 {
223 mesh->setAxiallySymmetric(*axially_symmetric);
224 if (mesh->getDimension() == 3 && mesh->isAxiallySymmetric())
225 {
226 OGS_FATAL("3D mesh cannot be axially symmetric.");
227 }
228 }
229
230 return mesh;
231}
232
233std::vector<std::unique_ptr<MeshLib::Mesh>> readMeshes(
234 BaseLib::ConfigTree const& config, std::string const& directory,
235 std::string const& project_directory)
236{
237 std::vector<std::unique_ptr<MeshLib::Mesh>> meshes;
238
239 GeoLib::GEOObjects geoObjects;
240
242 auto optional_meshes = config.getConfigSubtreeOptional("meshes");
243 if (optional_meshes)
244 {
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 =
254 config.getConfigParameterOptional<std::string>("geometry"))
255 {
256 readGeometry(*geometry_file_name, geoObjects, directory,
257 project_directory);
258 }
259 }
260 else
261 { // Read single mesh with geometry.
262 meshes.push_back(
264 readSingleMesh(config.getConfigParameter("mesh"), directory));
265
266 auto const geometry_file_name =
268 config.getConfigParameter<std::string>("geometry");
269 readGeometry(geometry_file_name, geoObjects, directory,
270 project_directory);
271 }
272
273 { // generate meshes from geometries
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);
281
282 std::move(begin(additional_meshes), end(additional_meshes),
283 std::back_inserter(meshes));
284 }
285
286 auto mesh_names = MeshLib::views::names | ranges::to<std::vector>() |
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())
291 {
292 WARN(
293 "Mesh names aren't unique. From project file read mesh names are:");
294 for (auto const& name : meshes | MeshLib::views::names)
295 {
296 INFO("- {}", name);
297 }
298 }
299
300 auto const zero_mesh_field_data_by_material_ids =
302 config.getConfigParameterOptional<std::vector<int>>(
303 "zero_mesh_field_data_by_material_ids");
304 if (zero_mesh_field_data_by_material_ids)
305 {
306 WARN(
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 "
310 "care!");
312 *meshes[0], *zero_mesh_field_data_by_material_ids);
313 }
314
316
317 return meshes;
318}
319
320std::vector<GeoLib::NamedRaster> readRasters(
321 BaseLib::ConfigTree const& config, std::string const& raster_directory,
322 GeoLib::MinMaxPoints const& min_max_points)
323{
324 INFO("readRasters ...");
325 std::vector<GeoLib::NamedRaster> named_rasters;
326
328 auto optional_rasters = config.getConfigSubtreeOptional("rasters");
329 if (optional_rasters)
330 {
332 auto const configs = optional_rasters->getConfigSubtreeList("raster");
333 std::transform(
334 configs.begin(), configs.end(), std::back_inserter(named_rasters),
335 [&raster_directory, &min_max_points](auto const& raster_config)
336 {
337 return GeoLib::IO::readRaster(raster_config, raster_directory,
338 min_max_points);
339 });
340 }
341 INFO("readRasters done");
342 return named_rasters;
343}
344
345// for debugging raster reading implementation
346// void writeRasters(std::vector<GeoLib::NamedRaster> const& named_rasters,
347// std::string const& output_directory)
348//{
349// for (auto const& named_raster : named_rasters)
350// {
351// #if defined(USE_PETSC)
352// int my_mpi_rank;
353// MPI_Comm_rank(MPI_COMM_WORLD, &my_mpi_rank);
354// #endif
355// FileIO::AsciiRasterInterface::writeRasterAsASC(
356// named_raster.raster, output_directory + "/" +
357// named_raster.raster_name +
358// #if defined(USE_PETSC)
359// "_" + std::to_string(my_mpi_rank) +
360// #endif
361// ".asc");
362// }
363//}
364
365} // namespace
366
367ProjectData::ProjectData() = default;
368
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,
376 GeoLib::AABB(_mesh_vec[0]->getNodes().begin(),
377 _mesh_vec[0]->getNodes().end())
378 .getMinMaxPoints()))
379{
380 // for debugging raster reading implementation
381 // writeRasters(_named_rasters, output_directory);
382 if (auto const python_script =
384 project_config.getConfigParameterOptional<std::string>("python_script"))
385 {
386 namespace py = pybind11;
387
388#ifdef OGS_EMBED_PYTHON_INTERPRETER
389 _py_scoped_interpreter.emplace(ApplicationsLib::setupEmbeddedPython());
390#endif
391
392 // Append to python's module search path
393 auto py_path = py::module::import("sys").attr("path");
394 py_path.attr("append")(script_directory); // .prj or -s directory
395
396 auto const script_path =
397 BaseLib::joinPaths(script_directory, *python_script);
398
399 // Evaluate in scope of main module
400 py::object scope = py::module::import("__main__").attr("__dict__");
401 // add (global) variables
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;
406 try
407 {
408 py::eval_file(script_path, scope);
409 }
410 catch (py::error_already_set const& e)
411 {
412 OGS_FATAL("Error evaluating python script {}: {}", script_path,
413 e.what());
414 }
415 }
416
418 parseCurves(project_config.getConfigSubtreeOptional("curves"));
419
420 auto parameter_names_for_transformation =
422 parseParameters(project_config.getConfigSubtree("parameters"));
423
424 _local_coordinate_system = ParameterLib::createCoordinateSystem(
426 project_config.getConfigSubtreeOptional("local_coordinate_system"),
427 _parameters);
428
429 for (auto& parameter : _parameters)
430 {
431 if (std::find(begin(parameter_names_for_transformation),
432 end(parameter_names_for_transformation),
433 parameter->name) !=
434 end(parameter_names_for_transformation))
435 {
436 if (!_local_coordinate_system)
437 {
438 OGS_FATAL(
439 "The parameter '{:s}' is using the local coordinate system "
440 "but no local coordinate system was provided.",
441 parameter->name);
442 }
443 parameter->setCoordinateSystem(*_local_coordinate_system);
444 }
445
446 parameter->initialize(_parameters);
447 }
448
450 parseProcessVariables(project_config.getConfigSubtree("process_variables"));
451
453 parseMedia(project_config.getConfigSubtreeOptional("media"));
454
456 parseLinearSolvers(project_config.getConfigSubtree("linear_solvers"));
457
458 auto chemical_solver_interface = parseChemicalSolverInterface(
460 project_config.getConfigSubtreeOptional("chemical_system"),
461 output_directory);
462
464 parseProcesses(project_config.getConfigSubtree("processes"),
465 project_directory, output_directory,
466 std::move(chemical_solver_interface));
467
469 parseNonlinearSolvers(project_config.getConfigSubtree("nonlinear_solvers"));
470
472 parseTimeLoop(project_config.getConfigSubtree("time_loop"),
473 output_directory);
474}
475
477 BaseLib::ConfigTree const& process_variables_config)
478{
479 DBUG("Parse process variables:");
480
481 std::set<std::string> names;
482
483 for (auto var_config
485 : process_variables_config.getConfigSubtreeList("process_variable"))
486 {
487 // Either the mesh name is given, or the first mesh's name will be
488 // taken. Taking the first mesh's value is deprecated.
489 auto const mesh_name =
491 var_config.getConfigParameter<std::string>("mesh",
492 _mesh_vec[0]->getName());
493
494 auto& mesh = MeshLib::findMeshByName(_mesh_vec, mesh_name);
495
496 auto pv = ProcessLib::ProcessVariable{var_config, mesh, _mesh_vec,
498 if (!names.insert(pv.getName()).second)
499 {
500 OGS_FATAL("A process variable with name `{:s}' already exists.",
501 pv.getName());
502 }
503
504 _process_variables.push_back(std::move(pv));
505 }
506}
507
508std::vector<std::string> ProjectData::parseParameters(
509 BaseLib::ConfigTree const& parameters_config)
510{
511 using namespace ProcessLib;
512
513 std::set<std::string> names;
514 std::vector<std::string> parameter_names_for_transformation;
515
516 DBUG("Reading parameters:");
517 for (auto parameter_config :
519 parameters_config.getConfigSubtreeList("parameter"))
520 {
521 auto p = ParameterLib::createParameter(parameter_config, _mesh_vec,
523 if (!names.insert(p->name).second)
524 {
525 OGS_FATAL("A parameter with name `{:s}' already exists.", p->name);
526 }
527
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)
533 {
534 parameter_names_for_transformation.push_back(p->name);
535 }
536
537 _parameters.push_back(std::move(p));
538 }
539
540 _parameters.push_back(
543 _parameters.push_back(
546
547 return parameter_names_for_transformation;
548}
549
551 std::optional<BaseLib::ConfigTree> const& media_config)
552{
553 if (!media_config)
554 {
555 return;
556 }
557
558 DBUG("Reading media:");
559
560 if (_mesh_vec.empty() || _mesh_vec[0] == nullptr)
561 {
562 ERR("A mesh is required to define medium materials.");
563 return;
564 }
565
566 for (auto const& medium_config :
568 media_config->getConfigSubtreeList("medium"))
569 {
570 auto create_medium = [dim = _mesh_vec[0]->getDimension(),
571 &medium_config, this](int const id)
572 {
574 id, _mesh_vec[0]->getDimension(), medium_config, _parameters,
576 _curves);
577 };
578
579 auto const material_id_string =
581 medium_config.getConfigAttribute<std::string>("id", "0");
582
583 std::vector<int> const material_ids_of_this_medium =
584 MaterialLib::parseMaterialIdString(material_id_string,
585 materialIDs(*_mesh_vec[0]));
586
587 for (auto const& id : material_ids_of_this_medium)
588 {
590 id, _media, material_ids_of_this_medium, create_medium);
591 }
592 }
593
594 if (_media.empty())
595 {
596 OGS_FATAL("No entity is found inside <media>.");
597 }
598}
599
600std::unique_ptr<ChemistryLib::ChemicalSolverInterface>
602 std::optional<BaseLib::ConfigTree> const& config,
603 std::string const& output_directory)
604{
605 if (!config)
606 {
607 return nullptr;
608 }
609
610 std::unique_ptr<ChemistryLib::ChemicalSolverInterface>
611 chemical_solver_interface;
612#ifdef OGS_BUILD_PROCESS_COMPONENTTRANSPORT
613 INFO(
614 "Ready for initializing interface to a chemical solver for water "
615 "chemistry calculation.");
616
617 auto const chemical_solver =
619 config->getConfigAttribute<std::string>("chemical_solver");
620
621 if (boost::iequals(chemical_solver, "Phreeqc"))
622 {
623 INFO(
624 "Configuring phreeqc interface for water chemistry calculation "
625 "using file-based approach.");
626
627 chemical_solver_interface = ChemistryLib::createChemicalSolverInterface<
629 *config, output_directory);
630 }
631 else if (boost::iequals(chemical_solver, "PhreeqcKernel"))
632 {
633 OGS_FATAL(
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.");
637 }
638 else if (boost::iequals(chemical_solver, "SelfContained"))
639 {
640 INFO(
641 "Use self-contained chemical solver for water chemistry "
642 "calculation.");
643
644 chemical_solver_interface = ChemistryLib::createChemicalSolverInterface<
646 _mesh_vec, _linear_solvers, *config, output_directory);
647 }
648 else
649 {
650 OGS_FATAL(
651 "Unknown chemical solver. Please specify either Phreeqc or "
652 "PhreeqcKernel as the solver for water chemistry calculation "
653 "instead.");
654 }
655#else
656 (void)output_directory;
657
658 OGS_FATAL(
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.");
663#endif
664 return chemical_solver_interface;
665}
666
668 BaseLib::ConfigTree const& processes_config,
669 std::string const& project_directory,
670 std::string const& output_directory,
671 [[maybe_unused]] std::unique_ptr<ChemistryLib::ChemicalSolverInterface>&&
672 chemical_solver_interface)
673{
674 (void)project_directory; // to avoid compilation warning
675 (void)output_directory; // to avoid compilation warning
676
677 DBUG("Reading processes:");
679 for (auto process_config : processes_config.getConfigSubtreeList("process"))
680 {
681 auto const type =
683 process_config.peekConfigParameter<std::string>("type");
684
685 auto const name =
687 process_config.getConfigParameter<std::string>("name");
688
689 [[maybe_unused]] auto const integration_order =
691 process_config.getConfigParameter<int>("integration_order");
692
693 std::unique_ptr<ProcessLib::Process> process;
694
695 auto jacobian_assembler = ProcessLib::createJacobianAssembler(
697 process_config.getConfigSubtreeOptional("jacobian_assembler"));
698
699#ifdef OGS_BUILD_PROCESS_STEADYSTATEDIFFUSION
700 if (type == "STEADY_STATE_DIFFUSION")
701 {
702 // The existence check of the in the configuration referenced
703 // process variables is checked in the physical process.
704 // TODO at the moment we have only one mesh, later there can be
705 // several meshes. Then we have to assign the referenced mesh
706 // here.
707 process =
709 name, *_mesh_vec[0], std::move(jacobian_assembler),
710 _process_variables, _parameters, integration_order,
711 process_config, _mesh_vec, _media);
712 }
713 else
714#endif
715#ifdef OGS_BUILD_PROCESS_LIQUIDFLOW
716 if (type == "LIQUID_FLOW")
717 {
719 name, *_mesh_vec[0], std::move(jacobian_assembler),
720 _process_variables, _parameters, integration_order,
721 process_config, _mesh_vec, _media);
722 }
723 else
724#endif
725#ifdef OGS_BUILD_PROCESS_STOKESFLOW
726 if (type == "StokesFlow")
727 {
728 WARN(
729 "The StokesFlow process is deprecated and will be removed in "
730 "OGS-6.5.5.");
731 switch (_mesh_vec[0]->getDimension())
732 {
733 case 2:
734 process =
736 name, *_mesh_vec[0], std::move(jacobian_assembler),
737 _process_variables, _parameters, integration_order,
738 process_config, _media);
739 break;
740 default:
741 OGS_FATAL(
742 "StokesFlow process does not support given "
743 "dimension {:d}",
744 _mesh_vec[0]->getDimension());
745 }
746 }
747 else
748#endif
749#ifdef OGS_BUILD_PROCESS_TES
750 if (type == "TES")
751 {
752 WARN(
753 "The TES process is deprecated and will be removed in "
754 "OGS-6.5.5.");
756 name, *_mesh_vec[0], std::move(jacobian_assembler),
757 _process_variables, _parameters, integration_order,
758 process_config);
759 }
760 else
761#endif
762#ifdef OGS_BUILD_PROCESS_TH2M
763 if (type == "TH2M")
764 {
765 switch (_mesh_vec[0]->getDimension())
766 {
767 case 2:
769 name, *_mesh_vec[0], std::move(jacobian_assembler),
771 _local_coordinate_system, integration_order,
772 process_config, _media);
773 break;
774 case 3:
776 name, *_mesh_vec[0], std::move(jacobian_assembler),
778 _local_coordinate_system, integration_order,
779 process_config, _media);
780 break;
781 default:
782 OGS_FATAL("TH2M process does not support given dimension");
783 }
784 }
785 else
786#endif
787#ifdef OGS_BUILD_PROCESS_HEATCONDUCTION
788 if (type == "HEAT_CONDUCTION")
789 {
791 name, *_mesh_vec[0], std::move(jacobian_assembler),
792 _process_variables, _parameters, integration_order,
793 process_config, _media);
794 }
795 else
796#endif
797#ifdef OGS_BUILD_PROCESS_HEATTRANSPORTBHE
798 if (type == "HEAT_TRANSPORT_BHE")
799 {
800 if (_mesh_vec[0]->getDimension() != 3)
801 {
802 OGS_FATAL(
803 "HEAT_TRANSPORT_BHE can only work with a 3-dimensional "
804 "mesh! ");
805 }
806
807 process =
809 name, *_mesh_vec[0], std::move(jacobian_assembler),
810 _process_variables, _parameters, integration_order,
811 process_config, _curves, _media);
812 }
813 else
814#endif
815#ifdef OGS_BUILD_PROCESS_WELLBORESIMULATOR
816 if (type == "WELLBORE_SIMULATOR")
817 {
818 if (_mesh_vec[0]->getDimension() != 1)
819 {
820 OGS_FATAL(
821 "WELLBORE_SIMULATOR can only work with a 1-dimensional "
822 "mesh!");
823 }
824
825 process =
827 name, *_mesh_vec[0], std::move(jacobian_assembler),
828 _process_variables, _parameters, integration_order,
829 process_config, _media);
830 }
831 else
832#endif
833#ifdef OGS_BUILD_PROCESS_HYDROMECHANICS
834 if (type == "HYDRO_MECHANICS")
835 {
836 if (
837 process_config.getConfigParameterOptional<int>("dimension"))
838 {
839 OGS_FATAL(
840 "The 'dimension' tag has been removed in the merge-request "
841 "!4766."
842 "The dimension is now taken from the main mesh and the tag "
843 "must be"
844 "removed. There is a python script in the merge-request "
845 "description"
846 "for automatic conversion.");
847 }
848 switch (_mesh_vec[0]->getDimension())
849 {
850 case 2:
851 process =
853 2>(name, *_mesh_vec[0],
854 std::move(jacobian_assembler),
856 _local_coordinate_system, integration_order,
857 process_config, _media);
858 break;
859 case 3:
860 process =
862 3>(name, *_mesh_vec[0],
863 std::move(jacobian_assembler),
865 _local_coordinate_system, integration_order,
866 process_config, _media);
867 break;
868 default:
869 OGS_FATAL(
870 "HYDRO_MECHANICS process does not support given "
871 "dimension");
872 }
873 }
874 else
875#endif
876#ifdef OGS_BUILD_PROCESS_LARGEDEFORMATION
877 if (type == "LARGE_DEFORMATION")
878 {
879 switch (_mesh_vec[0]->getDimension())
880 {
881 case 2:
884 name, *_mesh_vec[0], std::move(jacobian_assembler),
886 _local_coordinate_system, integration_order,
887 process_config, _media);
888 break;
889 case 3:
892 name, *_mesh_vec[0], std::move(jacobian_assembler),
894 _local_coordinate_system, integration_order,
895 process_config, _media);
896 break;
897 default:
898 OGS_FATAL(
899 "LARGE_DEFORMATION process does not support given "
900 "dimension");
901 }
902 }
903 else
904#endif
905#ifdef OGS_BUILD_PROCESS_LIE_HM
906 if (type == "HYDRO_MECHANICS_WITH_LIE")
907 {
908 if (
909 process_config.getConfigParameterOptional<int>("dimension"))
910 {
911 OGS_FATAL(
912 "The 'dimension' tag has been removed in the merge-request "
913 "!4766."
914 "The dimension is now taken from the main mesh and the tag "
915 "must be"
916 "removed. There is a python script in the merge-request "
917 "description"
918 "for automatic conversion.");
919 }
920 switch (_mesh_vec[0]->getDimension())
921 {
922 case 2:
925 name, *_mesh_vec[0], std::move(jacobian_assembler),
927 _local_coordinate_system, integration_order,
928 process_config, _media);
929 break;
930 case 3:
933 name, *_mesh_vec[0], std::move(jacobian_assembler),
935 _local_coordinate_system, integration_order,
936 process_config, _media);
937 break;
938 default:
939 OGS_FATAL(
940 "HYDRO_MECHANICS_WITH_LIE process does not support "
941 "given dimension");
942 }
943 }
944 else
945#endif
946#ifdef OGS_BUILD_PROCESS_HT
947 if (type == "HT")
948 {
950 name, *_mesh_vec[0], std::move(jacobian_assembler),
951 _process_variables, _parameters, integration_order,
952 process_config, _mesh_vec, _media);
953 }
954 else
955#endif
956#ifdef OGS_BUILD_PROCESS_COMPONENTTRANSPORT
957 if (type == "ComponentTransport")
958 {
959 process =
961 name, *_mesh_vec[0], std::move(jacobian_assembler),
962 _process_variables, _parameters, integration_order,
963 process_config, _mesh_vec, _media,
964 std::move(chemical_solver_interface));
965 }
966 else
967#endif
968#ifdef OGS_BUILD_PROCESS_PHASEFIELD
969 if (type == "PHASE_FIELD")
970 {
971 switch (_mesh_vec[0]->getDimension())
972 {
973 case 2:
974 process =
976 name, *_mesh_vec[0], std::move(jacobian_assembler),
978 _local_coordinate_system, integration_order,
979 process_config);
980 break;
981 case 3:
982 process =
984 name, *_mesh_vec[0], std::move(jacobian_assembler),
986 _local_coordinate_system, integration_order,
987 process_config);
988 break;
989 }
990 }
991 else
992#endif
993#ifdef OGS_BUILD_PROCESS_HMPHASEFIELD
994 if (type == "HM_PHASE_FIELD")
995 {
996 switch (_mesh_vec[0]->getDimension())
997 {
998 case 2:
999 process =
1001 name, *_mesh_vec[0], std::move(jacobian_assembler),
1003 _local_coordinate_system, integration_order,
1004 process_config, _media);
1005 break;
1006 case 3:
1007 process =
1009 name, *_mesh_vec[0], std::move(jacobian_assembler),
1011 _local_coordinate_system, integration_order,
1012 process_config, _media);
1013 break;
1014 }
1015 }
1016 else
1017#endif
1018#ifdef OGS_BUILD_PROCESS_RICHARDSCOMPONENTTRANSPORT
1019 if (type == "RichardsComponentTransport")
1020 {
1023 name, *_mesh_vec[0], std::move(jacobian_assembler),
1024 _process_variables, _parameters, integration_order,
1025 process_config, _media);
1026 }
1027 else
1028#endif
1029#ifdef OGS_BUILD_PROCESS_SMALLDEFORMATION
1030 if (type == "SMALL_DEFORMATION")
1031 {
1032 switch (_mesh_vec[0]->getDimension())
1033 {
1034 case 2:
1037 name, *_mesh_vec[0], std::move(jacobian_assembler),
1039 _local_coordinate_system, integration_order,
1040 process_config, _media);
1041 break;
1042 case 3:
1045 name, *_mesh_vec[0], std::move(jacobian_assembler),
1047 _local_coordinate_system, integration_order,
1048 process_config, _media);
1049 break;
1050 default:
1051 OGS_FATAL(
1052 "SMALL_DEFORMATION process does not support given "
1053 "dimension");
1054 }
1055 }
1056 else
1057#endif
1058#ifdef OGS_BUILD_PROCESS_SMALLDEFORMATIONNONLOCAL
1059 if (type == "SMALL_DEFORMATION_NONLOCAL")
1060 {
1061 WARN(
1062 "The SMALL_DEFORMATION_NONLOCAL process is deprecated and will "
1063 "be removed in OGS-6.5.5.");
1064 switch (_mesh_vec[0]->getDimension())
1065 {
1066 case 2:
1069 name, *_mesh_vec[0], std::move(jacobian_assembler),
1071 _local_coordinate_system, integration_order,
1072 process_config);
1073 break;
1074 case 3:
1077 name, *_mesh_vec[0], std::move(jacobian_assembler),
1079 _local_coordinate_system, integration_order,
1080 process_config);
1081 break;
1082 default:
1083 OGS_FATAL(
1084 "SMALL_DEFORMATION_NONLOCAL process does not support "
1085 "given dimension {:d}",
1086 _mesh_vec[0]->getDimension());
1087 }
1088 }
1089 else
1090#endif
1091#ifdef OGS_BUILD_PROCESS_LIE_M
1092 if (type == "SMALL_DEFORMATION_WITH_LIE")
1093 {
1094 if (
1095 process_config.getConfigParameterOptional<int>("dimension"))
1096 {
1097 OGS_FATAL(
1098 "The 'dimension' tag has been removed in the merge-request "
1099 "!4766."
1100 "The dimension is now taken from the main mesh and the tag "
1101 "must be"
1102 "removed. There is a python script in the merge-request "
1103 "description"
1104 "for automatic conversion.");
1105 }
1106 switch (_mesh_vec[0]->getDimension())
1107 {
1108 case 2:
1111 name, *_mesh_vec[0], std::move(jacobian_assembler),
1113 _local_coordinate_system, integration_order,
1114 process_config);
1115 break;
1116 case 3:
1119 name, *_mesh_vec[0], std::move(jacobian_assembler),
1121 _local_coordinate_system, integration_order,
1122 process_config);
1123 break;
1124 default:
1125 OGS_FATAL(
1126 "SMALL_DEFORMATION_WITH_LIE process does not support "
1127 "given dimension");
1128 }
1129 }
1130 else
1131#endif
1132#ifdef OGS_BUILD_PROCESS_THERMOHYDROMECHANICS
1133 if (type == "THERMO_HYDRO_MECHANICS")
1134 {
1135 if (
1136 process_config.getConfigParameterOptional<int>("dimension"))
1137 {
1138 OGS_FATAL(
1139 "The 'dimension' tag has been removed in the merge-request "
1140 "!4766."
1141 "The dimension is now taken from the main mesh and the tag "
1142 "must be"
1143 "removed. There is a python script in the merge-request "
1144 "description"
1145 "for automatic conversion.");
1146 }
1147 switch (_mesh_vec[0]->getDimension())
1148 {
1149 case 2:
1152 name, *_mesh_vec[0], std::move(jacobian_assembler),
1154 _local_coordinate_system, integration_order,
1155 process_config, _media);
1156 break;
1157 case 3:
1160 name, *_mesh_vec[0], std::move(jacobian_assembler),
1162 _local_coordinate_system, integration_order,
1163 process_config, _media);
1164 break;
1165 default:
1166 OGS_FATAL(
1167 "THERMO_HYDRO_MECHANICS process does not support given "
1168 "dimension");
1169 }
1170 }
1171 else
1172#endif
1173#ifdef OGS_BUILD_PROCESS_THERMOMECHANICALPHASEFIELD
1174 if (type == "THERMO_MECHANICAL_PHASE_FIELD")
1175 {
1176 WARN(
1177 "The THERMO_MECHANICAL_PHASE_FIELD process is deprecated and "
1178 "will be removed in OGS-6.5.5.");
1179 switch (_mesh_vec[0]->getDimension())
1180 {
1181 case 2:
1184 name, *_mesh_vec[0], std::move(jacobian_assembler),
1186 _local_coordinate_system, integration_order,
1187 process_config);
1188 break;
1189 case 3:
1192 name, *_mesh_vec[0], std::move(jacobian_assembler),
1194 _local_coordinate_system, integration_order,
1195 process_config);
1196 break;
1197 }
1198 }
1199 else
1200#endif
1201#ifdef OGS_BUILD_PROCESS_THERMOMECHANICS
1202 if (type == "THERMO_MECHANICS")
1203 {
1204 switch (_mesh_vec[0]->getDimension())
1205 {
1206 case 2:
1209 name, *_mesh_vec[0], std::move(jacobian_assembler),
1211 _local_coordinate_system, integration_order,
1212 process_config, _media);
1213 break;
1214 case 3:
1217 name, *_mesh_vec[0], std::move(jacobian_assembler),
1219 _local_coordinate_system, integration_order,
1220 process_config, _media);
1221 break;
1222 }
1223 }
1224 else
1225#endif
1226#ifdef OGS_BUILD_PROCESS_RICHARDSFLOW
1227 if (type == "RICHARDS_FLOW")
1228 {
1230 name, *_mesh_vec[0], std::move(jacobian_assembler),
1231 _process_variables, _parameters, integration_order,
1232 process_config, _media);
1233 }
1234 else
1235#endif
1236#ifdef OGS_BUILD_PROCESS_RICHARDSMECHANICS
1237 if (type == "RICHARDS_MECHANICS")
1238 {
1239 if (
1240 process_config.getConfigParameterOptional<int>("dimension"))
1241 {
1242 OGS_FATAL(
1243 "The 'dimension' tag has been removed in the merge-request "
1244 "!4766."
1245 "The dimension is now taken from the main mesh and the tag "
1246 "must be"
1247 "removed. There is a python script in the merge-request "
1248 "description"
1249 "for automatic conversion.");
1250 }
1251 switch (_mesh_vec[0]->getDimension())
1252 {
1253 case 2:
1256 name, *_mesh_vec[0], std::move(jacobian_assembler),
1258 _local_coordinate_system, integration_order,
1259 process_config, _media);
1260 break;
1261 case 3:
1264 name, *_mesh_vec[0], std::move(jacobian_assembler),
1266 _local_coordinate_system, integration_order,
1267 process_config, _media);
1268 break;
1269 }
1270 }
1271 else
1272#endif
1273#ifdef OGS_BUILD_PROCESS_THERMORICHARDSFLOW
1274 if (type == "THERMO_RICHARDS_FLOW")
1275 {
1276 process =
1278 name, *_mesh_vec[0], std::move(jacobian_assembler),
1279 _process_variables, _parameters, integration_order,
1280 process_config, _media);
1281 }
1282 else
1283#endif
1284#ifdef OGS_BUILD_PROCESS_THERMORICHARDSMECHANICS
1285 if (type == "THERMO_RICHARDS_MECHANICS")
1286 {
1287 switch (_mesh_vec[0]->getDimension())
1288 {
1289 case 2:
1292 name, *_mesh_vec[0], std::move(jacobian_assembler),
1294 _local_coordinate_system, integration_order,
1295 process_config, _media);
1296 break;
1297 case 3:
1300 name, *_mesh_vec[0], std::move(jacobian_assembler),
1302 _local_coordinate_system, integration_order,
1303 process_config, _media);
1304 break;
1305 }
1306 }
1307 else
1308#endif
1309
1310#ifdef OGS_BUILD_PROCESS_TWOPHASEFLOWWITHPP
1311 if (type == "TWOPHASE_FLOW_PP")
1312 {
1313 process =
1315 name, *_mesh_vec[0], std::move(jacobian_assembler),
1316 _process_variables, _parameters, integration_order,
1317 process_config, _media);
1318 }
1319 else
1320#endif
1321#ifdef OGS_BUILD_PROCESS_TWOPHASEFLOWWITHPRHO
1322 if (type == "TWOPHASE_FLOW_PRHO")
1323 {
1324 WARN(
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),
1330 _process_variables, _parameters, integration_order,
1331 process_config, _media);
1332 }
1333 else
1334#endif
1335#ifdef OGS_BUILD_PROCESS_THERMALTWOPHASEFLOWWITHPP
1336 if (type == "THERMAL_TWOPHASE_WITH_PP")
1337 {
1340 name, *_mesh_vec[0], std::move(jacobian_assembler),
1341 _process_variables, _parameters, integration_order,
1342 process_config, _media);
1343 }
1344 else
1345#endif
1346 {
1347 OGS_FATAL("Unknown process type: {:s}", type);
1348 }
1349
1350 if (ranges::contains(_processes, name,
1351 [](std::unique_ptr<ProcessLib::Process> const& p)
1352 { return p->name; }))
1353 {
1354 OGS_FATAL("The process name '{:s}' is not unique.", name);
1355 }
1356 _processes.push_back(std::move(process));
1357 }
1358}
1359
1361 std::string const& output_directory)
1362{
1363 DBUG("Reading time loop configuration.");
1364
1365 bool const compensate_non_equilibrium_initial_residuum = std::any_of(
1366 std::begin(_process_variables),
1367 std::end(_process_variables),
1368 [](auto const& process_variable)
1369 { return process_variable.compensateNonEquilibriumInitialResiduum(); });
1370
1372 config, output_directory, _processes, _nonlinear_solvers, _mesh_vec,
1373 compensate_non_equilibrium_initial_residuum);
1374
1375 if (!_time_loop)
1376 {
1377 OGS_FATAL("Initialization of time loop failed.");
1378 }
1379}
1380
1382{
1383 DBUG("Reading linear solver configuration.");
1384
1386 for (auto conf : config.getConfigSubtreeList("linear_solver"))
1387 {
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);
1394
1397 name,
1398 std::make_unique<GlobalLinearSolver>(std::get<0>(solver_options),
1399 std::get<1>(solver_options)),
1400 "The linear solver name is not unique");
1401 }
1402}
1403
1405{
1406 DBUG("Reading non-linear solver configuration.");
1407
1409 for (auto conf : config.getConfigSubtreeList("nonlinear_solver"))
1410 {
1411 auto const ls_name =
1413 conf.getConfigParameter<std::string>("linear_solver");
1414 auto const& linear_solver = BaseLib::getOrError(
1415 _linear_solvers, ls_name,
1416 "A linear solver with the given name does not exist.");
1417
1419 auto const name = conf.getConfigParameter<std::string>("name");
1422 name,
1423 NumLib::createNonlinearSolver(*linear_solver, conf).first,
1424 "The nonlinear solver name is not unique");
1425 }
1426}
1427
1428void ProjectData::parseCurves(std::optional<BaseLib::ConfigTree> const& config)
1429{
1430 if (!config)
1431 {
1432 return;
1433 }
1434
1435 DBUG("Reading curves configuration.");
1436
1438 for (auto conf : config->getConfigSubtreeList("curve"))
1439 {
1441 auto const name = conf.getConfigParameter<std::string>("name");
1443 _curves,
1444 name,
1447 "The curve name is not unique.");
1448 }
1449}
1450
1451MeshLib::Mesh& ProjectData::getMesh(std::string const& mesh_name) const
1452{
1453 return MeshLib::findMeshByName(_mesh_vec, mesh_name);
1454}
Definition of the AsciiRasterInterface class.
Definition of the BoostXmlGmlInterface class.
Functionality to build different search length algorithm objects from given config.
#define OGS_FATAL(...)
Definition Error.h:26
Filename manipulation routines.
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)
Definition Logging.h:35
void DBUG(fmt::format_string< Args... > fmt, Args &&... args)
Definition Logging.h:30
void ERR(fmt::format_string< Args... > fmt, Args &&... args)
Definition Logging.h:45
void WARN(fmt::format_string< Args... > fmt, Args &&... args)
Definition Logging.h:40
Definition of the Mesh class.
Definition of the GeoLib::Raster class.
Base class for different search length strategies.
Definition of string helper functions.
std::optional< ConfigTree > getConfigSubtreeOptional(std::string const &root) const
std::optional< T > getConfigParameterOptional(std::string const &param) const
T getConfigParameter(std::string const &param) const
Range< SubtreeIterator > getConfigSubtreeList(std::string const &root) const
std::optional< T > getConfigAttributeOptional(std::string const &attr) const
Container class for geometric objects.
Definition GEOObjects.h:57
bool readFile(const std::string &fname) override
Reads an xml-file containing OGS geometry.
static PROCESSLIB_EXPORT const std::string constant_one_parameter_name
Definition Process.h:47
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 &parameters_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)
Definition Algorithm.h:104
bool IsFileExisting(const std::string &strFilename)
Returns true if given file exists.
Definition FileTools.cpp:50
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)
Definition Algorithm.h:118
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 &parameters, 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)
std::unique_ptr< MeshGeoToolsLib::SearchLength > createSearchLengthAlgorithm(BaseLib::ConfigTree const &external_config, MeshLib::Mesh const &mesh)
std::vector< std::unique_ptr< MeshLib::Mesh > > constructAdditionalMeshesFromGeoObjects(GeoLib::GEOObjects const &geo_objects, MeshLib::Mesh const &mesh, std::unique_ptr< SearchLength > search_length_algorithm, bool const multiple_nodes_allowed)
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.
Definition Mesh.h:231
Mesh & findMeshByName(std::vector< std::unique_ptr< Mesh > > const &meshes, std::string_view const name)
Definition Mesh.cpp:364
void setMeshSpaceDimension(std::vector< std::unique_ptr< Mesh > > const &meshes)
void zeroMeshFieldDataByMaterialIDs(MeshLib::Mesh &mesh, std::vector< int > const &selected_material_ids)
std::optional< ParameterLib::CoordinateSystem > createCoordinateSystem(std::optional< BaseLib::ConfigTree > const &config, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const &parameters)
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)
Definition Parameter.cpp:27
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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 > createSmallDeformationProcess< 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 &parameters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config)
template std::unique_ptr< Process > createSmallDeformationProcess< 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 &parameters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config)
template std::unique_ptr< Process > createLargeDeformationProcess< 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 &parameters, 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 > createLargeDeformationProcess< 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 > createSmallDeformationNonlocalProcess< 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 &parameters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config)
template std::unique_ptr< Process > createSmallDeformationNonlocalProcess< 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 &parameters, std::optional< ParameterLib::CoordinateSystem > const &local_coordinate_system, unsigned const integration_order, BaseLib::ConfigTree const &config)
template std::unique_ptr< Process > createSmallDeformationProcess< 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 &parameters, 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 > createSmallDeformationProcess< 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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 &parameters, 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