0% found this document useful (0 votes)
4 views1 page

SD SP Expression

The document outlines a control expression for calculating an output value based on an input value and a defined ratio. It includes a conditional statement that triggers an alarm if the calculated ratio falls below a specified limit. The expressions involve mathematical operations and logical conditions to determine the state of an output variable.

Uploaded by

chirag
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

SD SP Expression

The document outlines a control expression for calculating an output value based on an input value and a defined ratio. It includes a conditional statement that triggers an alarm if the calculated ratio falls below a specified limit. The expressions involve mathematical operations and logical conditions to determine the state of an output variable.

Uploaded by

chirag
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

SD_SP Expression

'OUT2' := ('IN2.CV'*0.025)+0.175;

(* IF SD ACTUAL DIVIDE BY SD RATIO % IS LESS THAN 95% THEN ALARM LOW SD RATIO *)
'OUT3.CV' := (('^/SD_ACTUAL_OUT.CV' / 'OUT2.CV' )* 100);
IF ('OUT3.CV' < '^/SD_ALARM_LIMIT.CV')
THEN 'OUT4.CV' := TRUE;
ELSE 'OUT4.CV' := FALSE;
ENDIF;

You might also like