1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
aliina [53]
2 years ago
13

The electric motor exerts a torque of 800 N·m on the steel shaft ABCD when it is rotating at a constant speed. Design specificat

ions require that the diameter of the shaft be uniform from A to D and that the angle of twist between A and D not exceed 1.45°. Knowing that τmax ≤ 60 MPa and G = 77.2 GPa, determine the minimum diameter shaft that can be used. (Round the final answer to one decimal place.)

Engineering
2 answers:
Tamiku [17]2 years ago
8 0

The image of this electric motor with its shaft is missing. I have attached it.

Answer:

Minimum Diameter = 40.8 mm

Explanation:

From the question,

Torque(T) = 800 N·m

φ = 1.45° = 1.45π/180 = 0.0253 rads

τ = 60 MPa = 60 x 10^(6) Pa

G = 77.2 GPa = 77.2 x 10^(9) Pa

From the image attached, length of shaft (L) = 0.4 + 0.6 + 0.3 = 1.3m

Now, the polar moment of inertia is calculated from,

J = πc⁴/2 where c is the radius of shaft

To solve this, we will find the diameter based on the angle of twist and also based on the shear stress and we will choose the smaller one.

Based on angle of twist;

Formula for angle twist is given as;

φ = TL/GJ

Now J = πc⁴/2

Thus, φ = 2TL/G(πc⁴)

c⁴ = 2TL/φGπ

c⁴ = [2 x 800 x 1.3]/(0.0253) x 77.2 x 10^(9) x π)

c⁴ = 0.00000033898

c = ∜0.00000033898

c = 0.024m

Now based on shear stress;

Formula for shear stress is given as;

τ = Tc/J

Putting πc⁴/2 for J, we have;

τ = 2T/πc³

c = ∛(2T/πτ)

c = ∛(2 x 800)/(π x 60 x 10^(6))

c = ∛0.00000848826

c = 0.0204m

So, comparing the two values of radius gotten, the one based on the shear stress is bigger and it's c = 0.0204m

Diameter = 2 x radius = 2 x 0.0204m = 0.0408m which is 40.8 mm

kodGreya [7K]2 years ago
3 0

Answer:

d= 4.079m ≈ 4.1m

Explanation:

calculate the shaft diameter from the torque,    \frac{τ}{r} = \frac{T}{J} = \frac{C . ∅}{l}

Where, τ = Torsional stress induced at the outer surface of the shaft (Maximum Shear stress).

r = Radius of the shaft.

T = Twisting Moment or Torque.

J = Polar moment of inertia.

C = Modulus of rigidity for the shaft material.

l = Length of the shaft.

θ = Angle of twist in radians on a length.  

Maximum Torque, ζ= τ ×  \frac{ π}{16} × d³

τ= 60 MPa

ζ= 800 N·m

800 = 60 ×  \frac{ π}{16} × d³

800= 11.78 ×  d³

d³= 800 ÷ 11.78

d³= 67.9

d= \sqrt[3]{} 67.9

d= 4.079m ≈ 4.1m

You might be interested in
A gas tank is known to have a thickness of 0.5 inches and an internal pressure of 2.2 ksi. Assuming that the maximum allowable s
sergiy2304 [10]

Answer:

D_o=11.9inch

Explanation:

From the question we are told that:

Thickness T=0.5

Internal PressureP=2.2Ksi

Shear stress \sigma=12ksi

Elastic modulus \gamma= 35000

Generally the equation for shear stress is mathematically given by

 \sigma=\frac{P*r_1}{2*t}

Where

r_i=internal Radius

Therefore

 12=\frac{2.2*r_1}{2*0.5}

 r_i=5.45

Generally

 r_o=r_1+t

 r_o=5.45+0.5

 r_o=5.95

Generally the equation for outer diameter is mathematically given by

 D_o=2r_o

 D_o=11.9inch

Therefore

Assuming that the thin cylinder is subjected to integral Pressure

Outer Diameter is

 D_o=11.9inch

7 0
3 years ago
List 6 different mechanisms in the Rube Goldberg cartoon and predict the purpose of each. Does the mechanism change speed, force
vodka [1.7K]

Answer: Rotary - because it has to

Around in a circle

Explanation:

i hope this helped u

7 0
3 years ago
5.11: Population Write a program that will predict the size of a population of organisms. The program should ask the user for th
fomenos

Answer:

// using c++ language

#include "stdafx.h";

#include <iostream>

#include<cmath>

using namespace std;

//start

int main()

{

  //Declaration of variables in the program

  double start_organisms;

  double daily_increase;

  int days;

  double updated_organisms;

  //The user enters the number of organisms as desired

  cout << "Enter the starting number of organisms: ";

  cin >> start_organisms;

  //Validating input data

  while (start_organisms < 2)

  {

      cout << "The starting number of organisms must be at least 2.\n";

      cout << "Enter the starting number of organisms: ";

      cin >> start_organisms;

  }

  //The user enters daily input, here's where we apply the 5.2% given in question

  cout << "Enter the daily population increase: ";

  cin>> daily_increase;

  //Validating the increase

  while (daily_increase < 0)

  {

      cout << "The average daily population increase must be a positive value.\n ";

      cout << "Enter the daily population increase: ";

      cin >> daily_increase;

  }

  //The user enters number of days

  cout << "Enter the number of days: ";

  cin >> days;

  //Validating the number of days

  while (days<1)

  {

      cout << "The number of days must be at least 1.\n";

      cout << "Enter the number of days: ";

      cin >> days;

  }

 

  //Final calculation and display of results based on formulas

  for (int i = 0; i < days; i++)

  {

      updated_organisms = start_organisms + (daily_increase*start_organisms);

      cout << "On day " << i + 1 << " the population size was " << round(updated_organisms)<<"."<<"\n";

     

      start_organisms = updated_organisms;

  }

  system("pause");

   return 0;

//end

}

4 0
2 years ago
Suppose your client wishes to purchase an annuity that pays $50,000 each year for 5 years, with the first payment 4 years from n
AnnZ [28]
$182,143.58 is the answer
8 0
2 years ago
A ramjet operates by taking in air at the inlet, providing fuel for combustion, and exhausting the hot air through the exit. Th
UNO [17]

Answer:

15300 N

Explanation:

\rho_i = Density of air at inlet

\dfrac{m}{t} = Mass flow rate = 60 kg/s

v_i = Inlet velocity = 225 m/s

\rho_o = Density of gas at outlet = 0.25\ \text{kg/m}^3

A_i = Inlet area

A_o = Outlet area = 0.5\ \text{m}^2

Since mass flow rate is the same in the inlet and outlet we have

\rho_iv_iA_i=\rho_ov_oA_o\\\Rightarrow v_o=\dfrac{\dfrac{m}{t}}{\rho_oA_o}\\\Rightarrow v_o=\dfrac{60}{0.25\times 0.5}\\\Rightarrow v_o=480\ \text{m/s}

Thrust is given by

F=\dfrac{m}{t}(v_o-v_i)\\\Rightarrow F=60\times (480-225)\\\Rightarrow F=15300\ \text{N}

The thrust generated is 15300 N.

8 0
3 years ago
Other questions:
  • Air is compressed adiabatically from p1 1 bar, T1 300 K to p2 15 bar, v2 0.1227 m3 /kg. The air is then cooled at constant volum
    13·1 answer
  • 1 2 3 4 5 6 7 8 9 10
    14·1 answer
  • In a simple ideal Rankine cycle, water is used as the working fluid. The cycle operates with pressures of 2000 psi in the boiler
    7·1 answer
  • Which of these cars traveled faster during time interval <br> please show solution
    13·1 answer
  • The costs of mining and transporting coal are roughly independent of the heating value of the coal. Consider:
    15·1 answer
  • what is the expected life 1 inch diameter bar machined from AISI 1020 CD Steel is subjected to alternating bending stress betwee
    9·1 answer
  • If you are interested only in the temperature range of 20° to 40°C and the ADC has a 0 to 3V input range, design a signal condit
    10·1 answer
  • Identify SIX (6) objectives of maintenance.<br>​
    5·1 answer
  • Lynx eat snowshoe hares, and snowshoes hears eat plants. Which term can be applied to the lynx in this food chain example? Prima
    10·1 answer
  • What are the available motor sizes for 2023 ariya ac synchronous drive motor systems in kw?.
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!