Answered step by step
Verified Expert Solution
Link Copied!

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 hot-air heating system. The control sub-system:
Receives information from three temperature sensors (t1,t2 and t3), and from a temperature selector switch
that set the desired temperature (Tref), and
Generates two signals: onoff in{ON,OFF}, that starts/ stops the heater, and flow in{OFF,LOW,HIGH}, that
controls the hot-air outlet.
The control sub-system functions is as follows: Every minute ...
An average temperature, Tav, is computed as Tav=0.2(t1+t2)+0.6t3;
If Tav Tref then onoff and flow are set to OFF;
if Tref-1 Tav Trefthen onoff = ON, flow= LOW;
if Tav Tref -1 then onoff =ON, flow =HIGH.
Does the following pseudocode correctly describe the control sub-system?
100p
Tav 0.2**t1+0.2**t2+0.6**t3;
if (Tref - Tav)0 then onoff OFF; flow OFF;
wait for 60s;
end loop;
YES
NO; Tavis miscalculated
NO. This pseudocode distinguishes only two situations, when Tavis greater than or equal to Tref, or when
Tavis less than Tref, while the control subsystem must distinguish three situations.Consider a hot-air heating system. The control sub-system:
Receives information from three temperature sensors (t1,t2 and t3), and from a temperature selector switch
that set the desired temperature (Tref), and
Generates two signals: onoff in{ON,OFF}, that starts/ stops the heater, and flow in{OFF,LOW,HIGH}, that
controls the hot-air outlet.
The control sub-system functions is as follows: Every minute ...
An average temperature, Tav, is computed as Tav=0.2(t1+t2)+0.6t3;
If Tave Tref then onoff and flow are set to OFF;
if Tref-11 Tav Trefthen onoff= ON, flow= LOW;
if Tav Tref -1 then onoff =ON, flow =HIGH.
Does the following pseudocode correctly describe the control sub-system?
loop
Tav 0.2**t1+0.2**t2+0.6**t3;
if (Tref - Tav)0 then onoff OFF; flow OFF;
else onoff ON; flow HIGH;
end if;
wait for 60s;
end loop;
YES
NO; Tavis miscalculated
NO. This pseudocode distinguishes only two situations, when Tavis greater than or equal to Tref, or when
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database And Expert Systems Applications Dexa 2021 Workshops Biokdd Iwcfs Mlkgraphs Al Cares Protime Alsys 2021 Virtual Event September 27 30 2021 Proceedings

Authors: Gabriele Kotsis ,A Min Tjoa ,Ismail Khalil ,Bernhard Moser ,Atif Mashkoor ,Johannes Sametinger ,Anna Fensel ,Jorge Martinez-Gil ,Lukas Fischer

1st Edition

3030871002, 978-3030871000

More Books

Students also viewed these Databases questions

Question

Find dy/dx if x = te, y = 2t2 +1

Answered: 1 week ago

Question

6. Explain the power of labels.

Answered: 1 week ago

Question

10. Discuss the complexities of language policies.

Answered: 1 week ago