Answer:
work=281.4KJ/kg
Power=4Kw
Explanation:
Hi!
To solve follow the steps below!
1. Find the density of the air at the entrance using the equation for ideal gases

where
P=pressure=120kPa
T=20C=293k
R= 0.287 kJ/(kg*K)=
gas constant ideal for air

2.find the mass flow by finding the product between the flow rate and the density
m=(density)(flow rate)
flow rate=10L/s=0.01m^3/s
m=(1.43kg/m^3)(0.01m^3/s)=0.0143kg/s
3. Please use the equation the first law of thermodynamics that states that the energy that enters is the same as the one that must come out, we infer the following equation, note = remember that power is the product of work and mass flow
Work
w=Cp(T1-T2)
Where
Cp= specific heat for air=1.005KJ/kgK
w=work
T1=inlet temperature=20C
T2=outlet temperature=300C
w=1.005(300-20)=281.4KJ/kg
Power
W=mw
W=(0.0143)(281.4KJ/kg)=4Kw
Answer:
Option A
60 pH
Explanation:
For series connection of inductors, the total inductance is given by
where the subcripts denote various inductors
For this case, inductance will be 10 pH+50 pH= 60 pH
Answer:
Explanation:using the product immediately in the next step
Answer:
let number = 0
while number < 1
begin
print "Enter a positive integer: "
read number
end
end_while
find and print number's factors:
let prime = TRUE
let currentFactor = 2
let lastFactor = the square root of number truncated
to an integer value
while currentFactor <= lastFactor
begin
if number is evenly divisible by currentFactor
begin
print currentFactor
let number = number / currentFactor
end
else
let currentFactor = currentFactor + 1
end_if
end
end_while
print a message if number is prime:
if prime == TRUE
print "Your number is prime"
end_if
Explanation: