In practice and current community implementation, UTC simulations may define an initialTime that represents when the simulator should initialize the start of simulation to be, and is useful for the sake of defining outputStartTime and outputEndTime in simulation output.
In practice across many simulators at the moment, this is done by defining an absolute initial time, and then defining output start and end time to fall after the initial time, where the corresponding output would be desired. For example, if we want to initalize a simulation to start at 5 seconds, simulate for one second, then collect data for 4 seconds, most simulators expect the following values to be set (and many sedml are defined this way accordingly):
initalTime: 5
outputStartTime: 6
outputEndTime: 10
However, the SedML L1V5 defines both outputStartTime and outputEndTime as being relative to initialTime, not with respect to t=0. Thus, if the specification was "properly" implemented, the following would be the correct values:
initalTime: 5
outputStartTime: 1
outputEndTime: 5
In practice and current community implementation, UTC simulations may define an
initialTimethat represents when the simulator should initialize the start of simulation to be, and is useful for the sake of definingoutputStartTimeandoutputEndTimein simulation output.In practice across many simulators at the moment, this is done by defining an absolute initial time, and then defining output start and end time to fall after the initial time, where the corresponding output would be desired. For example, if we want to initalize a simulation to start at 5 seconds, simulate for one second, then collect data for 4 seconds, most simulators expect the following values to be set (and many sedml are defined this way accordingly):
initalTime: 5outputStartTime: 6outputEndTime: 10However, the SedML L1V5 defines both
outputStartTimeandoutputEndTimeas being relative toinitialTime, not with respect to t=0. Thus, if the specification was "properly" implemented, the following would be the correct values:initalTime: 5outputStartTime: 1outputEndTime: 5