Answer:
hello below is missing piece of the complete question
minimum size = 0.3 cm
answer : 0.247 N/mm2
Explanation:
Given data :
section span : 10.9 and 13.4 cm
minimum load applied evenly to the top of span : 13 N
maximum load for each member ; 4.5 N
lets take each member to be 4.2 cm
Determine the max value of P before truss fails
Taking average value of section span ≈ 12 cm
Given minimum load distributed evenly on top of section span = 13 N
we will calculate the value of by applying this formula
= = 1.56 * 10^-5
next we will consider section ; 4.2 cm * 0.3 cm
hence Z (section modulus ) = BD^2 / 6
= ( 0.042 * 0.003^2 ) / 6 = 6.3*10^-8
Finally the max value of P( stress ) before the truss fails
= M/Z = ( 1.56 * 10^-5 ) / ( 6.3*10^-8 )
= 0.247 N/mm2
Answer:
- the capacity of the pump reduces by 35%.
- the head gets reduced by 57%.
the power consumption by the pump is reduced by 72%
Explanation:
the pump capacity is related to the speed as speed is reduces by 35%
so new speed is (100 - 35) = 65% of orginal speed
speed Q ∝ N ⇒ Q1/Q2 = N1/N2
Q2 = (N2/N1)Q1
Q2 = (65/100)Q1
which means that the capacity of the pump is also reduces by 35%.
the head in a pump is related by
H ∝ N² ⇒ H1/H2 = N1²/N2²
H2 = (N2N1)²H1
H2 = (65/100)²H1 = 0.4225H1
so the head gets reduced by 1 - 0.4225 = 0.5775 which is 57%.
Now The power requirement of a pump is related as
P ∝ N³ ⇒ P1/P2 = N1³/N2³
P2 = (N2/N1)³P1
H2 = (65/100)²P1 = 0.274P1
So the reduction in power is 1 - 0.274 = 0.725 which is 72%
Therefore for a reduction of 35% of speed there is a reduction of 72% of the power consumption by the pump.
Answer:
18.75in
Explanation:
Modulus of elasticity = Stress/Strain
Since stress = Force/Area
Given
Force = 1000lb
Area = 0.75sqin
Stress = 1000/0.75
Stress = 1333.33lbsqin
Strain
Strain = Stress/Modulus of elasticity
Strain = 1333.33/5,000,000
Strain = 0.0002667
Also
Strain = extension/original length
extension = 0.005in
Original length = extension/strain
Original length = 0.005/0.0002667
Original length = 18.75in
Hence the original length of the rectangular bar is 18.75in
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.
Answer:
a. true
Explanation:
Firstly, we need to understand what takes places during the compression process in a quasi-equilibrium process. A quasi-equilibrium process is a process in during which the system remains very close to a state of equilibrium at all times. When a compression process is quasi-equilibrium, the work done during the compression is returned to the surroundings during expansion, no exchange of heat, and then the system and the surroundings return to their initial states. Thus a reversible process.
While for a non-quasi equilibrium process, it takes more work to move the piston against this high-pressure region.