Answer:
The corresponding absolute pressure of the boiler is 24.696 pounds per square inch.
Explanation:
From Fluid Mechanics, we remember that absolute pressure (), measured in pounds per square inch, is the sum of the atmospheric pressure and the working pressure (gauge pressure). That is:
(1)
Where:
- Atmospheric pressure, measured in pounds per square inch.
- Working pressured of the boiler (gauge pressure), measured in pounds per square inch.
If we suppose that and , then the absolute pressure is:
The corresponding absolute pressure of the boiler is 24.696 pounds per square inch.
The heat transferred to and the work produced by the steam during this process is 13781.618 kJ/kg
<h3>
How to calcultae the heat?</h3>
The Net Change in Enthalpy will be:
= m ( h2 - h1 ) = 11.216 ( 1755.405 - 566.78 ) = 13331.618 kJ/kg
Work Done (Area Under PV curve) = 1/2 x (P1 + P2) x ( V1 - V2)
= 1/2 x ( 75 + 225) x (5 - 2)
W = 450 KJ
From the First Law of Thermodynamics, Q = U + W
So, Heat Transfer = Change in Internal Energy + Work Done
= 13331.618 + 450
Q = 13781.618 kJ/kg
Learn more about heat on:
brainly.com/question/13439286
#SP1
Answer:
Tension in cable BE= 196.2 N
Reactions A and D both are 73.575 N
Explanation:
The free body diagram is as attached sketch. At equilibrium, sum of forces along y axis will be 0 hence
hence
Therefore, tension in the cable,
Taking moments about point A, with clockwise moments as positive while anticlockwise moments as negative then
Similarly,
Therefore, both reactions at A and D are 73.575 N
A wide-angle lens has a focal length of 35mm or shorter, which gives you a wide field of view. The wider your field of view, the more of the scene you'll be able to see in the frame. These lenses are ideal for many scenarios, and most photographers have at least one trusty wide-angle lens in their kit.
BRAINLIEST PLSSS
Answer:
//The program prompts user to input three integers and it displays them, adds and gets their average
//begin
public class Test
{
public static void Main()
{
//input intergers
int[] score = new int[3];
int avg,rem,sum = 0;
for(int i=0;i<3;i++)
{
Console.WriteLine("Enter an integer score ");
score[i] = Convert.ToInt32(Console.ReadLine());
sum = sum + score[i];
}
avg = sum/3;
rem = sum%3;
Console.WriteLine("The average of "+score[0]+","+score[1]+","+score[2]+" is "+avg +" with a remainder of "+rem);
}
}