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
zhenek [66]
4 years ago
13

Suppose that a wing component on an aircraft is fabricated from an aluminum alloy that has a plane strain fracture toughness of

27 MPa (24.57 ksi). It has been determined that fracture results at a stress of 115 MPa (16680 psi) when the maximum internal crack length is 8.3 mm (0.3268 in.). For this same component and alloy, compute the stress level at which fracture will occur for a critical internal crack length of 5.9 mm (0.2323 in.).
Engineering
1 answer:
melamori03 [73]4 years ago
4 0

Answer:

The stress level = 133.5 Mpa

Explanation:

Given data;

Toughness = 27Mpa

Stress = 115 Mpa

Crack length = 8.3mm = 8.3 * 10^-3m

The stress level can be calculated using the formula,

б = \frac{ktc}{Y\sqrt{\pi a} }      ---------------------------------------------1

Where;

б = strain level

ktc = fracture toughness

a = surface length = 8.3 *10^-3/2 (Half of the cracked length)

Substituting into the formula, we have

But, we have to calculate the parameter Y before we can substitute into equation 1.

By making Y subject formula, we have;

Y = ktc/ (б√πa)

Y = 27/(115 *√(π * (8.3 *10^-3/2))

Y = 27/(115 *√0.0130)

Y = 27/(115 * 0.114)

Y = 27/13.131

Y = 2.1

Calculating the stress level, we substitute  into equation 1 as follows;

б = \frac{ktc}{Y\sqrt{\pi a} }

б = 27/ (2.1 *√(π * (5.9 * 10^-3/2))

    = 27/(2.1 *√(π * 0.00295))

    = 27/ (2.1 *√0.00927)

     = 27/(2.1 * 0.096)

     = 27/0.202

    = 133.5 Mpa

You might be interested in
When hermetic refrigerant motor-compressors are designed to operate continuously at currents greater than 156 percent of the rat
ANEK [815]

The nameplate of a hermetic refrigerant motor-compressor that is designed to operate continuously at currents greater than 156% of the rated-load current is marked with branch-circuit selection current.

<h3>What is a hermetic refrigerant motor-compressor?</h3>

A hermetic refrigerant motor-compressor can be defined as a mechanical device that is designed and developed by combining a compressor and motor in a single outer-welded steel shell.

Basically, a hermetic refrigerant motor-compressor is used in the following areas:

  • Household refrigerators
  • Freezers
  • Heat pumps
  • Air coolers
  • Water cooling equipment.
  • Small refrigeration equipment.

According to HSE, the nameplate of a hermetic refrigerant motor-compressor that is designed to operate continuously at currents greater than 156% of the rated-load current is marked with branch-circuit selection current, so as to ensure safety for end users and technicians.

Read more on refrigerants here: brainly.com/question/2928084

6 0
3 years ago
Add the following vector given in rectangular form and illustrated the process graphically A = 16+j12, B= 6+j10.4
MariettaO [177]

Answer:

A=16+j12…'B=6+j10.4

Explanation:

add the following vector given in

3 0
2 years ago
A gas turbine receives a mixture having the following molar analysis: 10% CO2, 19% H2O, 71% N2 at 720 K, 0.35 MPa and a volumetr
Sliva [168]

Answer:

2074.2 KW

Explanation:

<u>Determine power developed at steady state </u>

First step : Determine mass flow rate  ( m )

m / Mmax = ( AV )₁ P₁ / RT₁   -------------------- ( 1 )

<em> where : ( AV )₁ = 8.2 kg/s,  P₁ = 0.35 * 10^6 N/m^2,   R = 8.314 N.M / kmol , </em>

<em>  T₁  = 720 K . </em>

insert values into equation 1

m  = 0.1871  kmol/s  ( mix )

Next : calculate power developed at steady state ( using ideal gas tables to get the h values of the gases )

W( power developed at steady state )

W = m [ Yco2 ( h1 - h2 )co2

Attached below is the remaining  part of the detailed solution

4 0
3 years ago
2.4: Add a method called setValue(), and the description of setValue is: public int setValue(long searchKey) In this method, the
Yanka [14]

Answer:

Below is java code that must be used for the given question:

// highArray.java

// demonstrates array class with high-level interface

// to run this program: C>java HighArrayApp

////////////////////////////////////////////////////////////////

class HighArray

  {

  private long[] a;                 // ref to array a

  private int nElems;               // number of data items

  //-----------------------------------------------------------

  public HighArray(int max)         // constructor

     {

     a = new long[max];                 // create the array

     nElems = 0;                        // no items yet

     }

  //-----------------------------------------------------------

  public setValue find(long searchKey)

     {                              // find specified value

     int j;

     for(j=0; j<nElems; j++)            // for each element,

        if(a[j] == searchKey)           // found item?

           break;                       // exit loop before end

     if(j == nElems)                    // gone to end?

        return false;                   // yes, can't find it

     else

        return true;                    // no, found it

     }  // end find()

  //-----------------------------------------------------------

  public void insert(long value)    // put element into array

     {

     a[nElems] = value;             // insert it

     nElems++;                      // increment size

     }

  //-----------------------------------------------------------

  public void display()             // displays array contents

     {

     for(int j=0; j<nElems; j++)       // for each element,

        System.out.print(a[j] + " ");  // display it

     System.out.println("");

     }

  //-----------------------------------------------------------

  }  // end class HighArray

////////////////////////////////////////////////////////////////

class HighArrayApp

  {

  public static void main(String[] args)

     {

     int maxSize = 100;            // array size

     HighArray arr;                // reference to array

     arr = new HighArray(maxSize); // create the array

     arr.insert(77);               // insert 10 items

     arr.insert(99);

     arr.insert(44);

     arr.insert(55);

     arr.insert(22);

     arr.insert(88);

     arr.insert(11);

     arr.insert(00);

     arr.insert(66);

     arr.insert(33);

     arr.display();                // display items

     int searchKey = 35;           // search for item

     if( arr.find(searchKey) )

        System.out.println("Found " + searchKey);

     else

        System.out.println("Can't find " + searchKey);

     }  // end main()

  }  // end class HighArrayApp

Explanation:

6 0
3 years ago
What is the composition, in atom percent, of an alloy that consists of 4.5 wt% Pb and 95.5 wt% Sn?
jeka57 [31]

Answer: Option A is correct -- 2.6 at% Pb and 97.4 at% Sn.

Explanation:

Option A is the only correct option -- 2.6 at% Pb and 97.4 at% Sn. While option B, which is 7.6 at% Pb and 92.4 at% Sn. and option C, which is 97.4 at% Pb and 2.6 at% Sn. and option D, which is 92.4 at% Pb and 7.6 at% Sn. are wrong.

6 0
4 years ago
Other questions:
  • The pressure ratio of gas turbine power plant cycle, operating with air, corresponding to maximum work for a given temperature l
    14·1 answer
  • . Carly's Catering provides meals for parties and special events. In Chapter 2, you wrote an application that prompts the user f
    10·1 answer
  • The flatbed truck carries a large section of circular pipe secured only by the two fixed blocks A and B of height h. The truck i
    14·2 answers
  • Two kilograms of air in a piston-cylinder assembly undergoes an isothermal process from an initial state of 200K, 300kPa to 600k
    8·1 answer
  • 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
    13·1 answer
  • IN JAVA,
    6·1 answer
  • Your coworker was impressed with the efficiency you showed in the previous problem and would like to apply your methods to a pro
    5·1 answer
  • What are the desired characteristics or values for the following parameters of an ideal amplifier?o Phase change as a function o
    10·1 answer
  • In an apartment the interior air temperature is 20°C and exterior air temperatures is 5°C. The wall has inner and outer surface
    8·1 answer
  • Why is electricity considered a secondary source of energy
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!