Skip to content

Commit 46a21ae

Browse files
authored
Porting guide v2-v3: Fix getMaxTimeStepSize() (#763)
1 parent a0cc476 commit 46a21ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/docs/couple-your-code/porting/couple-your-code-porting-v2-3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ The API function `initializeData()` has been removed in [#1350](https://github.c
197197
// Move initialize to the place where you called initializeData() previously.
198198
- couplingInterface.initializeData();
199199
+ participant.initialize();
200-
+ double dt = participant.getMaxTimeWindowSize();
200+
+ double dt = participant.getMaxTimeStepSize();
201201
```
202202

203203
Typical error message that should lead you here:

0 commit comments

Comments
 (0)