Answer:
45.3 MN
Explanation:
The forging force at the end of the stroke is given by
F = Y.π.r².[1 + (2μr/3h)]
The final height, h is given as h = 100/2
h = 50 mm
Next, we find the final radius by applying the volume constancy law
volumes before deformation = volumes after deformation
π * 75² * 2 * 100 = π * r² * 2 * 50
75² * 2 = r²
r² = 11250
r = √11250
r = 106 mm
E = In(100/50)
E = 0.69
From the graph flow, we find that Y = 1000 MPa, and thus, we apply the formula
F = Y.π.r².[1 + (2μr/3h)]
F = 1000 * 3.142 * 0.106² * [1 + (2 * 0.2 * 0.106/ 3 * 0.05)]
F = 35.3 * [1 + 0.2826]
F = 35.3 * 1.2826
F = 45.3 MN
Answer:
Cylindrical
Explanation:
<em>A cylindrical grinder </em><em>is a tool for shaping the exterior of an item. Although cylindrical grinders may produce a wide range of forms, the item must have a central axis of rotation. Shapes such as cylinders, ellipses, cams, and crankshafts are examples of this.</em><em> Cylindrical grinding</em><em> machines are specialized grinding machines that are used to process cylinders, rods, and similar workpieces. The cylinders revolve in one direction between two centers, while the grinding wheel or wheels are close together and rotate in the other direction.</em>
Answer:
Explanation:
Obtain the following properties at 6MPa and 600°C from the table "Superheated water".
Obtain the following properties at 10kPa from the table "saturated water"
Calculate the enthalpy at exit of the turbine using the energy balance equation.
Since, the process is isentropic process
Use the isentropic relations:
Calculate the enthalpy at isentropic state 2s.
a.)
Calculate the isentropic turbine efficiency.
b.)
Find the quality of the water at state 2
since at 10KPa << at 10KPa
Therefore, state 2 is in two-phase region.
Calculate the entropy at state 2.
Calculate the rate of entropy production.
since, Q = 0
Answer & Explanation:
function Temprature
NYC=[33 33 18 29 40 55 19 22 32 37 58 54 51 52 45 41 45 39 36 45 33 18 19 19 28 34 44 21 23 30 39];
DEN=[39 48 61 39 14 37 43 38 46 39 55 46 46 39 54 45 52 52 62 45 62 40 25 57 60 57 20 32 50 48 28];
%AVERAGE CALCULATION AND ROUND TO NEAREST INT
avgNYC=round(mean(NYC));
avgDEN=round(mean(DEN));
fprintf('\nThe average temperature for the month of January in New York city is %g (F)',avgNYC);
fprintf('\nThe average temperature for the month of January in Denvar is %g (F)',avgDEN);
%part B
count=1;
NNYC=0;
NDEN=0;
while count<=length(NYC)
if NYC(count)>avgNYC
NNYC=NNYC+1;
end
if DEN(count)>avgDEN
NDEN=NDEN+1;
end
count=count+1;
end
fprintf('\nDuring %g days, the temprature in New York city was above the average',NNYC);
fprintf('\nDuring %g days, the temprature in Denvar was above the average',NDEN);
%part C
count=1;
highDen=0;
while count<=length(NYC)
if NYC(count)>DEN(count)
highDen=highDen+1;
end
count=count+1;
end
fprintf('\nDuring %g days, the temprature in Denver was higher than the temprature in New York city.\n',highDen);
end
%output
check the attachment for additional Information