Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

First the id and name of the modifier is declared. The timeSeries-part identifies that this modifier can be applied to any time series which have the parameter WECHNG. The modifiers has some soft limits. These limits are used to limit the slider bar in the display. In this case the slider bar will start at 0 and end at 5. But these soft limits can be overruled by manually typing a value lower than zero or higher than 5. The hardLimits identify the upper and lower limit of the mod and they can not be overruled. This means that for this mod only the maximum value of the soft limit of 5 can be overruled.  A single value modifier is only applied at one time step. By default this is set to the start of the run in this modifier. The default value is set to 0.

4.2.2 Constant value modifiers

Constant value modifiers are very similar to single value modifiers. But instead of modifying a single value at a particular point in time, they modify a time series over a period of time with a fixed value. Below the display of a constant value modifier is shown. Which is very similar to the display of single value modifier. Note however that this modifier has a start and an end time.

Image Added

Below an example configuration of a constant value modifer is shown.

Code Block
xml
xml

<constantValueModifier id="mfc" name="MFC">
	<timeSeries>
		<parameterId>MFC</parameterId>
	</timeSeries>
	<softLimits>
		<maximumValue>10</maximumValue>
		<minimumValue>0</minimumValue>
	</softLimits>
	<defaultStartTime>start run</defaultStartTime>
	<defaultEndTime>end run</defaultEndTime>
	<defaultValue>1</defaultValue>
</constantValueModifier>

The only difference in the configuration of a constant value modifier and a single value modifier is that a default start- and endtime should be configured instead of default time.