-
-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
From Alan Garny: Add a new 'timeInterval' attribute to UniformTimeCourse that would optionally replace (for the user) the 'numberOfSteps' attribute.
These two uniform time course elements would have the same meaning:
<uniformTimeCourse id="simulation1" initialTime="0" outputStartTime="0" outputEndTime="380" numberOfSteps="380">
<uniformTimeCourse id="simulation1" initialTime="0" outputStartTime="0" outputEndTime="380" timeInterval="1">Any discrepancy between the interval and the start/end points is made up in the final interval. Hence:
<uniformTimeCourse id="simulation1" initialTime="0" outputStartTime="0" outputEndTime="1" timeInterval="0.3">would result in a plot with the time series:
0, 0.3, 0.6, 0.9, 1.0
Reactions are currently unavailable