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
defon
3 years ago
8

The hydrofoil boat has an A-36 steel propeller shaft that is 100 ft long. It is connected to an in-line diesel engine that deliv

ers a maximum power of 2490 hp and causes the shaft to
Engineering
1 answer:
Nataliya [291]3 years ago
6 0

The question is incomplete. The complete question is :

The hydrofoil boat has an A-36 steel propeller shaft that is 100 ft long. It is connected to an in-line diesel engine that delivers a maximum power of 2590 hp and causes the shaft to rotate at 1700 rpm . If the outer diameter of the shaft is 8 in. and the wall thickness is $\frac{3}{8}$  in.

A) Determine the maximum shear stress developed in the shaft.

$\tau_{max}$ = ?

B) Also, what is the "wind up," or angle of twist in the shaft at full power?

$ \phi $ = ?

Solution :

Given :

Angular speed, ω = 1700 rpm

                              $ = 1700 \frac{\text{rev}}{\text{min}}\left(\frac{2 \pi \text{ rad}}{\text{rev}}\right) \frac{1 \text{ min}}{60 \ \text{s}}$

                              $= 56.67 \pi \text{ rad/s}$

Power $= 2590 \text{ hp} \left( \frac{550 \text{ ft. lb/s}}{1 \text{ hp}}\right)$

          = 1424500 ft. lb/s

Torque, $T = \frac{P}{\omega}$

                 $=\frac{1424500}{56.67 \pi}$

                 = 8001.27 lb.ft

A). Therefore, maximum shear stress is given by :

Applying the torsion formula

$\tau_{max} = \frac{T_c}{J}$

        $=\frac{8001.27 \times 12 \times 4}{\frac{\pi}{2}\left(4^2 - 3.625^4 \right)}$

      = 2.93 ksi

B). Angle of twist :

     $\phi = \frac{TL}{JG}$

         $=\frac{8001.27 \times 12 \times 100 \times 12}{\frac{\pi}{2}\left(4^4 - 3.625^4\right) \times 11 \times 10^3}$

         = 0.08002 rad

         = 4.58°

You might be interested in
A dielectric material, such as Teflon®, is placed between the plates of a parallel-plate capacitor without altering the structur
Lina20 [59]

Answer: The electric field decreases because of the insertion of the Teflon.

Explanation:

If the charge on the capacitor is held fixed, the electric field as a consequence of this charge distribution (directed from the positive charged plate to the negative charged one remains unchanged.

However, as the Teflon is a dielectric material, even though doesn't allow the free movement of the electrons as an answer to an applied electric field, it allows that the electrons be displaced from the equilibrium position, leaving a local negative-charged zone close to the posiitive plate of the capacitor, and an equal but opposite charged layer close to the negative plate.

In this way, a internal electric field is created, that opposes to the external one due to the capacitor, which overall effect is diminishing the total electric field, reducing the voltage between the plates, and  increasing the capacitance proportionally to the dielectric constant of the Teflon.  

8 0
3 years ago
State the four advantages of levers
dezoksy [38]

Answer:

Here are 2 sense i cant find 4

Explanation:

Levers are used to multiply force, In other words, using a lever gives you greater force or power than the effort you put in.

In a lever, if the distance from the effort to the fulcrum is longer than the distance from the load to the fulcrum, this gives a greater mechanical advantage.

3 0
2 years ago
A robot was able to detect a burning smell at a shopping mall and prevent a major disaster. Which function enabled the robot to
adelina 88 [10]

Answer:

Smoke detectors on the robot.

Plz rate as Brainliest. I need it to get to the next rank.

3 0
3 years ago
Write a GUI-based program that plays a guess-the-number game in which the roles of the computer and the user are the reverse of
AURORKA [14]

Answer:

import javax.swing.*;

import java.awt.*;

import java.util.Random;

import java.awt.event.*;

public class Guess extends JFrame

{

   private static final long serialVersionUID = 1L;

   private JButton newGame;

   private JButton enter;

   private JButton exit;

   private JTextField guess;

   private JLabel initialTextLabel;

   private JLabel enterLabel;

   private JLabel userMessageLabel;

   private int randNum;

   private int userInput;

   private int maxtries = 0;

   public Guess()

   {

       super("Guessing Game");

       newGame = new JButton("New Game");

       exit = new JButton("Exit Game");

       enter = new JButton("Enter");

       guess = new JTextField(4);

       initialTextLabel = new JLabel("I'm thinking of a number between 1 and 100. Guess it!");

       enterLabel = new JLabel("Enter your guess.");

       userMessageLabel = new JLabel("");

       randNum = new Random().nextInt(100) + 1;

       setLayout(new FlowLayout());

       add(initialTextLabel);

       add(enterLabel);

       add(guess);

       add(newGame);

       add(enter);

       add(exit);

       add(userMessageLabel);

   

       setSize(500, 300);

       addWindowListener(new WindowAdapter()

       {

           public void windowClosing(WindowEvent e)

           {

               System.exit(0);

           }

       });

       newGameButtonHandler nghandler = new newGameButtonHandler();

       newGame.addActionListener(nghandler);

       ExitButtonHandler exithandler = new ExitButtonHandler();

       exit.addActionListener(exithandler);

       enterButtonHandler enterhandler = new enterButtonHandler();

       enter.addActionListener(enterhandler);

   }

   class newGameButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           setBackground(Color.ORANGE);

           guess.setEnabled(true);

           guess.setText("");

           enter.setEnabled(true);

           maxtries = 0;

           userMessageLabel.setText("");

           randNum = new Random().nextInt(100) + 1;

       }

   }

   class ExitButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           System.exit(0);

       }

   }

   class enterButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           userInput = Integer.parseInt(guess.getText());

           checkGuess(randNum);

      if(userInput > 100 )

          {

                               userMessageLabel.setText("invalid entry");

          }

       }

   }

   public void checkGuess(int randomNumber)

   {

       maxtries++;

     if(maxtries==10){

           userMessageLabel.setText("You Lose!!");

           guess.setEnabled(false);

           enter.setEnabled(false);

         

       }else if (userInput == randomNumber)

           {

               userMessageLabel.setText("Correct !");

           }

       else if (userInput > randomNumber)

           {

               userMessageLabel.setText("Too high");

           }

       else if (userInput < randomNumber)

           {

               userMessageLabel.setText("Too Low");

           }

   }

   public static void main(String[] args)

   {

       Guess game = new Guess();

       game.setVisible(true);

   }

}

8 0
3 years ago
Suppose the following two events occur at the same time: the Chicago Cubs win the World Series, and the workers who make Cubs me
Annette [7]

Answer:

the answer would be decrease decrease

3 0
3 years ago
Other questions:
  • Which of the following is not a primary or fundamental dimension? (a)-mass m (b)-length L (c)- timer t (d)-volume V
    5·1 answer
  • A 100 kmol/h stream that is 97 mole% carbon tetrachloride (CCL) and 3% carbon disulfide (CS2) is to be recovered from the bottom
    7·1 answer
  • Suppose you were a heating engineer and you wished to consider a house as a dynamic system. Without a heater, the average temper
    6·1 answer
  • Consider five wireless stations A,B,C,D,E. Station
    5·2 answers
  • A small distiller evaporates 10 L of water per half hour. Alloy tubing exposed to the air serves a condenser to recover steam. T
    14·1 answer
  • Which of the following units of measurement is denoted by a single apostrophe mark (')?
    6·1 answer
  • What is one of the most common ways in which workers get hurt around machines?
    14·1 answer
  • What is the law of physics<br><br><br> 10 points if you tell me the answer and your name
    8·1 answer
  • When cutting a FBD through an axial member, assume that the internal force is tension and draw the force arrow _______ the cut s
    11·1 answer
  • which of the following processes would be appropriate for cutting a narrow slot, less than 0.015 inch wide, in a 3/8- inch thick
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!