You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The call to BMI update needs to use the model's time step, which is calculated on the fly. However, the initial time step is so small, that the model never seems to get going. Forcing the timestep to 1 in the c++ wrapper solves the issue, but a hardcoded time step is obviously not desirable.
The call to BMI update needs to use the model's time step, which is calculated on the fly. However, the initial time step is so small, that the model never seems to get going. Forcing the timestep to 1 in the c++ wrapper solves the issue, but a hardcoded time step is obviously not desirable.
See the following example:
which gives:
Perhaps there needs to be some spinup? Should that be done in the call to
initialize()
?Also see example notebook in this repo.
The text was updated successfully, but these errors were encountered: