We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 854cf83 commit 18eb7bfCopy full SHA for 18eb7bf
cht/adapter.py
@@ -68,7 +68,8 @@ def isCouplingTimestepComplete(self):
68
return self.precice.is_time_window_complete()
69
70
def advance(self):
71
- self.precice.advance(self.preciceDt)
+ dt = self.precice.get_max_time_step_size()
72
+ self.precice.advance(dt)
73
74
def finalize(self):
75
self.precice.finalize()
0 commit comments