Answer:
Q = 424523.22 kw
Explanation:

k = 48.9 W/m - K
c = 0.115 KJ/kg- K


T_∞ = 35 degree celcius
velocity of air stream = 15 m/s
D = 40 cm
L = 200 cm
mass flow rate




solving for h

h = 675.6 kw/m^2K

Q = 675.6*2.513*(285-35)
Q = 424523.22 kw
Answer: Coefficient= 0.35 per day
Explanation:
To find the bio degradation reaction rate coefficient, we have
k= 
Here, the C lagoon= 20 mg/L
Q in= Q out= 8640 m³/d
C in= 100 mg/L
C out= 20 mg/L
V= 10 ha* 1* 10
V= 10⁵ m³
So, k= 
k= 0.35 per day
Answer:
Pressure = 11.38 psi
Force = 13.981 Ibf
Explanation:
Step by step solution is in the attached document.
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.
Explanation:
Given T = 10 °C
The conversion of T( °C) to T(K) is shown below:
T(K) = T( °C) + 273.15
So,
T = (10 + 273.15) K = 283.15 K
<u>T = 283.15 K </u>
The conversion of T( °C) to T(F) is shown below:
T (°F) = (T (°C) × 9/5) + 32
So,
T (°F) = (10 × 9/5) + 32 = 50 °F
<u>T = 50 °F</u>
The conversion of T( °C) to T(R) is shown below:
T (R) = (T (°C) × 9/5) + 491.67
So,
T (R) = (10 × 9/5) + 491.67 = 509.67 R
<u>T = 509.67 R</u>