Rule for Evac, smoke(s) AND pull

Post Reply
Bennetserg
Posts: 10
Joined: Tue Oct 12, 2021 7:43 pm

Re: Rule for Evac, smoke(s) AND pull

Post by Bennetserg »

bump
Bennetserg
Posts: 10
Joined: Tue Oct 12, 2021 7:43 pm

Re: Rule for Evac, smoke(s) AND pull

Post by Bennetserg »

bump
alpha bravo
Posts: 21
Joined: Tue Dec 06, 2011 11:30 am

Re: Rule for Evac, smoke(s) AND pull

Post by alpha bravo »

Do you want any smoke AND any station, or do both have to be on the same level before activating EVAC?
Bennetserg
Posts: 10
Joined: Tue Oct 12, 2021 7:43 pm

Re: Rule for Evac, smoke(s) AND pull

Post 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.
alpha bravo
Posts: 21
Joined: Tue Dec 06, 2011 11:30 am

Re: Rule for Evac, smoke(s) AND pull

Post 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';
Bennetserg
Posts: 10
Joined: Tue Oct 12, 2021 7:43 pm

Rule for Evac, smoke(s) AND pull

Post 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';
Post Reply