Skip to content
Snippets Groups Projects
Commit c06e8bad authored by Dmitri Naumov's avatar Dmitri Naumov Committed by Dmitri Naumov
Browse files

[App] Construct additional meshes from geometries.

All named geometries are converted to meshes (with
same names).

These meshes will be used by the boundary conditions
and source term constructors.
parent 5524c632
No related branches found
No related tags found
No related merge requests found
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
#include "MathLib/Curve/CreatePiecewiseLinearCurve.h" #include "MathLib/Curve/CreatePiecewiseLinearCurve.h"
#include "MathLib/InterpolationAlgorithms/PiecewiseLinearInterpolation.h" #include "MathLib/InterpolationAlgorithms/PiecewiseLinearInterpolation.h"
#include "MeshGeoToolsLib/ConstructMeshesFromGeometries.h"
#include "MeshLib/Mesh.h" #include "MeshLib/Mesh.h"
#include "NumLib/ODESolver/ConvergenceCriterion.h" #include "NumLib/ODESolver/ConvergenceCriterion.h"
...@@ -133,6 +134,15 @@ ProjectData::ProjectData(BaseLib::ConfigTree const& project_config, ...@@ -133,6 +134,15 @@ ProjectData::ProjectData(BaseLib::ConfigTree const& project_config,
_mesh_vec.push_back(mesh); _mesh_vec.push_back(mesh);
} }
auto additional_meshes =
MeshGeoToolsLib::constructAdditionalMeshesFromGeoObjects(*_geoObjects,
*_mesh_vec[0]);
// release the unique_ptr's while copying to the raw pointers storage.
// TODO (naumov) Store unique_ptr's in _mesh_vec.
std::transform(begin(additional_meshes), end(additional_meshes),
std::back_inserter(_mesh_vec),
[](auto&& mesh) { return mesh.release(); });
//! \ogs_file_param{prj__curves} //! \ogs_file_param{prj__curves}
parseCurves(project_config.getConfigSubtreeOptional("curves")); parseCurves(project_config.getConfigSubtreeOptional("curves"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment