Versions Compared

Key

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

...

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. The constant value of the modifier can be specified in the
text box or with the slider. The period can be defined by using the start and end date boxes.



Schema

Below the schema of the constant value modifier.

Code Block
xml
xml

<complexType name="ConstantValueModifierComplexType">
		<complexContent>
			<extension base="fews:ModifierBaseComplexType">
				<sequence>
					<element name="timeSeries" type="fews:TimeSeriesFilterComplexType" maxOccurs="unbounded"/>
					<element name="softLimits" type="fews:SoftLimitsComplexType"/>
					<element name="hardLimits" type="fews:HardLimitsComplexType" minOccurs="0"/>
					<element name="defaultStartTime" type="fews:DefaultStartTimeEnumStringType">
						<annotation>
							<documentation>Start of time period to which modifier is applied.
                        When omitted this value will default to the Year 1000 and will be disabled.
                    </documentation>
						</annotation>
					</element>
					<element name="defaultEndTime" type="fews:DefaultEndTimeEnumStringType">
						<annotation>
							<documentation>End of time period to which modifier is applied.
                        When omitted this value will default to the Year 3000 and will be disabled.
                    </documentation>
						</annotation>
					</element>
					<element name="defaultValue" type="float"/>
				</sequence>
			</extension>
		</complexContent>
	</complexType>

timeseries

The user can define a timeseries filter in this tag to define to which time series the modifier can be applied.

softLimits

The slider in the display is bounded to the soft limits defined. However they can be overruled by entering a higher or lower value in the text box.

hardLimits

The values entered in the text box or the slider are bounded by the hard limits defined.

defaultstarttime

The default start time of the modifier can be defined here.

Possible options are:

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

...