Answer:
Racking is the term used for when buildings tilt as their structural components are forced out of plumb. This is most commonly caused by wind forces exerting horizontal pressure, but it can also be caused by seismic stress, thermal expansion or contraction, and so on.
Explanation:
Answer:
#include <iostream>
using namespace std;
void PrintPopcornTime(int bagOunces) {
if(bagOunces < 3){
cout << "Too small";
cout << endl;
}
else if(bagOunces > 10){
cout << "Too large";
cout << endl;
}
else{
cout << (6 * bagOunces) << " seconds" << endl;
}
}
int main() {
PrintPopcornTime(7);
return 0;
}
Explanation:
Using C++ to write the program. In line 1 we define the header "#include <iostream>" that defines the standard input/output stream objects. In line 2 "using namespace std" gives me the ability to use classes or functions, From lines 5 to 17 we define the function "PrintPopcornTime(), with int parameter bagOunces" Line 19 we can then call the function using 7 as the argument "PrintPopcornTime(7);" to get the expected output.
A 260 ft (79.25m) length of size 4 AWG uncoated copper wire operating at a temperature of 75°c has a resistance of 0.0792 ohm.
Explanation:
From the given data the area of size 4 AWG of the code is 21.2 mm², then K is the Resistivity of the material at 75°c is taken as ( 0.0214 ohm mm²/m ).
To find the resistance of 260 ft (79.25 m) of size 4 AWG,
R= K * L/ A
K = 0.0214 ohm mm²/m
L = 79.25 m
A = 21.2 mm²
R = 0.0214 * 
= 0.0214 * 3.738
= 0.0792 ohm.
Thus the resistance of uncoated copper wire is 0.0792 ohm
Answer:
a) 180 m³/s
b) 213.4 kg/s
Explanation:
= 1 m²
= 100 kPa
= 180 m/s
Flow rate

Volumetric flow rate = 180 m³/s
Mass flow rate

Mass flow rate = 213.4 kg/s
Answer:
The rate of entropy change of the air is -0.10067kW/K
Explanation:
We'll assume the following
1. It is a steady-flow process;
2. The changes in the kinetic energy and the potential energy are negligible;
3. Lastly, the air is an ideal gas
Energy balance will be required to calculate heat loss;
mh1 + W = mh2 + Q where W = Q.
Also note that the rate of entropy change of the air is calculated by calculating the rate of heat transfer and temperature of the air, as follows;
Rate of Entropy Change = -Q/T
Where Q = 30Kw
T = Temperature of air = 25°C = 298K
Rate = -30/298
Rate = -0.100671140939597 KW/K
Rate = -0.10067kW/K
Hence, the rate of entropy change of the air is -0.10067kW/K