Interpretation:
The carbon content at 0.01 cm, 0.05 cm and 0.10 cm length surface after 1 hour needs to be calculated, if a carburizing process is formed on a 0.10 % C steel with 1.0 % C at 9800Cand if the iron is FCC.
Concept introduction:
Fick's second law equation based on boundary condition is given by the following relation:
Here,
Cs = constant concentration of diffusion atom
Cx = diffusion concentration atom at location x
Co = initial concentration of diffusion atom
T = time
D = diffusion coefficient
Also, diffusion coefficient according to Arrhenius type equation is given as follows:
Here,
D = diffusion coefficient
Do = constant
Q = activation energy
R = gas constant
T = absolute temperature
Trending nowThis is a popular solution!
Chapter 5 Solutions
Essentials of Materials Science and Engineering, SI Edition
- A metal plate of thickness 200 mm with thermal diffusivity 5.6 x10-6 m²/s and thermal conductivity 20 W/mK is initially at a uniform temperature of 325°C. Suddenly, the 2 sides of the plate are exposed to a coolant at 15°C for which the convection heat transfer coefficient is 100 W/m²K. Determine temperatures at the surface of the plate after 3 min using (a) Lumped system analysis (b) Analytical one term approximation (c) One dimensional Semi infinite solid Analyze and discuss the resultsarrow_forwardProblem 3 This problem maps back to learning objectives 1-4 & 8. Consider the particle attached to a spring shown below. The particle has a mass m and the spring has a spring constant k. The mass-spring system makes an angle of 0 with respect to the vertical and the distance between point 0 and the particle can be defined as r. The spring is unstretched when r = l. Ꮎ g m a) How many degrees of freedom is this system and what are they? b) Derive the equation(s) of motion that govern the movement of this system.arrow_forwardChapter 12 - Lecture Notes.pptx: (MAE 272-01) (SP25) DY... Scores ■Review Determine the maximum constant speed at which the pilot can travel, so that he experiences a maximum acceleration an = 8g = 78.5 m/s². Express your answer to three significant figures and include the appropriate units. μΑ v = Value Units Submit Request Answer Part B ? Determine the normal force he exerts on the seat of the airplane when the plane is traveling at this speed and is at its lowest point. Express your answer to three significant figures and include the appropriate units. о HÅ N = Value Submit Request Answer Provide Feedback ? Units Next >arrow_forward
- I want to know the Milankovich orbital element constraint equation. Is it e*cos(i) = cos(argp), where e is eccentricity, i is inclination, and argp is arguement of periapsisarrow_forwardWhentheuserenters!!,themostrecentcommandinthehistoryisexecuted.In the example above, if the user entered the command: Osh> !! The ‘ls -l’ command should be executed and echoed on user’s screen. The command should also be placed in the history buffer as the next command. Whentheuserentersasingle!followedbyanintegerN,theNthcommandin the history is executed. In the example above, if the user entered the command: Osh> ! 3 The ‘ps’ command should be executed and echoed on the user’s screen. The command should also be placed in the history buffer as the next command. Error handling: The program should also manage basic error handling. For example, if there are no commands in the history, entering !! should result in a message “No commands in history.” Also, if there is no command corresponding to the number entered with the single !, the program should output "No such command in history."arrow_forwardActivity No. Activity Time (weeks) Immediate Predecessors 1 Requirements collection 3 2 Requirements structuring 4 1 3 Process analysis 3 2 4 Data analysis 3 2 5 Logical design 50 3,4 6 Physical design 5 5 7 Implementation 6 6 c. Using the information from part b, prepare a network diagram. Identify the critical path.arrow_forward
- 2. UNIX Shell and History Feature [20 points] This question consists of designing a C program to serve as a shell interface that accepts user commands and then executes each command in a separate process. A shell interface gives the user a prompt, after which the next command is entered. The example below illustrates the prompt osh> and the user's next command: cat prog.c. The UNIX/Linux cat command displays the contents of the file prog.c on the terminal using the UNIX/Linux cat command and your program needs to do the same. osh> cat prog.c The above can be achieved by running your shell interface as a parent process. Every time a command is entered, you create a child process by using fork(), which then executes the user's command using one of the system calls in the exec() family (as described in Chapter 3). A C program that provides the general operations of a command-line shell can be seen below. #include #include #define MAX LINE 80 /* The maximum length command */ { int…arrow_forwardSend me the solution to the following question based on the source and I do not want the solution from artificial intelligencearrow_forwardQuestion#2: Design and implement a Java program using Abstract Factory and Singleton design patterns. The program displays date and time in one of the following two formats: Format 1: Date: MM/DD/YYYY Time: HH:MM:SS Format 2: Date: DD-MM-YYYY Time: SS,MM,HH The following is how the program works. In the beginning, the program asks the user what display format that she wants. Then the program continuously asks the user to give one of the following commands, and performs the corresponding task. Note that the program gets the current date and time from the system clock (use the appropriate Java date and time operations for this). 'd' display current date 't': display current time 'q': quit the program. • In the program, there should be 2 product hierarchies: "DateObject” and “TimeObject”. Each hierarchy should have format and format2 described above. • Implement the factories as singletons. • Run your code and attach screenshots of the results. • Draw a UML class diagram for the program.arrow_forward
- Don't use ai to answer I will report you answerarrow_forwardThe following data were taken during a one-hour trial run on a single cylinder, single acting, four-stroke diesel engine of cylinder diameter of 175 mm and stroke 225 mm , the speed being constant at 1000 rpm : Indicated mep: 5.5 barsDiam. of rope brake: 1066 mmLoad on brake: 400 NReading of balance: 27 NFuel consumed: 5.7 kgCalorific value: 44.2 MJ/kg Calculate the indicated power, brake power, specific fuel consumption per indicated kWh and per brake kWh , mechanical efficiency, indicated thermal and brake thermal efficiency.arrow_forward#include <linux/module.h> #include <linux/kernel.h> // part 2 #include <linux/sched.h> // part 2 extra #include <linux/hash.h> #include <linux/gcd.h> #include <asm/param.h> #include <linux/jiffies.h> void print_init_PCB(void) { printk(KERN_INFO "init_task pid:%d\n", init_task.pid); printk(KERN_INFO "init_task state:%lu\n", init_task.state); printk(KERN_INFO "init_task flags:%d\n", init_task.flags); printk(KERN_INFO "init_task runtime priority:%d\n", init_task.rt_priority); printk(KERN_INFO "init_task process policy:%d\n", init_task.policy); printk(KERN_INFO "init_task task group id:%d\n", init_task.tgid); } /* This function is called when the module is loaded. */ int simple_init(void) { printk(KERN_INFO "Loading Module\n"); print_init_PCB(); printk(KERN_INFO "Golden Ration Prime = %lu\n", GOLDEN_RATIO_PRIME); printk(KERN_INFO "HZ = %d\n", HZ); printk(KERN_INFO "enter jiffies = %lu\n", jiffies); return 0; } /* This function is called when the…arrow_forward
- MATLAB: An Introduction with ApplicationsEngineeringISBN:9781119256830Author:Amos GilatPublisher:John Wiley & Sons IncEssentials Of Materials Science And EngineeringEngineeringISBN:9781337385497Author:WRIGHT, Wendelin J.Publisher:Cengage,Industrial Motor ControlEngineeringISBN:9781133691808Author:Stephen HermanPublisher:Cengage Learning
- Basics Of Engineering EconomyEngineeringISBN:9780073376356Author:Leland Blank, Anthony TarquinPublisher:MCGRAW-HILL HIGHER EDUCATIONStructural Steel Design (6th Edition)EngineeringISBN:9780134589657Author:Jack C. McCormac, Stephen F. CsernakPublisher:PEARSONFundamentals of Materials Science and Engineering...EngineeringISBN:9781119175483Author:William D. Callister Jr., David G. RethwischPublisher:WILEY