Answer:
Tmax= 46.0 lb-in
Explanation:
Given:
- The diameter of the steel rod BC d1 = 0.25 in
- The diameter of the copper rod AB and CD d2 = 1 in
- Allowable shear stress of steel τ_s = 15ksi
- Allowable shear stress of copper τ_c = 12ksi
Find:
Find the torque T_max
Solution:
- The relation of allowable shear stress is given by:
τ = 16*T / pi*d^3
T = τ*pi*d^3 / 16
- Design Torque T for Copper rod:
T_c = τ_c*pi*d_c^3 / 16
T_c = 12*1000*pi*1^3 / 16
T_c = 2356.2 lb.in
- Design Torque T for Steel rod:
T_s = τ_s*pi*d_s^3 / 16
T_s = 15*1000*pi*0.25^3 / 16
T_s = 46.02 lb.in
- The design torque must conform to the allowable shear stress for both copper and steel. The maximum allowable would be:
T = min ( 2356.2 , 46.02 )
T = 46.02 lb-in
Viscosity isT=u(U/y) where T is shear stress & u is velocity and y is thr length
The answer is =2.57
Answer:
A
Explanation:
He should get a job in engineering to see what it's like to work in the field.
Answer:
Explained
Explanation:
Cold working: It is plastic deformation of material at temperature below recrystallization temperature. whereas hot working is deforming material above the recrystallization temperature.
Given melting point temp of lead is 327° C and lead recrystallizes at about
0.3 to 0.5 times melting temperature which will be higher that 20°C. Hence we can conclude that at 20°C lead will under go cold working only.
Answer:
The following program is in C++.
#include <bits/stdc++.h>
using namespace std;
void lastChars(string s)
{
int l=s.length();
if(l!=0)
{
cout<<"The last character of the string is: "<<s[l-1];
}
}
int main() {
string s;//declaring a string..
getline(cin,s);//taking input of the string..
lastChars(s);//calling the function..
return 0;
}
Input:-
Alex is going home
Output:-
The last character of the string is: e
Explanation:
In the function lastChars() there is one argument that is a string.I have declared a integer variable l that stores the length of the string.If the length of the string is not 0.Then printing the last character of the string.In the main function I have called the function lastChars() with the string s that is prompted from the user.