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

[PL/DS] Make line segment optional for time intrvl

Either time interval is given w/o line segment, which is
unused for whole material ids blocks deactivation *or*
a curve and line segment must be given.
parent 5e7c2989
No related branches found
No related tags found
No related merge requests found
...@@ -177,9 +177,33 @@ std::unique_ptr<DeactivatedSubdomain const> createDeactivatedSubdomain( ...@@ -177,9 +177,33 @@ std::unique_ptr<DeactivatedSubdomain const> createDeactivatedSubdomain(
auto const time_interval = auto const time_interval =
parseTimeIntervalOrCurve(time_interval_config, curve_name, curves); parseTimeIntervalOrCurve(time_interval_config, curve_name, curves);
auto const line_segment = auto const line_segment_config =
//! \ogs_file_param{prj__process_variables__process_variable__deactivated_subdomains__deactivated_subdomain__line_segment} //! \ogs_file_param{prj__process_variables__process_variable__deactivated_subdomains__deactivated_subdomain__line_segment}
parseLineSegment(config.getConfigSubtree("line_segment")); config.getConfigSubtreeOptional("line_segment");
if (time_interval_config && line_segment_config)
{
OGS_FATAL(
"When using time interval for subdomain deactivation a line "
"segment must not be specified.");
}
if (curve_name && !line_segment_config)
{
OGS_FATAL(
"When using curve for subdomain deactivation a line segment must "
"be specified.");
}
// If time interval was specified then a dummy line segment is used
// *internally* because the whole selected material ids subdomain will be
// deactivated.
std::pair line_segment{Eigen::Vector3d{0, 0, 0}, Eigen::Vector3d{1, 1, 1}};
if (curve_name)
{
line_segment = parseLineSegment(*line_segment_config);
}
auto deactivated_subdomain_material_ids = auto deactivated_subdomain_material_ids =
//! \ogs_file_param{prj__process_variables__process_variable__deactivated_subdomains__deactivated_subdomain__material_ids} //! \ogs_file_param{prj__process_variables__process_variable__deactivated_subdomains__deactivated_subdomain__material_ids}
......
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