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

Merge pull request #1463 from chleh/improve-docu-part5

Documentation
parents 08913d67 4cdbce5b
No related branches found
No related tags found
No related merge requests found
Showing
with 4 additions and 4 deletions
......@@ -65,7 +65,6 @@ ProjectData::ProjectData(BaseLib::ConfigTree const& project_config,
auto const mesh_param = project_config.getConfigParameter("mesh");
std::string const mesh_file = BaseLib::copyPathToFileName(
//! \ogs_file_param{prj__mesh}
mesh_param.getValue<std::string>(), project_directory);
MeshLib::Mesh* const mesh = MeshLib::IO::readMeshFromFile(mesh_file);
......@@ -76,7 +75,7 @@ ProjectData::ProjectData(BaseLib::ConfigTree const& project_config,
}
if (auto const axially_symmetric =
//! \ogs_file_param{prj__mesh__axial_symmetric}
//! \ogs_file_attr{prj__mesh__axially_symmetric}
mesh_param.getConfigAttributeOptional<bool>("axially_symmetric"))
{
mesh->setAxiallySymmetric(*axially_symmetric);
......@@ -263,12 +262,13 @@ void ProjectData::parseProcesses(BaseLib::ConfigTree const& processes_config,
//! \ogs_file_param{process__type}
auto const type = process_config.peekConfigParameter<std::string>("type");
//! \ogs_file_param{process__type}
//! \ogs_file_param{process__name}
auto const name = process_config.getConfigParameter<std::string>("name");
std::unique_ptr<ProcessLib::Process> process;
auto jacobian_assembler = ProcessLib::createJacobianAssembler(
//! \ogs_file_param{process__jacobian_assembler}
process_config.getConfigSubtreeOptional("jacobian_assembler"));
if (type == "GROUNDWATER_FLOW")
......@@ -297,6 +297,7 @@ void ProjectData::parseProcesses(BaseLib::ConfigTree const& processes_config,
}
else if (type == "SMALL_DEFORMATION")
{
//! \ogs_file_param{process__SMALL_DEFORMATION__dimension}
switch (process_config.getConfigParameter<int>("dimension"))
{
case 2:
......
The value to which the unknown is set on this Dirichlet boundary.
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