From 8b24c36534ccfe3db6a27599fa0d11bfe736f5aa Mon Sep 17 00:00:00 2001 From: Bruno Turcksin Date: Fri, 12 Jan 2024 11:19:29 -0500 Subject: [PATCH] Fix bugs after rebase --- ci/jenkins_config | 1 - source/MaterialProperty.templates.hh | 6 +++--- source/PostProcessor.cc | 1 + 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/jenkins_config b/ci/jenkins_config index 80c71dfd..1ed75f91 100644 --- a/ci/jenkins_config +++ b/ci/jenkins_config @@ -6,7 +6,6 @@ pipeline { timeout(time: 6, unit: 'HOURS') } -<<<<<<< HEAD triggers { issueCommentTrigger('.*test this please.*') } diff --git a/source/MaterialProperty.templates.hh b/source/MaterialProperty.templates.hh index 6616af60..c3e97ee8 100644 --- a/source/MaterialProperty.templates.hh +++ b/source/MaterialProperty.templates.hh @@ -928,16 +928,16 @@ void MaterialProperty::fill_properties( double infinity = std::numeric_limits::infinity(); if (_use_table) { - mechanical_property_tables_host_view( + _mechanical_properties_tables_host( material_id, p - g_n_thermal_state_properties, 0, 0) = infinity; - mechanical_property_tables_host_view( + _mechanical_properties_tables_host( material_id, p - g_n_thermal_state_properties, 0, 1) = infinity; } else { - mechanical_property_polynomials_host_view( + _mechanical_properties_polynomials_host( material_id, p - g_n_thermal_state_properties, 0) = infinity; } } diff --git a/source/PostProcessor.cc b/source/PostProcessor.cc index beb5bb44..19980b6e 100644 --- a/source/PostProcessor.cc +++ b/source/PostProcessor.cc @@ -79,6 +79,7 @@ PostProcessor::PostProcessor( database.get("additional_output_refinement", 0); } +template void PostProcessor::write_pvd() const { std::ofstream output(_filename_prefix + ".pvd");