The maximum shear stress in the tube when the power is transmitted through a 4: 1 gearing is 28.98 MPa.
<h3>What is power?</h3>
Power is the energy transferred per unit time.
Torque is find out by
P = 2πNT/60
10000 = 2π x 2000 x T / 60
T =47.74 N.m
The gear ratio Ne / Ns =4/1
Ns =2000/4 = 500
Ts =Ps x 60/(2π x 500)
Ts =190.96 N.m
Maximum shear stress τ = 16/π x (T / (d₀⁴ - d₁⁴))
τ max =T/J x D/2
where d₁ = 30mm = 0.03 m
d₀ = 30 +(2x 4) = 38mm =0.038 m
Substitute the values into the equation, we get
τ max = 16 x 190.96 x 0.038 /π x (0.038⁴ - 0.03⁴)
τ max = 28.98 MPa.
Thus, the maximum shear stress in the tube is 28.98 MPa.
Learn more about power.
brainly.com/question/13385520
#SPJ1
Answer: THERE IS NO GRAVITY IN SPACE SO ROCKS SPIN
Explanation:
Answer:
The following criteria are commonly used for classifying groups as gangs: The group has three or more members, generally aged 12–24. Members share an identity, typically linked to a name, and often other symbols. Members view themselves as a gang, and they are recognized by others as a gang.
Explanation:
Maximum shear stress in the pole is 0.
<u>Explanation:</u>
Given-
Outer diameter = 127 mm
Outer radius,
= 127/2 = 63.5 mm
Inner diameter = 115 mm
Inner radius,
= 115/2 = 57.5 mm
Force, q = 0
Maximum shear stress, τmax = ?
τmax 
If force, q is 0 then τmax is also equal to 0.
Therefore, maximum shear stress in the pole is 0.
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}