Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started