
Interpretation:
The hardness of 1080 steel, austenite at
Concept introduction:
Material hardness is a property of the material due to which material resist the plastic deformation. Plastic deformation is a non-reversible change in the material after applying an external force. Hardness is the property of material which possess stiffness, resistance to bending, scratching or cutting. Hardness is not constant for fixed for all the material, but it depends upon strength and plasticity of metal. Material hardness is expressed in terms of Hardness number.

Want to see the full answer?
Check out a sample textbook solution
Chapter 12 Solutions
Essentials of Materials Science and Engineering, SI Edition
- Determine the smallest value of yield stress Fy, for which a W-, M-, or S-shape from the list below will become slender. bf/2tfh/tw Shape W12 × 72 8.99 22.6 W12 × 26 8.54 47.2 M4 × 6 11.9 22.0 M12 x 11.8 6.81 62.5 M6 × 4.4 5.39 47.0 S24 × 80 4.02 41.4 S10 × 35 5.03 13.4 (Express your answer to three significant figures.) Fy = ksi To which shape does this value apply? -Select- ✓arrow_forwardI need help in construct a matlab code to find the voltage, the currents, and the watts based on that circuit.arrow_forwardObjective Implement Bottom-Up Iterative MergeSort and analyze its efficiency compared to recursive MergeSort. Unlike the recursive approach, which involves multiple function calls and stack overhead, the bottom-up version sorts iteratively by merging small subarrays first, reducing recursion depth and improving performance. Task 1. Implement Bottom-Up Iterative MergeSort о Start with single-element subarrays and iteratively merge them into larger sorted sections. Use a loop-based merging process instead of recursion. ○ Implement an efficient in-place merging strategy if possible. 2. Performance Analysis Compare execution time with recursive MergeSort on random, nearly sorted, and reversed datasets. ○ Measure and plot time complexity vs. input size. O Submission Explain why the iterative version reduces function call overhead and when it performs better. • Code implementation with comments. • A short report (1-2 pages) comparing performance. • Graph of execution time vs. input size for…arrow_forward
- Given a shared data set, we allow multiple readers to read at the same time, and only one single writer can access the shared data at the same time. In the lecture slides, a solution is given. However, the problem is that the write cannot write forever, if there are always at least one reader. How to ensure that the writer can eventually write? Propose your solution by using semaphores and implemented in Python from threading import Thread, Semaphore from time import sleep from sys import stdout class Reader(Thread): def__init__(self, name): self.n=name; Thread.__init__(self) defrun(self): globalnr, nw, dr, dw whileTrue: # ⟨await nw == 0 then nr += 1⟩ e.acquire() ifnw>0: #if nw > 0 or dw > 0 : dr+=1; e.release(); r.acquire() nr+=1 ifdr>0: dr-=1; r.release() else: e.release() # read data stdout.write(self.n+' reading\n') sleep(1) # ⟨nr -= 1⟩ e.acquire() nr-=1 ifnr==0anddw>0: dw-=1 ; w.release() else: e.release() class Writer(Thread): def__init__(self, name):…arrow_forward4. Determine which of the following flow fields represent a possible incompressible flow? (a) u= x²+2y+z; v=x-2y+z;w= -2xy + y² + 2z a (b) V=U cose U coso 1 (9) [1-9] Usino |1 (4)] [+] V=-Usin 1+1arrow_forward3. Determine the flow rate through the pipe line show in the figure in ft³/s, and determine the pressures at A and C, in psi. 5' B C 12° 20' D 6"d 2nd- Water Aarrow_forward
- 5. A flow is field given by V = x²₁³+xy, and determine 3 ·y³j- (a) Whether this is a one, two- or three-dimensional flow (b) Whether it is a possible incompressible flow (c) Determine the acceleration of a fluid particle at the location (X,Y,Z)=(1,2,3) (d) Whether the flow is rotational or irrotational flow?arrow_forwardCompute the nominal shear strength of an M12 × 11.8 of A572 Grade 60 steel (Fy = 60 ksi). For M12 x 11.8: d = 12 in., tw = 0.177 in., h/tw = 62.5. Vn = kipsarrow_forwardA flexural member is fabricated from two flange plates 1/2 × 71/2 and a web plate 3/8 × 19. The yield stress of the steel is 50 ksi. a. Compute the plastic section modulus Z and the plastic moment Mp with respect to the major principal axis. (Express your answers to three significant figures.) Z = Mp = in. 3 ft-kips b. Compute the elastic section modulus S and the yield moment My with respect to the major principal axis. (Express your answers to three significant figures.) S = My = in.3 ft-kipsarrow_forward
- = 65 ksi. A W16×36 of A992 steel has two holes in each flange for 7/8-inch-diameter bolts. For A992 steel: Fy = 50 ksi, Fu For a W16×36: bƒ = 6.99 in., tƒ = 0.430 in., Z = 64.0 in.³ and Sx = 56.5 in.³ a. Assuming continuous lateral support, verify that the holes must be accounted for and determine the nominal flexural strength. (Express your answer to three significant figures.) Mn = ft-kips b. What is the percent reduction in strength? (Express your answer to three significant figures.) Reduction = %arrow_forwardSolve this problem and show all of the workarrow_forwardI need help fixing this MATLAB code: as I try to get it working there were some problems: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





