Page 1 of 1
Re: Rule for Evac, smoke(s) AND pull
Posted: Thu Oct 14, 2021 11:53 am
by Bennetserg
bump
Re: Rule for Evac, smoke(s) AND pull
Posted: Fri Oct 29, 2021 11:58 am
by Bennetserg
bump
Re: Rule for Evac, smoke(s) AND pull
Posted: Tue Nov 02, 2021 11:06 am
by alpha bravo
Do you want any smoke AND any station, or do both have to be on the same level before activating EVAC?
Re: Rule for Evac, smoke(s) AND pull
Posted: Wed Nov 03, 2021 3:53 pm
by Bennetserg
alpha bravo wrote: ↑Tue Nov 02, 2021 11:06 am
Do you want any smoke AND any station, or do both have to be on the same level before activating EVAC?
Hi Alpha,
i was thinking of any smoke plus any pull, bu t i went on and finally read the Help Files and after messing around, i figured it out. I have to create AND groups. I have one group with only Smokes and other with only Pulls, and activation number to 2. So now when +1 Smokes and/or +1 Pulls get alarmed, the EVAC msg activates.
I decided to leave ALERT msg when 1 Smoke and/or 1 Pull get alarmed only.
Re: Rule for Evac, smoke(s) AND pull
Posted: Thu Nov 04, 2021 9:42 am
by alpha bravo
Having one AND-Group for smokes and another for pulls with activation of 2, how do 1 smoke alarm and 1 pull alarm activate EVAC?
I suggest using logical output as follows:
Code: Select all
{
Create a logical output "EVAC_LOUT"
turn it OFF on startup = bring counter to -1
any alarm - smoke or pull - will advance counter to 0
any subsequent alarm - smoke or pull - will advance counter to 1
use RLYCFG on the lout to perform EVAC
}
[STARTUP]
STUP:
OFF LOUT 'EVAC_LOUT';
[ALARMA ESTACION MANUAL]
ALARM PULL 'L<N:1-28>_PULL_*':
ON 'L*_STB_*',
ON 'L<N+1>_STB_*',
ON 'L<N-1>_STB_*',
ON 'L<N>_SPK_*',
ON 'L<N+1>_SPK_*',
ON 'L<N-1>_SPK_*',
AMPON 'AMP_*' TO 'Ch_Alert_01_08',
MSGON 'Default_Alert_01_08' TO 'Ch_Alert_01_08',
ON LOUT 'EVAC_LOUT';
[ALARMA DETECTOR]
ALARM SMOKE 'L<N:1-28>_SMK_*':
ON 'L<N>_STB_*',
ON 'L<N+1>_STB_*',
ON 'L<N-1>_STB_*',
ON 'L<N>_SPK_*',
ON 'L<N+1>_SPK_*',
ON 'L<N-1>_SPK_*',
AMPON 'AMP_*' TO 'Ch_Alert_01_08',
MSGON 'Default_Alert_01_08' TO 'Ch_Alert_01_08',
ON LOUT 'EVAC_LOUT';
[EVAC LOUT]
RLYCFG LOUT 'EVAC_LOUT':
ON 'L*_SPK_*',
ON 'L*_RLY_*',
AMPOFF 'AMP_*' TO 'Ch_Alert_01_08',
AMPON 'AMP_*' TO 'Ch_Evac_01_08',
MSGON 'Default_Evac_01_08' TO 'Ch_Evac_01_08';
Rule for Evac, smoke(s) AND pull
Posted: Tue Oct 12, 2021 8:44 pm
by Bennetserg
HI,
Im trying to create a rule for Evacuation.
I want to send the default Evac msg when a station is pulled AND also 1 or more smoke detectors are on alarm.
Is that possible?.
Can you help me with the rule?
The code i had is the following (STB:strobe, SPK:speaker, RLY: relay, AMP_* : LRM Label of the amplifier (2 ZA40/70 on a EST-3X), 28 levels):
[ALARMA ESTACION MANUAL]
ALARM PULL 'L<N:1-28>_PULL_*':ON 'L*_STB_*',
ON 'L*_SPK_*',
ON 'L*_RLY_*',
AMPON 'AMP_*' TO 'Ch_Evac_01_08',
MSGON 'Default_Evac_01_08' TO 'Ch_Evac_01_08';
[ALARMA DETECTOR]
ALARM SMOKE 'L<N:1-28>_SMK_*':ON 'L<N>_STB_*',
ON 'L<N+1>_STB_*',
ON 'L<N-1>_STB_*',
ON 'L<N>_SPK_*',
ON 'L<N+1>_SPK_*',
ON 'L<N-1>_SPK_*',
AMPON 'AMP_*' TO 'Ch_Alert_01_08',
MSGON 'Default_Alert_01_08' TO 'Ch_Alert_01_08';