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
E.g. running nismod water_supply with warm start, ModelRun.run truncates the model horizon (timesteps) so the DataHandle created has no knowledge of the previous timesteps which were run previously.
These timesteps should not be re-run, but their outputs should be available through e.g. DataHandle.get_previous_timestep_data.
The fact that we do
self.model_horizon = self.model_horizon[idx:]
in ModelRun.run makes the logic in DataHandle._resolve_source invalid.
The text was updated successfully, but these errors were encountered:
E.g. running nismod water_supply with warm start,
ModelRun.run
truncates the model horizon (timesteps) so theDataHandle
created has no knowledge of the previous timesteps which were run previously.These timesteps should not be re-run, but their outputs should be available through e.g.
DataHandle.get_previous_timestep_data
.The fact that we do
in
ModelRun.run
makes the logic inDataHandle._resolve_source
invalid.The text was updated successfully, but these errors were encountered: