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
weeeeeb [17]
2 years ago
13

Practice Problem: True Stress and Strain A cylindrical specimen of a metal alloy 49.9 mm long and 9.72 mm in diameter is stresse

d in tension. A true stress of 376 MPa causes the specimen to plastically elongate to a length of 53.5 mm. If it is known that the strain-hardening exponent for this alloy is 0.1, calculate the true stress (in MPa) necessary to plastically elongate a specimen of this same material from a length of 49.9 mm to a length of 58.2 mm.
Engineering
1 answer:
Valentin [98]2 years ago
5 0

Answer:

The true stress required = 407 MPa

Explanation:

True Stress is the ratio of the internal resistive force to the instantaneous cross-sectional area of the specimen. True Strain is the natural log to the extended length after which load applied to the original length. The cold working stress – strain curve relation is as follows,

σ(t) = K (ε(t))ⁿ, σ(t) is the true stress, ε(t) is the true strain, K is the strength coefficient and n is the strain hardening exponent

True strain is given  by

Epsilon t =㏑ (l/l₀)

Substitute㏑(l/l₀) for ε(t)

σ(t) = K(㏑(l/l₀))ⁿ

Given values l₀ = 49.9mm, l =53.5mm , n =0.1 , σ(t) =376Mpa

376 x 10⁶ = K (㏑(53.5/49.9))^0.1

K = 376 x 10⁶/(㏑(53.5/49.9))^0.1

K = 490.78 MPa

Knowing the constant value would be same as the same material is being used in the second test, we can find out the true stress using the above formula replacing the value of the constant.

σ(t) = K(㏑(l/l₀))ⁿ

l₀ = 49.9mm, l = 58.2mm, n = 0.1, K = 490.78Mpa

σ(t) = 490.78 x 10⁶ x (㏑(58.2/49.9))^0.1

σ(t) = 407 MPa

The true stress necessary to plastically elongate the specimen is 407 MPa.

You might be interested in
Almost all collisions are due to driver error
blondinia [14]

Answer:

Where's the questaion?

4 0
1 year ago
Which of the following is a common use for commas?
andreyandreev [35.5K]

Answer:

connecting two independent clauses

4 0
3 years ago
Read 2 more answers
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
Prompt the user to input an integer, a double, a character, and a string, storing each into separate variables. Then, output tho
Likurg_2 [28]

Answer:

See explanation

Explanation:

//Include the

//required header files.

#include <stdio.h>

//Define the

//main() function.

int main(void) {

//Declare the

//required variables.

char input_char;

int input_int;

double input_double;

char input_string[100];

//Prompt the user

//to enter an integer.

printf("Enter integer: ");

//Read and store

//the integer.

scanf("%d", &input_int);

//Prompt the user

//to enter a double value.

printf("Enter double: ");

//Read and store

//the double value.

scanf("%lf", &input_double);

//Prompt the user

//to enter a character.

printf("Enter character: ");

//Read and store

//the character.

scanf(" %c", &input_char);

//Prompt user to

//enter the string

printf("Enter string: ");

//Read and

//store the string.

scanf("%s", input_string);

//(1)

//Display the values.

printf("%d %lf %c %s\n",

input_int, input_double,

input_char, input_string);

//(2)

//Display the values

//in reverse order.

printf("%s %c %lf %d\n",

input_string, input_char,

input_double, input_int);

//(3)

//Cast the double to

//an integer and display it.

printf("%lf cast to an integer is %d",

input_double, (int)(input_double));

//Return from the

//main() function.

return 0;

}

4 0
3 years ago
A 650-kN column load is supported on a 1.5 m square, 0.5 m deep spread footing. The soil below is a well-graded, normally consol
insens350 [35]

<u>Explanation:</u>

Determine the weight of footing

W_{f}=\gamma(L)(B)(D)

Where W_{f} is the weight of footing, γ is the unit weight of concrete,  L is the length of footing is the width of footing, and D is the depth of footing

Substitute 2 m \text { for } L, 1.5 m \text { for } B, 0.5 m \text { for } D \text { and } 23.6 kN / m ^{3} for γ in the equation

\begin{aligned}W_{f} &=\left(23.6 kN / m ^{3}\right)(2 m )(1.5 m )(0.5 m ) \\&=35.4 kN\end{aligned}

Therefore, the weight of the footing is 35.4 kN

Determine the initial vertical effective stress.

\sigma_{z p}^{\prime}=\gamma(D+B)-u

Here,   \sigma_{z^{p}}^{\prime} is initial vertical stress at a depth below ground surface  γ is the unit weight of soil, D is depth and u is pore water pressure.

Substitute 18 kN / m ^{3} \text { for } \gamma, 1.5 m \text { for } B, 0.5 m \text { for } D \text { and } 0 for u in the equation

\begin{aligned}\sigma_{z p}^{\prime} &=\left(18 kN / m ^{3}\right)(1.5+0.5) m -0 \\&=36 kPa\end{aligned}

Therefore, the initial vertical stress is 36 kPa

Determine the vertical effective stress.

\sigma_{z D}^{\prime}=\gamma D

Here,   \sigma_{z^{p}}^{\prime} is initial vertical stress at a depth below ground surface  γ is the unit weight of soil, D is depth and u is pore water pressure.

Substitute \(18 kN / m ^{3}\) for \(\gamma, 0.5 m\) for \(D\) and 0 for \(u\) in the equation.

\begin{aligned}\sigma_{z b}^{\prime} &=\left(18 kN / m ^{3}\right)(0.5 m )-0 \\&=9 kPa\end{aligned}

Therefore, the vertical stress at a depth below the ground surface is

9 kPa

Determine the influence factor at the midpoint of soil layer,

I_{e p}=0.5+0.1 \sqrt{\frac{q-\sigma_{s 0}^{\prime}}{\sigma_{z p}^{\prime}}}

Here I_{e p} is the influence factor at the midpoint of soil layer  \sigma_{z^{p}}^{\prime} is initial vertical stress, \sigma_{z^{p}}^{\prime} is vertical effective stress, and Q is bearing pressure

Substitute 36 kPa for \(\sigma_{z p}^{\prime}, 228.47\) kPa for \(q,\) and 9 kPa for \(\sigma_{z D}^{\prime}\) in the equation\begin{aligned}I_{\epsilon P} &=0.5+0.1 \sqrt{\frac{228.47 kPa -9 kPa }{36 kPa }} \\&=0.75\end{aligned}

Therefore the influence factor at the midpoint of the soil layer is 0.693

6 0
3 years ago
Other questions:
  • Suppose that a wireless link layer using a CSMA-like protocol backs off 1ms on average. A packet’s link and physical layer heade
    5·1 answer
  • Two hemispherical shells of inner diameter 1m are joined together with 12 equally spaced bolts. If the interior pressure is rais
    15·1 answer
  • 8.2.1: Function pass by reference: Transforming coordinates. Define a function CoordTransform() that transforms the function's f
    8·1 answer
  • A 0.9% solution of NaCl is considered isotonic to mammalian cells. what molar concentration is this?
    10·1 answer
  • Technician A states that a brake lathe is used to make a used brake rotor surface "like new". Technician B states that a brake l
    7·1 answer
  • Help me asap I rely need help u will be my fav​
    8·2 answers
  • Estimate (a) the maximum, and (b) the minimum thermal conductivity values (in W/m-K) for a cermet that contains 76 vol% carbide
    9·1 answer
  • 100 POINTS! do sweedish people have yogurt do u think they have had yogurt and chimichangas do they have those
    11·1 answer
  • What type of engineer works to create a practical and safe energy source?
    9·1 answer
  • Were women treated as equals to men in early aviation history?
    14·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!