Answer:
138.9 °C
Explanation:
The datum of quality is saying to us that liquid water is in equilibrium with steam. Saturated water table gives information about this liquid-vapour equilibrium. In figure attached, it can be seen that at 350 kPa of pressure (or 3.5 bar) equilibrium temperature is 138.9 °C
Answer:
Explanation:
% Clears variables and screen
clear; clc
% Asks user for input
n = input('Total number of objects: ');
r = input('Size of subgroup: ');
% Computes and displays permutation according to basic formulas
p = 1;
for i = n - r + 1 : n
p = p*i;
end
str1 = [num2str(p) ' permutations'];
disp(str1)
% Computes and displays combinations according to basic formulas
str2 = [num2str(p/factorial(r)) ' combinations'];
disp(str2)
=================================================================================
Example: check
How many permutations and combinations can be made of the 15 alphabets, taking four at a time?
The answer is:
32760 permutations
1365 combinations
==================================================================================
Answer:
(a) The stress on the steel wire is 19,000 Psi
(b) The strain on the steel wire is 0.00063
(c) The modulus of elasticity of the steel is 30,000,000 Psi
Explanation:
Given;
length of steel wire, L = 100 ft
cross-sectional area, A = 0.0144 in²
applied force, F = 270 lb
extension of the wire, e = 0.75 in
<u>Part (A)</u> The stress on the steel wire;
δ = F/A
= 270 / 0.0144
δ = 18750 lb/in² = 19,000 Psi
<u>Part (B)</u> The strain on the steel wire;
σ = e/ L
L = 100 ft = 1200 in
σ = 0.75 / 1200
σ = 0.00063
<u>Part (C)</u> The modulus of elasticity of the steel
E = δ/σ
= 19,000 / 0.00063
E = 30,000,000 Psi
Answer:
(a) the cutting time to complete the facing operation = 11.667mins
b) the cutting speeds and metal removal rates at the beginning= 12.89in³/min and end of the cut. = 8.143in³/min
Explanation:
check attached files below for answer.