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
11111nata11111 [884]
3 years ago
13

A cylindrical specimen of some metal alloy having an elastic modulus of 108 GPa and an original cross-sectional diameter of 4.5

mm will experience only elastic deformation when a tensile load of 2170 N is applied. Calculate the maximum length of the specimen before deformation if the maximum allowable elongation is 0.45 mm.
Engineering
1 answer:
IgorC [24]3 years ago
4 0

Answer:

The maximum length of the specimen before the deformation was 358 mm or 0.358 m.

Explanation:

The specific deformation ε for the material is:

\epsilon = \deltaL /L (1)

Where δL and L represent the elongation and initial length respectively. From the HOOK's law we also now that for a linear deformation, the deformation and the normal stress applied relation can be written as:

\sigma = E/ \epsilon (2)

Where E represents the elasticity modulus. By combining equations (1) and (2) in the following form:

L= \delta L/ \epsilon

\epsilon =\sigma /E  

So by calculating ε then will be possible to find L. The normal stress σ is computing with the applied force F and the cross-sectional area A:

\sigma=F/A

\sigma=\frac{F} {\pi*d^2/4}

\sigma=\frac{2170 N}{\pi*4.5 mm^2/4}

\sigma= 136000000 Pa= 136 Mpa  

Then de specific defotmation:

\epsilon =136 MPa / 108 GPa = 1.26*10^{-3}

Finally the maximum specimen lenght for a elongation 0f 0.45 mm is:

L= 0.45 mm/ 1.26*10^{-3} = 358 mm = 0.358 m

You might be interested in
A car accelerates from rest with an acceleration of 5 m/s^2. The acceleration decreases linearly with time to zero in 15 s, afte
Tpy6a [65]

Answer: At time 18.33 seconds it will have moved 500 meters.

Explanation:

Since the acceleration of the car is a linear function of time it can be written as a function of time as

a(t)=5(1-\frac{t}{15})

a=\frac{d^{2}x}{dt^{2}}\\\\\therefore \frac{d^{2}x}{dt^{2}}=5(1-\frac{t}{15})

Integrating both sides we get

\int \frac{d^{2}x}{dt^{2}}dt=\int 5(1-\frac{t}{15})dt\\\\\frac{dx}{dt}=v=5t-\frac{5t^{2}}{30}+c

Now since car starts from rest thus at time t = 0 ; v=0 thus c=0

again integrating with respect to time we get

\int \frac{dx}{dt}dt=\int (5t-\frac{5t^{2}}{30})dt\\\\x(t)=\frac{5t^{2}}{2}-\frac{5t^{3}}{90}+D

Now let us assume that car starts from origin thus D=0

thus in the first 15 seconds it covers a distance of

x(15)=2.5\times 15^{2}-\farc{15^{3}}{18}=375m

Thus the remaining 125 meters will be covered with a constant speed of

v(15)=5\times 15-\frac{15^{2}}{6}=37.5m/s

in time equalling t_{2}=\frac{125}{37.5}=3.33seconds

Thus the total time it requires equals 15+3.33 seconds

t=18.33 seconds

3 0
2 years ago
A Pitot-static probe is used to measure the speed of an aircraft flying at 3000 m. If the differential pressure reading is 3200
coldgirl [10]

Answer:

Speed of aircraft ; (V_1) = 83.9 m/s

Explanation:

The height at which aircraft is flying = 3000 m

The differential pressure = 3200 N/m²

From the table i attached, the density of air at 3000 m altitude is; ρ = 0.909 kg/m3

Now, we will solve this question under the assumption that the air flow is steady, incompressible and irrotational with negligible frictional and wind effects.

Thus, let's apply the Bernoulli equation :

P1/ρg + (V_1)²/2g + z1 = P2/ρg + (V_2)²/2g + z2

Now, neglecting head difference due to high altitude i.e ( z1=z2 ) and V2 =0 at stagnation point.

We'll obtain ;

P1/ρg + (V_1)²/2g = P2/ρg

Let's make V_1 the subject;

(V_1)² = 2(P1 - P2)/ρ

(V_1) = √(2(P1 - P2)/ρ)

P1 - P2 is the differential pressure and has a value of 3200 N/m² from the question

Thus,

(V_1) = √(2 x 3200)/0.909)

(V_1) = 83.9 m/s

4 0
3 years ago
Tech a says that the weight of the flywheel smoothest out the engines power pulses. Tech B says that the flexplate and torque co
lakkis [162]

Answer:

both statement is correct

Explanation:

Flywheel engine uses to reduce fluctuations.

And                                                                

FlexPlate is a metal disk that connects the output from the engine to the input of the torque converter. This will replace the flywheel

so that both statement is correct

4 0
3 years ago
Show 2 reasons each on how Netflix shows a humane design and an addictive design.
larisa86 [58]

Answer:

Explanation:

1. It is a humane design because of the way it provides people entertainment as well as healing in some situations. Netflix provides entertainment mainly towards realistic situations which also points out the humane design.

2. It is an addictive design because even though the pros of being helpful to certain people it can also be addicting to the mind especially since it is a design where there endless amount of shows you can watch over and over again which that type of action can lead to addiction.

6 0
3 years ago
Same rule: If both players spend the same number of coins, player 2 gains 1 coin. Off-by-one rule: If the players do not spend t
Galina-37 [17]

Answer:

Check the explanation

Explanation:

1 -

public int getPlayer2Move(int round)

{

  int result = 0;

 

  //If round is divided by 3

  if(round%3 == 0) {

      result= 3;

  }

  //if round is not divided by 3 and is divided by 2

  else if(round%3 != 0 && round%2 == 0) {

      result = 2;

  }

  //if round is not divided by 3 or 2

  else {

      result = 1;

  }

 

  return result;

}

2-

public void playGame()

{

 

  //Initializing player 1 coins

  int player1Coins = startingCoins;

 

  //Initializing player 2 coins

  int player2Coins = startingCoins;

 

 

  for ( int round = 1 ; round <= maxRounds ; round++) {

     

      //if the player 1 or player 2 coins are less than 3

      if(player1Coins < 3 || player2Coins < 3) {

          break;

      }

     

      //The number of coins player 1 spends

      int player1Spends = getPlayer1Move();

     

      //The number of coins player 2 spends

      int player2Spends = getPlayer2Move(round);

     

      //Remaining coins of player 1

      player1Coins -= player1Spends;

     

      //Remaining coins of player 2

      player2Coins -= player2Spends;

     

      //If player 2 spends the same number of coins as player 2 spends

      if ( player1Spends == player2Spends) {

          player2Coins += 1;

          continue;

      }

     

      //positive difference between the number of coins spent by the two players

      int difference = Math.abs(player1Spends - player2Spends) ;

     

      //if difference is 1

      if( difference == 1) {

          player2Coins += 1;

          continue;

      }

     

      //If difference is 2

      if(difference == 2) {

          player1Coins += 2;

          continue;

      }

     

     

  }

 

  // At the end of the game

  //If player 1 coins is equal to player two coins

  if(player1Coins == player2Coins) {

      System.out.println("tie game");

  }

  //If player 1 coins are greater than player 2 coins

  else if(player1Coins > player2Coins) {

      System.out.println("player 1 wins");

  }

  //If player 2 coins is grater than player 2 coins

  else if(player1Coins < player2Coins) {

      System.out.println("player 2 wins");

  }

}

3 0
3 years ago
Other questions:
  • What type of companies would employ in mechanics engineering​
    8·1 answer
  • Answer the following questions, and very briefly explain your answer:
    5·1 answer
  • Due at 11:59pm please help
    14·1 answer
  • 1. A glass window of width W = 1 m and height H = 2 m is 5 mm thick and has a thermal conductivity of kg = 1.4 W/m*K. If the inn
    8·1 answer
  • What instrument is used to measure temperature?
    10·1 answer
  • How do I calculate the gear ratio​
    6·1 answer
  • A nozzle receives an ideal gas flow with a velocity of 25 m/s, and the exit at 100 kPa, 300 K velocity is 250 m/s. Determine the
    14·1 answer
  • 7. The binary addition 1 + 1 + 1 gives ​
    12·2 answers
  • Help me is it a b c or d?
    14·1 answer
  • A person has driven a car 180 m in 40 seconds. What is the car’s speed?
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!