Answer:
2074.2 KW
Explanation:
<u>Determine power developed at steady state </u>
First step : Determine mass flow rate ( m )
m / Mmax = ( AV )₁ P₁ / RT₁ -------------------- ( 1 )
<em> where : ( AV )₁ = 8.2 kg/s, P₁ = 0.35 * 10^6 N/m^2, R = 8.314 N.M / kmol , </em>
<em> T₁ = 720 K . </em>
insert values into equation 1
m = 0.1871 kmol/s ( mix )
Next : calculate power developed at steady state ( using ideal gas tables to get the h values of the gases )
W( power developed at steady state )
W = m [ Yco2 ( h1 - h2 )co2
Attached below is the remaining part of the detailed solution
Answer: 0.95 inches
Explanation:
A direct load on a column is considered or referred to as an axial compressive load. A direct concentric load is considered axial. If the load is off center it is termed eccentric and is no longer axially applied.
The length= 64 inches
Ends are fixed Le= 64/2 = 32 inches
Factor Of Safety (FOS) = 3. 0
E= 10.6× 10^6 ps
σy= 4000ps
The square cross-section= ia^4/12
PE= π^2EI/Le^2
6500= 3.142^2 × 10^6 × a^4/12×32^2
a^4= 0.81 => a=0.81 inches => a=0.95 inches
Given σy= 4000ps
σallowable= σy/3= 40000/3= 13333. 33psi
Load acting= 6500
Area= a^2= 0.95 ×0.95= 0.9025
σactual=6500/0.9025
σ actual < σallowable
The dimension a= 0.95 inches
Answer:
5984.67N
Explanation:
A 14 inch diameter pipe is decreased in diameter by 2 inches through a contraction. The pressure entering the contraction is 28 psi and a pressure drop of 2 psi occurs through the contraction if the upstream velocity is 4.0 ft/sec. What is the magnitude of the resultant force (lbs) needed to hold the pipe in place?
from continuity equation
v1A1=v2A2
equation of continuity
v1=4ft /s=1.21m/s
d1=14 inch=.35m
d2=14-2=0.304m
A1=pi*d^2/4
0.096m^2
a2=0.0706m^2
from continuity once again
1.21*0.096=v2(0.07)
v2=1.65
force on the pipe
(p1A1- p2A2) + m(v2 – v1)
from bernoulli
p1 + ρv1^2/2 = p2 + ρv2^2/2
difference in pressure or pressure drop
p1-p2=2psi
13.789N/m^2=rho(1.65^2-1.21^2)/2
rho=21.91kg/m^3
since the pipe is cylindrical
pressure is egh
13.789=21.91*9.81*h
length of the pipe is
0.064m
AH=volume of the pipe(area *h)
the mass =rho*A*H
0.064*0.07*21.91
m=0.098kg
(193053*0.096- 179263.6* 0.07) + 0.098(1.65 – 1.21)
force =5984.67N
Answer:
the action or process of differentiating or distinguishing between two or more things or people.
Answer:
class TriangleNumbers
{
public static void main (String[] args)
{
for (int number = 1; number <= 10; ++number) {
int sum = 1;
System.out.print("1");
for (int summed = 2; summed <= number; ++summed) {
sum += summed;
System.out.print(" + " + Integer.toString(summed));
}
System.out.print(" = " + Integer.toString(sum) + '\n');
}
}
}
Explanation:
We need to run the code for each of the 10 lines. Each time we sum numbers from 1 to n. We start with 1, then add numbers from 2 to n (and print the operation). At the end, we always print the equals sign, the sum and a newline character.