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

[PL] findProcessVariables finds optional variable

Needed for ComponentTransport extension for non-isothermal conditions.
parent 30c27393
No related branches found
No related tags found
No related merge requests found
......@@ -77,19 +77,22 @@ std::vector<std::reference_wrapper<ProcessVariable>> findProcessVariables(
std::vector<std::reference_wrapper<ProcessVariable>> findProcessVariables(
std::vector<ProcessVariable> const& variables,
BaseLib::ConfigTree const& pv_config,
std::string const& tag)
BaseLib::ConfigTree const& pv_config, std::string const& tag,
bool const optional)
{
std::vector<std::reference_wrapper<ProcessVariable>> vars;
//! \ogs_file_special
auto var_names = pv_config.getConfigParameterList<std::string>(tag);
if (var_names.empty())
{
if (optional)
{
return {};
}
OGS_FATAL("No entity is found with config tag <{:s}>.", tag);
}
std::vector<std::reference_wrapper<ProcessVariable>> vars;
std::vector<std::string> cached_var_names;
for (std::string const& var_name : var_names)
......
......@@ -50,7 +50,7 @@ std::vector<std::reference_wrapper<ProcessVariable>> findProcessVariables(
std::vector<std::reference_wrapper<ProcessVariable>> findProcessVariables(
std::vector<ProcessVariable> const& variables,
BaseLib::ConfigTree const& pv_config,
std::string const& tag);
BaseLib::ConfigTree const& pv_config, std::string const& tag,
bool const optional = false);
} // 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