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
Natasha_Volkova [10]
3 years ago
11

A silicon carbide plate fractured in bending when a blunt load was applied to the plate center. The distance between the fractur

e origin and the mirror/mist boundary on the fracture surface was 0.796 mm. To determine the stress used to break the plate, three samples of the same material were tested and produced the following. What is the estimate of the stress present at the time of fracture for the original plate?
Mirror Radius (mm) Bending Failure Stress (MPa)
.603 225
.203 368
.162 442
Engineering
1 answer:
Amanda [17]3 years ago
3 0

Question in order:

A silicon carbide plate fractures in bending when a blunt load was applied to the plate center. The distance between the fracture origin and the mirror/mist boundary on the fracture surface was 0.796 mm. To determine the stress used to break the plate, three samples of the same material were tested and produced the following. What is the estimate of the stress present at the time of fracture for the original plate?

Mirror Radius (mm) Bending Failure Stress (MPa)

0.603                         225

0.203                         368

0.162                         442

Answer:

191 MPa

Explanation:

Failure stress of bending is Inversely proportional to the mirror radius

Bending Stress = \frac{1}{(Mirror Radius)^{n}}

At mirror radius 1 = 0.603 mm   Bending stress 1 = 225 Mpa..............(1)

At mirror radius 2 = 0.203 mm  Bending stress 2 = 368 Mpa...............(2)

At mirror radius 3 = 0.162 mm   Bending stress 3 = 442 Mpa...............(3)

comparing case 1 and 2 using the above equation

\frac{Stress 1}{Stress 2} = ({\frac{Radius 2}{Radius 1}})^{n_1}

\frac{225}{368} = ({\frac{0.203}{0.603}})^{n_1}

0.6114 = (0.3366)^{n_1}

Taking the natural logarithm of both side

ln(0.6114) = n ln(0.3366)

n₁ = ln(0.6114)/ln(0.3366)

n₁ = 0.452

comparing case 2 and 3 using the above equation

\frac{Stress 2}{Stress 3} = ({\frac{Radius 3}{Radius 2}})^{n_2}

\frac{368}{442} = ({\frac{0.162}{0.203}})^{n_2}

0.8326 = (0.7980)^{n_2}

Taking the natural logarithm of both side

ln(0.8326) = n ln(0.7980)

n₂ = ln(0.8326)/ln(0.7980)

n₂ = 0.821

comparing case 1 and 3 using the above equation

\frac{Stress 1}{Stress 3} = ({\frac{Radius 3}{Radius 1}})^{n_3}

\frac{225}{442} = ({\frac{0.162}{0.603}})^{n_3}

0.5090 = (0.2687)^{n_3}

Taking the natural logarithm of both side

ln(0.5090) = n ln(0.2687)

n₃ = ln(0.5090)/ln(0.2687)

n₃ = 0.514

average for n

n = \frac{n_1 + n_2 + n_3}{3}

n = \frac{0.452 +0.821 + 0.514}{3}

n = 0.596

Hence to get bending stress x at mirror radius 0.796

\frac{Stress x}{Stress 3} = ({\frac{Radius 3}{Radius x}})^{0.596}

\frac{Stress x}{225} = ({\frac{0.603}{0.796}})^{0.596}

\frac{Stress x}{225} = 0.8475

stress x = 191 MPa

You might be interested in
Two production methods are being compared. One manual and the other automated. The manual method produces 10 pc per hour and req
Genrish500 [490]

Answer:

Check the explanation

Explanation:

Kindly check the attached image below to see the step by step explanation to the question above.

6 0
3 years ago
When a circuit has more resistance, what happens to current flow ?
zloy xaker [14]
The relationship between resistance and the area of the cross section of a wire is inversely proportional . When resistance is increased in a circuit , for example by adding more electrical components , the current decreases as a result.
6 0
3 years ago
The author states that chemical engineering is one of the most difficult and complex aspects of engineering. Why do you think th
marishachu [46]

Answer:

hope this helps

Explanation:

answers:

1. Chemical engineering is most difficult because it's a mix of physics, chemistry and math

2. Stoichiometry is so important because it shows how materials react, interact and play off each other

3. Yes I think consumers would notice if process control standards were not met. for example medicines, when people take Tylenol or cold pills, if the amount of time it took to kick it becomes longer, people will become aware that the product is not consistent and reliable.

4. i have no idea sorry :(

5. This is explaining how there are rules and regulations to make the workplace safe. it can be accomplished by following those rules and regulations

8 0
3 years ago
Read 2 more answers
Write a program that prompts the user to enter time in 12-hour notation. The program then outputs the time in 24-hour notation.
Juliette [100K]

Answer:

THE CODE FOR THE PROGRAM IS GIVEN BELOW:

#include <iostream>

#include "ConvertTimeHeader.h"

using namespace std;

int main()

{

convertTime convert;

int hr, mn, sc = 0;

 

cout << "Please input hours in 12 hr notation: ";

cin >> hr;

cout << "Please input minutes: ";

cin >> mn;

cout << "Please input seconds: ";

cin >> sc;

 

convert.invalidHr(hr);

convert.invalidMin(mn);

convert.invalidSec(sc);

convert.printMilTime();

 

system("Pause");

 

return 0;  

 

}

#include <iostream>

#include "ConvertTimeHeader.h"

using namespace std;

int convertTime::invalidHr (int hour)

{

try{

 if (hour < 13 && hour > 0)

  {hour = hour + 12;

  return hour;}

 else{

 

  cin.clear();

  cin.ignore();

  cout << "Invalid input! Please input hour again in correct 12 hour format: ";

  cin >> hour;

  invalidHr(hour);

  throw 10;

 }

   

}

catch (int c) { cout << "Invalid hour input!";}

}

int convertTime::invalidMin (int min)

{

try{

 if (min < 60 && min > 0)

  {return min;}

 else{

 

  cin.clear();

  cin.ignore();

  cout << "Invalid input! Please input minutes again in correct 12 hour format: ";

  cin >> min;

  invalidMin(min);

  throw 20;

  return 0;

 }

   

}

catch (int e) { cout << "Invalid minute input!" << endl;}

}

int convertTime::invalidSec(int sec)

{

try{

 if (sec < 60 && sec > 0)

  {return sec;}

 else{

 

  cin.clear();

  cin.ignore();

  cout << "Invalid input! Please input seconds again in correct 12 hour format: ";

  cin >> sec;

  invalidSec(sec);

  throw 30;

  return 0;

 }

   

}

catch (int t) { cout << "Invalid second input!" << endl;}

}

void convertTime::printMilTime()

{

cout << "Your time converted: " << hour << ":" << min << ":" << sec;

}

Explanation:

4 0
3 years ago
Identify the phase of the design process illustrated in the following scenario, and justify its importance. Kristin has recently
zaharov [31]

Answer:

The design process is at the verify phase of Design for Six Sigma

Explanation:

In designing for Six Sigma, DFSS, is a product or process design methodology of which the goal is the detailed identification of the customer business needs by using measurements tools such as statistical data, and incorporating the identified need into the created product which in this case is the hydraulic robot Kristin Designed

Implementation of DFSS follows a number of stages that are based on the DMAIC (Define - Measure - Analyze - Improve) projects such as the DMADV which stand for define - measure - analyze - verify

Therefore, since Kristin is currently ensuring that the robot is working correctly and meeting the needs of her client the design process is at the verify phase.

5 0
3 years ago
Other questions:
  • A rigid tank contains an ideal gas at 40°C that is being stirred by a paddle wheel. The paddle wheel does 240 kJ of work on the
    9·1 answer
  • A 12-mm-diameter cylindrical jet of water discharges vertically into the ambient air. Due to surface tension the pressure inside
    14·1 answer
  • You doubled the voltage frequency in an RL series AC circuit, the inductive resistance would?
    8·2 answers
  • Which of the following machine parts always require
    12·1 answer
  • What does an engineer do? List as many types of engineers as you can.
    9·1 answer
  • Based on the pattern, what are the next two terms of the sequence? 9,94,916,964,9256,... A. 91024,94096 B. 9260,91028 C. 9260,92
    5·1 answer
  • John has an exhaust leak in his Acura Integra GS-R, What steps would he take to fix the leak in time for his inspection?
    8·1 answer
  • What do you mean by decentralization??​
    15·2 answers
  • Two technicians are discussing a vehicle that cranks slowly when the key is turned to the crank position. The positive battery t
    10·1 answer
  • Hole filling fasteners (for example, MS20470 rivets) should not be used in composite structures primarily because of the
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!