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 following piece of code in io_utils.py is supposed to avoid extrapolation by changing tend:
if "segments" in ndD_s["profileType"]:
dD_s["tend"] = dD_s["segments_tvec"][-1]
# Pad the last segment so no extrapolation occurs
dD_s["segments_tvec"][-1] = dD_s["tend"]*1.01
However, this change is only applied to the dimensional config dict, after the non-dimensional version was already created from it a few lines above. The simulation used only the non-dimensional config, so the old tend is used instead of the updated value.
The text was updated successfully, but these errors were encountered:
The following piece of code in
io_utils.py
is supposed to avoid extrapolation by changingtend
:However, this change is only applied to the dimensional config dict, after the non-dimensional version was already created from it a few lines above. The simulation used only the non-dimensional config, so the old
tend
is used instead of the updated value.The text was updated successfully, but these errors were encountered: