From 74ed18b5278692b91ae8b4130c97c8afd0961332 Mon Sep 17 00:00:00 2001 From: Daiane Iglesia Dolci <63597005+Ig-dolci@users.noreply.github.com> Date: Thu, 19 Dec 2024 14:11:38 +0000 Subject: [PATCH] Update gusto/time_discretisation/wrappers.py Co-authored-by: Thomas Bendall --- gusto/time_discretisation/wrappers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gusto/time_discretisation/wrappers.py b/gusto/time_discretisation/wrappers.py index b65fce7c..72a26320 100644 --- a/gusto/time_discretisation/wrappers.py +++ b/gusto/time_discretisation/wrappers.py @@ -303,7 +303,7 @@ def post_apply(self, x_out): """ if self.interp_back: - self.x_projected.assign(self.x_out_projector) + self.x_projected.assign(assemble(self.x_out_projector)) else: self.x_out_projector.project() x_out.assign(self.x_projected)