From: Luca Heltai Date: Tue, 8 May 2018 11:01:24 +0000 (+0200) Subject: Make sure that also the output of the embedded value is on the deformed grid. X-Git-Tag: v9.0.0-rc4~5^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6534%2Fhead;p=dealii.git Make sure that also the output of the embedded value is on the deformed grid. --- diff --git a/examples/step-60/step-60.cc b/examples/step-60/step-60.cc index 3f03315b38..d9cbdf5727 100644 --- a/examples/step-60/step-60.cc +++ b/examples/step-60/step-60.cc @@ -966,7 +966,9 @@ namespace Step60 ComponentMask(), ComponentMask(), *embedded_mapping); - VectorTools::interpolate(*embedded_dh, embedded_value_function, embedded_value); + VectorTools::interpolate(*embedded_mapping, + *embedded_dh, embedded_value_function, + embedded_value); } }