Answer:
laminar flow
Explanation:
In fluid dynamics, laminar flow is characterized by fluid particles following smooth paths in layers, with each layer moving smoothly past the adjacent layers with little or no mixing.
Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<
Answer:

Explanation:
Our values are,
State 1

We know moreover for the tables A-15 that

State 2

For tables we know at T=320K

We need to use the ideal gas equation to estimate the mass, so



Using now for the final mass:



We only need to apply a energy balance equation:




The negative value indidicates heat ransfer from the system
Answer:
(a) 11.437 psia
(b) 13.963 psia
Explanation:
The pressure exerted by a fluid can be estimated by multiplying the density of the fluid, acceleration due to gravity and the depth of the fluid. To determine the fluid density, we have:
fluid density = specific gravity * density of water = 1.25 * 62.4 lbm/ft^3 = 78 lbm/ft^3
height = 28 in * (1 ft/12 in) = 2.33 ft
acceleration due to gravity = 32.174 ft/s^2
The change in pressure = fluid density*acceleration due to gravity*height = 78*32.174*(28/12) = 5855.668 lbm*ft/(s^2 * ft^2) = 5855.668 lbf/ft^2
The we convert from lbf/ft^2 to psi:
(5855.668/32.174)*0.00694 psi = 1.263 psi
(a) pressure = atmospheric pressure - change in pressure = 12.7 - 1.263 = 11.437 psia
(b) pressure = atmospheric pressure + change in pressure = 12.7 + 1.263 = 13.963 psia
Answer: 383.22K
Explanation:
L = 3m, w = 1.5m
Area A = 3 x 1.5 = 4.5m2
Q' = 750W/m2 (heat from sun) ,
& = 0.87
Q = &Q' = 0. 87x750 = 652.5W/m2
E = QA = 652.5 x 4.5 = 2936.25W
T(sur) = 300K, T(panel) = ?
Using E = §€A(T^4(panel) - T^4(sur))
§ = Stefan constant = 5.7x10^-8
€ = emmisivity = 0.85
2936.25 = 5.7x10^-8 x 0.85 x 4.5 x (T^4(panel) - 300^4)
T(panel) = 383.22K
See image for further details.