Question: Consider a hot - air heating system. The control sub - system: Receives information from three temperature sensors ( t 1 , t 2 and
Consider a hotair heating system. The control subsystem:
Receives information from three temperature sensors and and from a temperature selector switch that set the desired temperature Tref and
Generates two signals: onoff OFF that starts stops the heater, and flow LOW,HIGH that controls the hotair outlet.
The functioning of the control subsystem is as follows: Every minute
An average temperature Tavis computed as Tav;
if Tav Tref then onoffand flow are set to OFF;
if Tref Tav Tref then onoff ON and flow LOW;
if Tav Tref then onoff and flow HIGH.Which of the following algorithms properly describes the functioning of this control subsystem?
loop
Tav;
if Tref Tav then onoff OFF; flow OFF;
else if Tref Tav then onoff ; flow LOW;
else onoff ; flow HIGH;
end if;
end if;
end loop;
loop
Tav;
if Tref Tav then onoff OFF; flow OFF;
else if Tref Tav then onoff ; flow LOW;
else onoff ; flow HIGH;
end if;
end if;
wait for ;
end loop;
loop
Tav ;
if Tref Tav then onoff ON; flow LOW;
else if Tref Tav then onoff OFF; flow OFF;
else onoff ; flow HIGH;
end if:
end if;
wait for ;
end loop;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
