gen_load Example

gen_load

#****************************************************************************
#
# Sample input file for the gen_load program which
# finds the closest combination of load bank settings
# for the requested power
#
#****************************************************************************

                                                                                        # The event that will be set when
                                                                                        # the DO bits should be set to the
                                                                                        # requested value
                                                                                        # NOTE: this event will be created
                                                                                        # if it doesn’t already exist.
@START_EVENT
set_kw
                                                                                        # The event that will be set when
                                                                                        # the DO bits should not be changed
                                                                                        # NOTE: this event will be created
                                                                                        # if it doesn’t already exist.
@STOP_EVENT
stop_kw
                                                                                        # The event that will be set when
                                                                                        # the DO bits have been set to the
                                                                                        # new value
                                                                                        # NOTE: this event will be created
                                                                                        # if it doesn’t already exist.
@DONE_EVENT
set_kw_done
                                                                                        # The event that can be set when
                                                                                        # the gen_load task should exit.
                                                                                        # NOTE: this event will be created
                                                                                        # if it doesn’t already exist.
@EXIT_EVENT
set_kw_exit
                                                                                        # The label of the CyFlex variable
                                                                                        # that contains the requested load to
                                                                                        # to be set on the load bank
                                                                                        # NOTE: this variable will be created
                                                                                        # with units of ‘hp’ if it
                                                                                        # doesn’t already exist.
@DESIRED_LOAD_LBL
rqst_pwr
                                                                                        # The labels of the DO bits and the
                                                                                        # kw value that they control on the                                                                                                                      # load bank.
@DO_BITS_LBL_AND_KW_VALUE
dcr_100w            0.1
dcr_200w_1       0.2
dcr_200w_2       0.2
dcr_500w            0.5
dcr_1Kw_1          1.0
dcr_1Kw_2          1.0
dcr_2Kw              2.0
dcr_5Kw_1          5.0
dcr_5Kw_2          5.0
dcr_10Kw            10.0
dcr_25Kw            25.0
dcr_50Kw            50.0
dcr_100Kw         100.0
dcr_200Kw_1    200.0
dcr_200Kw_2    200.0
                                                                                        # Terminate the list with either a “$”
$