Skip to content

Commit 7c31d52

Browse files
committed
Call post_setup() for the auxiliary time integrator
1 parent da343d2 commit 7c31d52

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

src/adapter/4C_adapter_str_timeada_joint.cpp

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,4 +241,15 @@ void Adapter::StructureTimeAdaJoint::reset_step()
241241
sta_->reset_step();
242242
}
243243

244+
/*----------------------------------------------------------------------*/
245+
/*----------------------------------------------------------------------*/
246+
void Adapter::StructureTimeAdaJoint::post_setup()
247+
{
248+
// base post setup
249+
Adapter::StructureTimeAda::post_setup();
250+
251+
// post setup the auxiliary time integrator
252+
sta_->post_setup();
253+
}
254+
244255
FOUR_C_NAMESPACE_CLOSE

src/adapter/4C_adapter_str_timeada_joint.hpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ namespace Adapter
5555
//! Provide type of algorithm
5656
enum AdaEnum method_adapt_dis() const override;
5757

58+
//! Override since we need to setup the auxiliary time integrator
59+
void post_setup() override;
60+
5861
protected:
5962
/// setup of the auxiliary time integrator
6063
void setup_auxiliary() override;

0 commit comments

Comments
 (0)