From 56a3807de46dbb53dbd4e4881b7857278b319d0e Mon Sep 17 00:00:00 2001 From: psakiev Date: Tue, 24 Oct 2023 12:05:38 -0600 Subject: [PATCH] Revert "Remove redundant call updating displacements" This reverts commit dca015c42822d92c00b6d3093d32eb070f5d166c. --- src/Realm.C | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Realm.C b/src/Realm.C index 02c4e20820..aa990db736 100644 --- a/src/Realm.C +++ b/src/Realm.C @@ -3470,6 +3470,13 @@ Realm::populate_restart(double& timeStepNm1, int& timeStepCount) if (has_mesh_motion()) meshMotionAlg_->restart_reinit(foundRestartTime); + if (aeroModels_->has_fsi()) { + NaluEnv::self().naluOutputP0() + << "Aero models - Update displacements and set current coordinates" + << std::endl; + aeroModels_->update_displacements(restartTime, true); + } + compute_geometry(); if (has_mesh_motion())