set_lwr_bnd
Purpose:
- Set controller lower bound
Enter:
- set_lwr_bnd <ctrler> <rbound>
Where:
-
ctrler Specify the name of the controller performing the control. bound Specify the value of the control loop bound, the label of a real variable containing the bound, or an expression.
Example:
-
set_lwr_bnd dyn_w_t 45
set_lwr_bnd dyn_w_t 45[none]
The above sets the lower bound of the dyn_w_t controller to 45%.set_lwr_bnd dyn_w_t my_w_lb
The above sets the lower bound of the dyn_w_t controller to the value contained in the real variable, my_w_lb.set_lwr_bnd dyn_w_t “my_w_lb + 30[none]”
The above sets the lower bound of the dyn_w_t controller to the value resulting from the evaluation of the expression, i.e., to the value contained in the real variable, my_w_lb, plus 30.
Notes:
-
The controller name that should be used is specified in the control specs file under the keyword @USER_CTRL_LOOP. If the old ctrl_specs file format is being used, then the controller name is the name found on the line that contains the user control loop number.