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
Ulleksa [173]
3 years ago
9

You are evaluating the lifetime of a turbine blade. The blade is 4 cm long and there is a gap of 0.16 cm between the tip of the

blade and the turbine housing. Given that the blade cannot hit the housing, determine the time to failure of the blade considering the following information.1)The stress on the blade is 100 MPa.2)The yield strength of the blade is 175 MPa3)The Young’s modulus for the blade is 50 GPa4)The strain contributed by the primary creep regime (not including the initial elastic strain) was 0.25 % or 0.0025 strain, and this strain was realized in the first 4 hours.5)The temperature of the blade is 800°C.6)The formula for the creep rate in the steady-state regime is dε /dt = 1 x 10-5 σ4 exp (-2 eV/kT)where: dε /dt is in cm/cm-hr σ is in MPa T is in Kelvink = 8.62 x 10-5 eV/K
Engineering
1 answer:
Tcecarenko [31]3 years ago
3 0

Answer:

Explanation:

Given conditions

1)The stress on the blade is 100 MPa

2)The yield strength of the blade is 175 MPa

3)The Young’s modulus for the blade is 50 GPa

4)The strain contributed by the primary creep regime (not including the initial elastic strain) was 0.25 % or 0.0025 strain, and this strain was realized in the first 4 hours.

5)The temperature of the blade is 800°C.

6)The formula for the creep rate in the steady-state regime is dε /dt = 1 x 10-5 σ4 exp (-2 eV/kT)

where: dε /dt is in cm/cm-hr σ is in MPa T is in Kelvink = 8.62 x 10-5 eV/K

Young Modulus, E = Stress, \sigma /Strain, ∈

initial Strain, \epsilon_i = \frac{\sigma}{E}

\epsilon_i = \frac{100\times 10^{6} Pa}{50\times 10^{9} Pa}

\epsilon_i = 0.002

creep rate in the steady state

\frac{\delta \epsilon}{\delta t} = (1 \times {10}^{-5})\sigma^4 exp^(\frac{-2eV}{kT} )

\frac{\epsilon_{initial} - \epsilon _{primary}}{t_{initial}-t_{final}} = 1 \times 10^{-5}(100)^{4}exp(\frac{-2eV}{8.62\times10^{-5}(\frac{eV}{K} )(800+273)K} )

but Tinitial = 0

\epsilon_{initial} - \epsilon _{primary}} = 0.002 - 0.003 = -0.001

\frac{-0.001}{-t_{final}} = 1 \times 10^{-5}(100)^{4}\times 10^{(\frac{-2eV}{8.62\times10^{-5}(\frac{eV}{K} )1073K} )}

solving the above equation,

we get

Tfinal = 2459.82 hr

You might be interested in
A thermoelectric refrigerator is powered by a 16-V power supply that draws 2.9 A of current. If the refrigerator cools down 3.1
Viktor [21]

Answer:

COP = 0.090

Explanation:

The general formula for COP is:

COP = Desired Output/Required Input

Here,

Desired Output = Heat removed from water while cooling

Desired Output = (Specific Heat of Water)(Mass of Water)(Change in Temperature)/Time

Desired Output = [(4180 J/kg.k)(3.1 kg)(25 - 11)k]/[(12 hr)(3600 sec/hr)]

Desired Output = 4.199 W

And the required input can be given as electrical power:

Required Input = Electrical Power = (Current)(Voltage)

Required Input = (2.9 A)(16 V) = 46.4 W

Therefore:

COP = 4.199 W/46.4 W

<u>COP = 0.090</u>

8 0
3 years ago
Can u say what’s this
tatuchka [14]

Answer:

particles of a solid object packed together

7 0
3 years ago
Read 2 more answers
Discuss the difference between the observed and calculated values. Is this error? If yes, what is the source?
Scrat [10]

Answer and Explanation:

In any experiment, the observed values are the actual values obtained in any experiment.

The calculated values are the values that are measured by using the observed values in a formula.

The observed values are primary values whereas the calculated values are the secondary values as calaculations are made using observed values.

Yes, if the observed values are of low accuracy.

The values should be recorded with proper care and attention in order to avoid any error.

8 0
3 years ago
Question # 3
tino4ka555 [31]

Answer:

I think it's False.

Apologies if I am wrong.

4 0
3 years ago
Read 2 more answers
g For this project you are required to perform Matrix operations (Addition, Subtraction and Multiplication). For each of the ope
Kruka [31]

Answer:

C++ code is explained below

Explanation:

#include<iostream>

using namespace std;

//Function Declarations

void add();

void sub();

void mul();

//Main Code Displays Menu And Take User Input

int main()

{

  int choice;

  cout << "\nMenu";

  cout << "\nChoice 1:addition";

  cout << "\nChoice 2:subtraction";

  cout << "\nChoice 3:multiplication";

  cout << "\nChoice 0:exit";

 

  cout << "\n\nEnter your choice: ";

 

  cin >> choice;

 

  cout << "\n";

 

  switch(choice)

  {

      case 1: add();

              break;

             

      case 2: sub();

              break;

             

      case 3: mul();

              break;

     

      case 0: cout << "Exited";

              exit(1);

     

      default: cout << "Invalid";      

  }

  main();  

}

//Addition Of Matrix

void add()

{

  int rows1,cols1,i,j,rows2,cols2;

 

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  //Taking First Matrix

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  //Printing 1st Matrix

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

  //Taking Second Matrix

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  //Displaying second Matrix

  cout << "\n";

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m2[i][j] << " ";

      cout << "\n";

  }

  //Displaying Sum of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

      cout << "\n";

      for(i=0;i<rows1;i++)

      {

          for(j=0;j<cols1;j++)

              cout << m1[i][j]+m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void sub()

{

  int rows1,cols1,i,j,k,rows2,cols2;

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

 

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

 

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

  cout << "\n";

  //Displaying Subtraction of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

      for(i=0;i<rows1;i++)

      {

          for(j=0;j<cols1;j++)

              cout << m1[i][j]-m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void mul()

{

  int rows1,cols1,i,j,k,rows2,cols2,mul[10][10];

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  cout << "\n";

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  cout << "\n";

  //Displaying Matrix 2

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m2[i][j] << " ";

      cout << "\n";

  }

     

  if(cols1!=rows2)

      cout << "operation is not supported";

  else

  {

      //Initializing results as 0

      for(i = 0; i < rows1; ++i)

  for(j = 0; j < cols2; ++j)

  mul[i][j]=0;

// Multiplying matrix m1 and m2 and storing in array mul.

  for(i = 0; i < rows1; i++)

  for(j = 0; j < cols2; j++)

  for(k = 0; k < cols1; k++)

  mul[i][j] += m1[i][k] * m2[k][j];

// Displaying the result.

  cout << "\n";

  for(i = 0; i < rows1; ++i)

      for(j = 0; j < cols2; ++j)

      {

      cout << " " << mul[i][j];

      if(j == cols2-1)

      cout << endl;

      }

      }  

  main();

 }

5 0
3 years ago
Other questions:
  • Name two types of Transformers.
    6·1 answer
  • A flocculation basin equipped with revolving paddles is 60 ft long (the direction of flow). 45 ft wide, and 14 ft deep and treat
    11·1 answer
  • What is the difference between tension and compression?
    9·1 answer
  • Which element of Miranda's character is best illustrated by this excerpt?
    15·1 answer
  • You are preparing to work with Chemical A. You open the appropriate storage cabinet, and notice Chemical B, as well as Chemical
    9·1 answer
  • Various factors to be considered in deciding the factor of safety?
    14·1 answer
  • Technician A states that air tools generally produce more noise than electric tools, so wear ear protection when using air tools
    8·1 answer
  • Need help coding this i’m using python.
    11·1 answer
  • Why is communication one of the most important aspects of an engineer's job?
    12·1 answer
  • The most important reason to wear your seat belt is to protect you from:
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!