CapeParamMode Enumeration

Modes of parameters.

Definition

Namespace: CapeOpen
Assembly: CapeOpen (in CapeOpen.dll) Version: 1.0.0.0 (1.0.0.0)
[SerializableAttribute]
public enum CapeParamMode

Remarks

It allows the following values:

(i) Input (CAPE_INPUT): the Unit(or whichever owner component)

will use its value to calculate.

(ii) Output (CAPE_OUTPUT): the Unit will place in the parameter

a result of its calculations.

(iii) Input-Output (CAPE_INPUT_OUTPUT): the user inputs an initial

estimation value and the user outputs a calculated value.

Reference document: Parameter Common Interface

Members

CAPE_INPUT0 The Unit(or whichever owner component) will use the parameter's value as an input to its calculation.
CAPE_OUTPUT1 The Unit(or whichever owner component) will set the parameter's value as an output to its calculation.
CAPE_INPUT_OUTPUT2 The Unit(or whichever owner component) will use the parameter's initial value as an estimate and will calculate the final value.

See Also