Skip to content
Snippets Groups Projects
Commit b7cb5b6b authored by Tom Fischer's avatar Tom Fischer
Browse files

[PL/ComponentTransport] Forward the project and output folder.

The output and project folder are needed for
reading the balance mesh and writing the results
of the balance calculation.
parent 8abc2dd0
No related branches found
No related tags found
No related merge requests found
...@@ -465,7 +465,7 @@ void ProjectData::parseProcesses(BaseLib::ConfigTree const& processes_config, ...@@ -465,7 +465,7 @@ void ProjectData::parseProcesses(BaseLib::ConfigTree const& processes_config,
ProcessLib::ComponentTransport::createComponentTransportProcess( ProcessLib::ComponentTransport::createComponentTransportProcess(
*_mesh_vec[0], std::move(jacobian_assembler), *_mesh_vec[0], std::move(jacobian_assembler),
_process_variables, _parameters, integration_order, _process_variables, _parameters, integration_order,
process_config); process_config, project_directory, output_directory);
} }
else else
#endif #endif
......
...@@ -29,7 +29,9 @@ std::unique_ptr<Process> createComponentTransportProcess( ...@@ -29,7 +29,9 @@ std::unique_ptr<Process> createComponentTransportProcess(
std::vector<ProcessVariable> const& variables, std::vector<ProcessVariable> const& variables,
std::vector<std::unique_ptr<ParameterBase>> const& parameters, std::vector<std::unique_ptr<ParameterBase>> const& parameters,
unsigned const integration_order, unsigned const integration_order,
BaseLib::ConfigTree const& config) BaseLib::ConfigTree const& config,
std::string const& project_directory,
std::string const& output_directory)
{ {
//! \ogs_file_param{prj__processes__process__type} //! \ogs_file_param{prj__processes__process__type}
config.checkConfigParameter("type", "ComponentTransport"); config.checkConfigParameter("type", "ComponentTransport");
......
...@@ -22,7 +22,9 @@ std::unique_ptr<Process> createComponentTransportProcess( ...@@ -22,7 +22,9 @@ std::unique_ptr<Process> createComponentTransportProcess(
std::vector<ProcessVariable> const& variables, std::vector<ProcessVariable> const& variables,
std::vector<std::unique_ptr<ParameterBase>> const& parameters, std::vector<std::unique_ptr<ParameterBase>> const& parameters,
unsigned const integration_order, unsigned const integration_order,
BaseLib::ConfigTree const& config); BaseLib::ConfigTree const& config,
std::string const& project_directory,
std::string const& output_directory);
} // namespace ComponentTransport } // namespace ComponentTransport
} // namespace ProcessLib } // namespace ProcessLib
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