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
nydimaria [60]
3 years ago
14

A cylindrical specimen of a titanium alloy having an elastic modulus of 107 GPa (15.5 × 106 psi) and an original diameter of 3.7

mm (0.1457 in.) will experience only elastic deformation up to a tensile load of 2000 N (449.6 lbf) is applied. Compute the maximum length of the specimen before deformation if the maximum allowable elongation is 0.41 mm (0.01614 in.).
Engineering
1 answer:
Keith_Richards [23]3 years ago
5 0

Answer:

the maximum length of specimen before deformation is found to be 235.6 mm

Explanation:

First, we need to find the stress on the cylinder.

Stress = σ = P/A

where,

P = Load = 2000 N

A = Cross-sectional area = πd²/4 = π(0.0037 m)²/4

A = 1.0752 x 10^-5 m²

σ = 2000 N/1.0752 x 10^-5 m²

σ = 186 MPa

Now, we find the strain (∈):

Elastic Modulus = Stress / Strain

E = σ / ∈

∈ = σ / E

∈ = 186 x 10^6 Pa/107 x 10^9 Pa

∈ = 1.74 x 10^-3 mm/mm

Now, we find the original length.

∈ = Elongation/Original Length

Original Length = Elongation/∈

Original Length = 0.41 mm/1.74 x 10^-3

<u>Original Length = 235.6 mm</u>

You might be interested in
Which of the following can cause a flopping sound at the front of the engine
Irina-Kira [14]
B) timing chain too loose
3 0
3 years ago
While there are many ways to solve this problem, one strategy is to calculate the volume of any metal's unit cell given its theo
IgorC [24]

Answer:

V_{c}=1.396x10^{-28}  m^{3} /unit.cell

Explanation:

z = number of atoms

M = Molar mass of zirconium

N = Avogadro’s number

Vc = volume of zirconium unit cell

d = density

z=12x\frac{1}{6}+2x\frac{1}{2}+3=6

z = 6 atoms per unit cell

M = 91.224 g/mol

N = 6.023x10^{23}  atoms/mol

d = 6.51g/cm^{3}

V_{c}=\frac{zxM}{dxN}

V_{c}=\frac{6x(91.224g/mol)}{(6.51g/cm^{3}) x(6.023x10^{23}atoms/mol) }

V_{c}=1.396x10^{-22}  cm^{3} /unit.cell

V_{c}=1.396x10^{-28}  m^{3} /unit.cell

8 0
3 years ago
Define the Problem
gtnhenbr [62]

Answer:

rbrnrifnfnrfbdjrbfbfjrn

4 0
3 years ago
11. Which of these is NOT true when dealing with refrigerants?
Alexus [3.1K]
Answer is an increase in pressure will cause an decrease in the pressure
4 0
3 years ago
8.19 - Airline Reservations System (Project Name: Airline) - A small airline has just purchased a computer for its new automated
e-lub [12.9K]

Answer:

The App is written in C++ language using dev C++.

Explanation:

/******************************************************************************

You can run this program in any C++ compiler like dev C++ or any online C++ compiler

*******************************************************************************/

#include <iostream>

using namespace std;

class bookingSeat// class for airline reservation system

{

  private:

   

   

  bool reserveSeat[10];// 10 seats (1-5) for first class and 6-10 for economy class

  int firstClassCounter=0;//count first class seat

  int economyClassCounter=5;//count economy class seat

  char seatPlacement;/* switch between economy and first clas seat----- a variable for making decision based on user input*/

  public:  

  void setFirstClassSeat()//

  {

      if(firstClassCounter<5)// first class seat should be in range of 1 to 5

      {

          reserveSeat[firstClassCounter]=1; /*set first class seat..... change index value to 1 meaning that it now it is reserved*/

          cout<<"Your First Class seat is booked and your seat no is "<<firstClassCounter+1; //display seat number reserved

          firstClassCounter++; //increament counter

      }

      else//in case seats are ful

      {

          cout<<"\nSeats are full";

          if(economyClassCounter==10 && firstClassCounter==5)

          {

              cout<<"\n Next flight leaves in 3 hours.";

          }

          else

          {

              cout<<"\nIt’s acceptable to be placed to you in the first-class section  y/n ";//take input from user

              cin>>seatPlacement;//user input

              if(seatPlacement=='y')//if customer want to reserve seat in first class

              {

                  setEconomyClassSeat();// then reserve first class seat

              }

              else

              {

                  cout<<"\n Next flight leaves in 3 hours.";

               }

               

          }

      }

       

  }

  void setEconomyClassSeat()//set economy class seat

  {

    if(economyClassCounter<10)//seat ranges between 6 and 10

      {

          reserveSeat[economyClassCounter]=1;// reserve economy class seat

          cout<<"Your Economy class seat is booked and your seat no is "<<economyClassCounter+1;//display reservation message about seat

          economyClassCounter++;//increament counter

      }

      else// if economy class seats are fulled

      {

          cout<<"\nSeats are full";

          if(economyClassCounter==10 && firstClassCounter==5)//check if all seats are booked in both classes

          {

              cout<<"\n Next flight leaves in 3 hours.";

          }

          else

          {

              cout<<"\nIt’s acceptable to be placed to you in the first-class section  y/n ";//take input from user

              cin>>seatPlacement;//user input

              if(seatPlacement=='y')//if customer want to reserve seat in first class

              {

                  setFirstClassSeat();// then reserve first class seat

              }

              else

              {

                  cout<<"\n Next flight leaves in 3 hours.";

               }

               

          }

      }

  }

   

   

};

int main()

{   int checkseat=10;// check seat

   int classType;//class type economy or first class

   bookingSeat bookseat;//object declaration of class bookingSeat

   while(checkseat<=10)//run the application until seats are fulled in both classes

   {

       cout<<"\nEnter 1 for First Class and 2 for Economy Class ";

       cin>>classType;//what user entered

       switch (classType)//decide which seat class to be reserved  

       {

           case 1://if user enter 1 then reserve first class seat

           bookseat.setFirstClassSeat();

           break;

           case 2://if user enter 2 then reserve the economy class seat

           bookseat.setEconomyClassSeat();

           

       }

       

   }

   

   return 0;

}

8 0
3 years ago
Other questions:
  • An overhead 25m long, uninsulated industrial steam pipe of 100mm diameter is routed through a building whose walls and air are a
    9·1 answer
  • How I do I get nut out of sheets​
    8·2 answers
  • Why do many sources of water need treatment
    10·1 answer
  • A train which is traveling at 70 mi/hr applies its brakes as it reaches point A and slows down with a constant deceleration. Its
    12·1 answer
  • I have a question for you guys
    13·2 answers
  • Which statement describes a possible limitation on a experimental design? A. Collecting samples to analyze is expensive B. The e
    6·2 answers
  • ⚠️I mark BRIANLIST ⚠️The same engineering teams are able to design and develop the different subsystems for an airplane.
    5·2 answers
  • g A smooth pipeline with a diameter of 5 cm carries glycerin at 20 degrees Celsius. The flow rate in the pipe is 0.01 m3/s. What
    15·1 answer
  • How to do this goalookr goalookr
    5·1 answer
  • All these are returnless fuel systems EXCEPT ?
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!