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:
Those products are generally called Work in Process WIP
Explanation:
Work in process (WIP), or work in progress (WIP), goods in process, or in-process inventory in a manufacturing industry/company refer to the company's partially finished goods waiting for completion and eventual sale or the value of these items.
These items are either just being produced or require further processing (like purification, separation, packaging or handling) in a queue or a buffer storage.
Answer:
Power = 371.28 kW
Explanation:
Initial pressure, P1 = 5 bar
Final pressure, P2 = 1 bar
Initial temperature, T1 = 320°C
Final temperature, T2 = 160°C
Volume flow rate, V = 0.65m³/s
From steam tables at state 1,
h1 = 3105.6 kJ/kg, s1 = 7.5308 kJ/kgK
v1 = 0.5416 m³/kg
Mass flow rate, m = V/v1
m = 1.2 kg/s
From steam tables, at state 2
h2 = 2796.2 kJ/kg, s2 = 7.6597 kJ/kgK
Power developed, P = m(h1 - h2)
P = 1.2(3105.6-2796.2)
P = 371.28 kW
Answer:
Multiplying impulse response by t ( option D )
Explanation:
We can obtain The impulse response of strength 1 considering a unit step response by Multiplying impulse response by t .
When we consider the Laplace Domain, and the relationship between unit step and impulse, we can deduce that the Impulse response will take the inverse Laplace transform of the function ( transfer ) . Hence Multiplying impulse response by t will be used .
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.