Answer:
Explanation:
Given data in question
mean stress = 50 MPa
amplitude stress = 225 MPa
to find out
maximum stress, stress ratio, magnitude of the stress range.
solution
we will find first maximum stress and minimum stress
and stress will be sum of (maximum +minimum stress) / 2
so for stress 50 MPa and 225 MPa
=
+
/ 2
50 =
+
/ 2 ...........1
and
225 =
+
/ 2 ...........2
from eqution 1 and 2 we get maximum and minimum stress
= 275 MPa ............3
and
= -175 MPa ............4
In 2nd part we stress ratio is will compute by ratio of equation 3 and 4
we get ratio =
/
ratio = -175 / 227
ratio = -0.64
now in 3rd part magnitude will calculate by subtracting maximum stress - minimum stress i.e.
magnitude =
-
magnitude = 275 - (-175) = 450 MPa
Answer:
88.18 W
Explanation:
The weight of the boy is given as 108 lb
Change to kg =108*0.453592= 48.988 kg = 49 kg
The slope is given as 6% , change it to degrees as
6/100 =0.06
tan⁻(0.06)= 3.43°
The boy is travelling at a constant speed up the slope = 7mi/hr
Change 7 mi/h to m/s
7*0.44704 =3.13 m/s
Formula for power P=F*v where
P=power output
F=force
v=velocity
Finding force
F=m*g*sin 3.43°
F=49*9.81*sin 3.43° =28.17
Finding the power out
P=28.17*3.13 =88.18 W
Problem Solvers
Explanation:
Engineers find problems in the world, and then they find solutions for them.
Answer:
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
int main() {
string name[5];
int age[5];
int i,j;
for ( i = 0; i<=4; i++ ) {
cout << "Please enter student's name:";
cin >> name[i];
cout << "Please enter student's age:";
cin >> age[i];
}
for (i=0;i<=4;i++){
cout<<"Age of "<< name[i]<<" is "<<age[i]<<endl;
}
}
Output of above program is displayed in figure attached.