Answer:
option c is correct
47.2%
Explanation:
given data
consisting of refrigerant = 134 a
volume V = 0.01 m³/kg
pressure P = 1MPa = 1000 kPa
to find out
quality of the R 134a
solution
we will get here value of volume Vf and Vv from pressure table 60 kpa to 3 Mpa for 1 Mpa of R134 a
that is
Vf = 0.0008701 m³/kg
Vv = 0.0203 m³/kg
so we will apply here formula that is
quality = (V - Vf) / (Vv - Vf) ............1
put here value
quality = (0.01 - 0.0008701 ) / ( 0.0203 - 0.0008701 )
quality = 0.4698
so quality is 47 %
SO OPTION C IS CORRECT
Answer:
1.44 mm
Explanation:
Compute the maximum allowable surface crack length using
where E is the modulus of elasticity,
is surface energy and
is tensile stress
Substituting the given values
The maximum allowable surface crack is 1.44 mm
Answer:
Area of Circle = 78.5398
Surface Area of Sphere = 1.2566 x 10^3 = 1256.6 ft
Volume of Sphere = 33.5103 ft
Explanation:
Please find below the written MatLab script used to solve the problem. I had to define r in each case to solve for the Area of the circle, the surface area and the volume of the Sphere.
r=5; % define r as 5
a=pi*r^2;% calculate the area of the circle
AreaOfCircle=a
r=10; % define r and 10 ft
sa=4*pi*r^2; %Calculate the surface area of the sphere
SphereSurfaceArea=sa
r=2;% define r as 2 ft
vs=(4/3)*pi*r^3;% Calculate the volume of the sphere
VolumeShere=vs