Answer:
the maximum thermal efficiency is 29%
Explanation:
the maximum efficiency for a thermal engine that works between a cold source and a hot source is the one of a Carnot engine. Its efficiency is given by
Maximum efficiency= 1 - T2/T1
where
T2= absolute temperature of the cold sink (environment)= 20°C + 273 = 293
T2= absolute temperature of the hot source (hot water supply) = 140°C + 273 = 413
therefore
Maximum efficiency= 1 - T2/T1 = 1 - 293/413 = 0,29 =29%
Answer and Explanation:
clear all; close all;
N=512;
t=(1:N)/N;
fs=1000;
f=(1:N)*fs/N;
x= sin(2*pi*200*t) + sin(2*pi*400*t);
y= sin(2*pi*200*t) + sin(2*pi*900*t);
for n = 1:20
a(n) = (2/N)*sum(x.*(cos(2*pi*n*t)))
b(n) = (2/N)*sum(x.*(sin(2*pi*n*t)))
c(n) = sqrt(a(n).^2+b(n).^2)
theta(n) =-(360/(2*pi))*atan(b(n)./a(n));
end
plot(f(1:20),c(1:20),'rd');
disp([a(1:4),b(1:4),c(1:4),theta(1:4)])
Answer:
1) 4.361 x 10 raised to power 8 revolutions
2) 1.744 x 10 raised to power 9 firings
3) 2.18 x 10 raised to power 8 intake strokes
Explanation:
The step by step explanation is as shown in the attachment