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

[PL] Rename geometry and patch.

geometry->geometrical_set, patch->geometry.
parent bf802e4a
No related branches found
No related tags found
No related merge requests found
...@@ -61,15 +61,15 @@ ProcessVariable::ProcessVariable( ...@@ -61,15 +61,15 @@ ProcessVariable::ProcessVariable(
ConfigTree const& bc_config = bc_iterator.second; ConfigTree const& bc_config = bc_iterator.second;
// Find corresponding GeoObject // Find corresponding GeoObject
std::string const geometrical_set_name =
bc_config.get<std::string>("geometrical_set");
std::string const geometry_name = std::string const geometry_name =
bc_config.get<std::string>("geometry"); bc_config.get<std::string>("geometry");
std::string const patch_name =
bc_config.get<std::string>("patch");
// TODO Currently only Polylines are supported for the boundary // TODO Currently only Polylines are supported for the boundary
// conditions. // conditions.
GeoLib::GeoObject const* const geometry = geometries.getGeoObject( GeoLib::GeoObject const* const geometry = geometries.getGeoObject(
geometry_name, GeoLib::GEOTYPE::POLYLINE, patch_name); geometrical_set_name, GeoLib::GEOTYPE::POLYLINE, geometry_name);
DBUG("Found geometry type \"%s\"", DBUG("Found geometry type \"%s\"",
GeoLib::convertGeoTypeToString(geometry->getGeoType()).c_str()); GeoLib::convertGeoTypeToString(geometry->getGeoType()).c_str());
......
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