Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Current »

doc_tap_equation_script_link_to_expressions;

doc_tap_equation_heading;

doc_tap_equation_description;

doc_tap_equation_is_triggered_when;

doc_tap_equation_special_functions;

doc_tap_equation_examples;

doc_tap_equation_example1;

doc_tap_equation_example2;

A:

((CO > 1200) AND (Mu = 1)) OR ((CO > 800) AND (Mu = 0))

B:

IF Mu=1
  IF(Co > 1200, RETURN(1));
ELSE
  IF(Co > 800, RETURN(1));
END
RETURN(0);

doc_tap_equation_example3;

doc_tap_script_heading;

doc_tap_script_description;

doc_tap_script_is_triggered_when;

doc_tap_script_example; 1

doc_tap_script_example1;

doc_tap_script_example1_code;

doc_tap_script_example; 2

doc_tap_script_example2; Control of 3 step ventilation system based on temperature difference.

HYSTERESIS(temperature, 26, 24, 3, 
HYSTERESIS(temperature, 22, 20, 2, 
HYSTERESIS(temperature, 18, 16, 1, 0, Mu), Mu), Mu);
  • No labels