Answer:
Explanation:
From the given question:
Using the distortion energy theory to determine the factors of safety FOS can be expressed by the relation:
where; syt = strength in tension and compression = 350 MPa
The maximum shear stress theory can be expressed as:
where;
a. Using distortion - energy theory formula:
FOS = 2.183
USing the maximum-shear stress theory;
FOS = 1.977
b. σx = 110 MPa, σy = 100 MPa
Using distortion - energy theory formula:
FOS =3.322
USing the maximum-shear stress theory;
FOS = 350/2×25
FOS = 350/50
FOS = 70
c. σx = 90 MPa, σy = 20 MPa, τxy =−20 MPa
Using distortion- energy theory formula:
FOS = 350/88.88
FOS = 3.939
USing the maximum-shear stress theory;
FOS = 4.341
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:
White lane lines separate lanes of traffic moving in the same direction. (UK)
Answer:
850.8480103 feet
Explanation:
First you take the diameter and find the circumference, which is (2)(pi)(r) plug in your r which is 26/2= 13 so 2(13)(pi) and multiply taht by 125 after that take your answer and divide by 12which is 850.8480103