I cant remember if there is a command I can place in front or at the end of a label to activate floor above and floor below. My rules look like this
ALARM 'LVL<N:1-8>_*' :AMPON '<N>FL_AMP' +/- TO '*EVAC*',
ON '<N>FL_AUDIBLE', +/-
ON... ETC ETC
The rule compiles but I would like to know if it will work before I download it and test it. Any help would be appreciated.
floor above, floor below
Re: floor above, floor below
This example is on the SDU Help
For example, an application calls for all devices on a floor of a ten story building to activate the horns and strobes on the fire floor, the floor above the fire floor, and the floor below the fire floor. Using mathematical operators, the rule required might appear as shown below.
[FireFlrHorn]
Alarm 'LVL<n:2-9>*':
On 'LVL<n>_Horn',
On 'LVL<n>_Strobe',
On 'LVL<n+1>_Horn',
On 'LVL<n+1>_Strobe',
On 'LVL<n-1>_Horn',
On 'LVL<n-1>_Strobe';
For example, an application calls for all devices on a floor of a ten story building to activate the horns and strobes on the fire floor, the floor above the fire floor, and the floor below the fire floor. Using mathematical operators, the rule required might appear as shown below.
[FireFlrHorn]
Alarm 'LVL<n:2-9>*':
On 'LVL<n>_Horn',
On 'LVL<n>_Strobe',
On 'LVL<n+1>_Horn',
On 'LVL<n+1>_Strobe',
On 'LVL<n-1>_Horn',
On 'LVL<n-1>_Strobe';
-
- Posts: 10
- Joined: Wed Dec 21, 2011 5:58 pm
Re: floor above, floor below
[NORTH BLDG ALARM 1-3 5-18]
ALARM 'LVL_<N:1-3,5-18>_NB_*' :ON 'NB_STROBE*',
ON 'CB_STROBE*',
AMPON 'AMP_1_EVAC' TO 'CH_1_ALARM',
MSGON 'Default_Evac_01_15' FROM 'ASU_1' TO 'CH_1_ALARM',
ON 'LVL_<N>_NB_SPKR*',
ON 'LVL_<N-1>_NB_SPKR*',
ON 'LVL_<N+1>_NB_SPKR*':
you can use rule reports to check
ALARM 'LVL_<N:1-3,5-18>_NB_*' :ON 'NB_STROBE*',
ON 'CB_STROBE*',
AMPON 'AMP_1_EVAC' TO 'CH_1_ALARM',
MSGON 'Default_Evac_01_15' FROM 'ASU_1' TO 'CH_1_ALARM',
ON 'LVL_<N>_NB_SPKR*',
ON 'LVL_<N-1>_NB_SPKR*',
ON 'LVL_<N+1>_NB_SPKR*':
you can use rule reports to check