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
goblinko [34]
3 years ago
8

For a steel alloy it has been determined that a carburizing heat treatment of 11.3 h duration will raise the carbon concentratio

n to 0.44 wt% at a point 1.8 mm from the surface. Estimate the time necessary to achieve the same concentration at a 4.9 mm position for an identical steel and at the same carburizing temperature.
Engineering
1 answer:
diamong [38]3 years ago
8 0

This question is incomplete, the complete question is;

For a steel alloy it has been determined that a carburizing heat treatment of 11.3 h duration at Temperature T1 will raise the carbon concentration to 0.44 wt% at a point 1.8 mm from the surface. A separate experiment is performed at T2 that doubles the diffusion coefficient for carbon in steel.

Estimate the time necessary to achieve the same concentration at a 4.9 mm position for an identical steel and at the same carburizing temperature T2.

Answer:

the required time to achieve the same concentration at a 4.9 is 83.733 hrs

Explanation:

Given the data in the question;

treatment time t₁ = 11.3 hours

Carbon concentration = 0.444 wt%

thickness at surface x₁ = 1.8 mm = 0.0018 m

thickness at identical steel x₂ = 4.9 mm = 0.0049 m

Now, Using Fick's second law inform of diffusion

x^2 / Dt = constant

where D is constant

then

x^2 / t = constant

x^2_1 / t₁ = x^2_2 / t₂

x^2_1 t₂ = t₁x^2_2

t₂ = t₁x^2_2 / x^2_1

t₂ = (x^2_2 / x^2_1)t₁

t₂ = ( x_2 / x_1 )^2 × t₁

so we substitute

t₂ = ( 0.0049  / 0.0018  )^2 × 11.3 hrs

t₂ = 7.41 × 11.3 hrs

t₂ = 83.733 hrs

Therefore, the required time to achieve the same concentration at a 4.9 is 83.733 hrs

You might be interested in
W10L1-Show It: Pythagorean Theorem<br> Calculate the total material in the picture.<br> 4<br> 3
Fantom [35]

Answer:

35

Explanation: I really dont even know, I just used up all my tries on it and got it wrong on every other thing i chose. So it's 35 i believe cause its the only answer i didnt choose.

7 0
3 years ago
What are the elements of parallel computing
liraira [26]

Elements of Parallel Computing:-

Computer systems organization. Dependable and fault-tolerant systems and networks.

Computing methodologies. Parallel computing methodologies. ...

General and reference. Cross-computing tools and techniques. ...

Networks. Network performance evaluation.

Software and its engineering. ...

Theory of computation.

4 0
2 years ago
Read 2 more answers
All rear seats in hatchback vehicle models fold down in a "split"
Goryan [66]

Answer:

ueusjw9wjqijwdnfuifjrkwjfnd

4 0
2 years ago
A four-cylinder four-stroke engine is modelled using the cold air standard Otto cycle (two engine revolutions per cycle). Given
suter [353]

Answer:

56.47%

Explanation:

Determine the efficiency of the Engine

Given data :  T1 (k) = 325, P1 (kpa) = 185,

V1 (cm^3) = 410 , r = 8, T3(k) = 3420

speed ( RPM) = 4800

USING THIS FORMULA

efficiency ( <em>n </em>) = 1 - (\frac{1}{(rp)^{r-1} })

= 1 -  (\frac{1}{(8)^{r-1} }) = 1 - (1/8^1.4-1 )

= 0.5647 = 56.47%

8 0
3 years ago
Your assignment is to write a menu driven program. The menu will be responded to using a switch statement. The menu options (cas
lord [1]

Answer:

Explanation:

import java.util.Scanner;

public class Menu {

  public static void main(String[] args) {

      /*

      * Creating an Scanner class object which is used to get the inputs

      * entered by the user

      */

      Scanner sc = new Scanner(System.in);

      int choice;

do

{

  System.out.println("\n::MENU::");

      System.out.println("1.Echo Name");

      System.out.println("2.Double Your Age");

      System.out.println("3.Check Teenager or not");

      System.out.println("4.Display Triangle");

      System.out.println("5.Exit");

      System.out.print("Enter Choice:");

      choice = sc.nextInt();

      switch (choice) {

      case 1: {

          System.out.print("Enter your name");

          String name=sc.nextLine();

          for(int i=1;i<=20;i++)

          {

              System.out.println(name);

          }

          break;

      }

      case 2: {

          int age;

          System.out.print("Enter age :");

          age=sc.nextInt();

          System.out.println("Your age :"+age);

          System.out.println("Doubled age :"+(2*age));

         

         

         

          break;

      }

      case 3: {

          int age;

          System.out.print("Enter age :");

          age=sc.nextInt();

         

          if(age>=13 && age<=19)

          {

              System.out.println("Since you are "+age+" years old.Your are a Teenager");

          }

          else

          {

              System.out.println("Since you are "+age+" years old.Your are not a Teenager");

          }

          break;

      }

      case 4: {

          int rows;

          do

          {

          System.out.print("Enter a number (between 3 and 50):");

          rows=sc.nextInt();

          if(rows<3 || rows>50)

          {

              System.out.println("** Invalid.Must be between 3 and 50 **");

          }

          }while(rows<3 || rows>50);

          printTriangle(rows);

          break;

      }

      case 5:{

          break;

      }

      default: {

          System.out.println("** Invalid Choice **");

          break;

      }

      }  

}while(choice!=5);

     

  }

  private static void printTriangle(int size) {

      char ch='*';

      for (int a = 0; a < 2 * size - 1; a++) {

          if (a % 2 == 0) {

              for (int b = 0; b < (2 * size - 1) - a; b++) {

                  System.out.print(" ");

              }

              for (int c = 0; c <= a; c++) {

                  System.out.print(ch+" ");

              }

              System.out.println();

          }

      }

     

  }

}

___________________________

Output:

::MENU::

1.Echo Name

2.Double Your Age

3.Check Teenager or not

4.Display Triangle

5.Exit

Enter Choice:1

Enter your name: Mirian

Mirian

Mirian

Mirian

Mirian

Mirian

Mirian

Mirian

Mirian

Mirian

Mirian

Mirian

Mirian

Mirian

Mirian

Mirian

Mirian

Mirian

Mirian

Mirian

Mirian

::MENU::

1.Echo Name

2.Double Your Age

3.Check Teenager or not

4.Display Triangle

5.Exit

Enter Choice:2

Enter age :23

Your age :23

Doubled age :46

::MENU::

1.Echo Name

2.Double Your Age

3.Check Teenager or not

4.Display Triangle

5.Exit

Enter Choice:3

Enter age :16

Since you are 16 years old.Your are a Teenager

::MENU::

1.Echo Name

2.Double Your Age

3.Check Teenager or not

4.Display Triangle

5.Exit

Enter Choice:4

Enter a number (between 3 and 50):6

*

* * *

* * * * *

* * * * * * *

* * * * * * * * *

* * * * * * * * * * *

::MENU::

1.Echo Name

2.Double Your Age

3.Check Teenager or not

4.Display Triangle

5.Exit

Enter Choice:5

3 0
3 years ago
Other questions:
  • Which pendulum will.mobe faster​
    13·1 answer
  • A 2-m3 rigid tank initially contains air at 100 kPa and 22°C. The tank is connected to a supply line through a valve. Air is flo
    14·1 answer
  • 2 Consider airflow over a plate surface maintained at a temperature of 220°C. The temperature profile of the airflow is given as
    13·1 answer
  • If a pendulum takes 2 sec to swing in each direction, find the period and the frequency of the swing
    15·1 answer
  • What does it mean when it says technology is A dynamic process
    7·1 answer
  • What is a Planck Distribution and how is it used to solve for black body radiation problems?
    12·1 answer
  • Please write the command(s) you should use to achieve the following tasks in GDB. 1. Show the value of variable "test" in hex fo
    5·1 answer
  • In sleep, what does REM stand for?
    10·1 answer
  • What building codes did Mega Corporation fail to follow?
    9·1 answer
  • How many and what type of<br> receptacles are connected to<br> this circuit?
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!