ST_BA_ProfileParameter
The parameterization structure is used within the plant control FB_BA_PlantControl for the parameterization of the parameters of a step or an aggregate. The structure contains the binary, numerical and analog switching value for the aggregate, the delay times and the enable for the use of the feedback signals from the aggregates.
Syntax
TYPE ST_BA_PlantControl_ParamSet:
STRUCT
sStep : T_MaxString;
sProfile : T_MaxString;
fDelayUp : REAL;
fDelayDown : REAL;
fValue : REAL;
nValue : UDINT;
bValue : BOOL;
bEnFdbUp : BOOL;
bEnFdbDown : BOOL;
END_STRUCT
END_TYPE
Name | Type | Description |
---|---|---|
sStep | T_MaxString | The plant step in question in plain text. The content of the text is specified via the arrStepDescription parameter structure in the function block FB_BA_PlantControl. |
sProfile | T_MaxString | The profile in question in plain text. The content of the text is specified via the arrProfileDescription structure in the function block FB_BA_PlantControl. |
fDelayUp | REAL | Time specification of the start-up delay [s,ms]. The time specification is only taken into account within the plant control for upshifting if it is > 0. |
fDelayDown | REAL | Time specification of switch-off delay [s,ms]. The time specification is only taken into account within the plant control for downshifting if it is > 0. |
fValue | REAL | Analog switching value for the aggregate. |
nValue | UDINT | Numerical switching value for the aggregate. |
bValue | BOOL | Binary switching value for the aggregate. |
bEnFdbUp | BOOL | A TRUE means that the feedback from the aggregate is used in the step "Up". |
bEnFdbDown | BOOL | A TRUE means that the feedback from the aggregate is used in the step "Down". |