def _setCurrentTimeStep(self, step): """ Set the current time step. In addition to the setting the current timestep within the framework, we need to pass the value to the PCRaster runtime engine. """ dynamicBase.DynamicBase._setCurrentTimeStep(self, step) pcr._rte().setCurrentTimeStep(step)
def _setNrTimeSteps(self, timeSteps): """ Configure the number of time steps. In addition to the setting the number of timesteps we need to pass the value to the PCRaster runtime engine. """ dynamicBase.DynamicBase._setNrTimeSteps(self, timeSteps) pcr._rte().setNrTimeSteps(timeSteps)