diff options
Diffstat (limited to '3557/CH10/EX10.6/Ex10_6.sce')
-rw-r--r-- | 3557/CH10/EX10.6/Ex10_6.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3557/CH10/EX10.6/Ex10_6.sce b/3557/CH10/EX10.6/Ex10_6.sce new file mode 100644 index 000000000..64e0d6833 --- /dev/null +++ b/3557/CH10/EX10.6/Ex10_6.sce @@ -0,0 +1,15 @@ +//Example 10.6//
+
+//Jominy end squench test on this alloy produces a hardness of Rockwell C45 at 22/16 in from the quenched end which is equal
+a=22;//in
+b=16;//in
+c=25.4;//mm/in
+Dqe=(a/b)*c
+mprintf("Dqe = %i mm",Dqe)
+
+x=[0 2 4 6 8 10 15 20 25 30 40 50];
+y=[600 300 150 70 50 20 15 10 6 5 3 2];
+plot2d(x,y, style=1);
+xlabel("Distance from quenched end ,Dqe (Jominy distance)", "fontsize", 3)
+ylabel("Cooling rate at 700 degree C C/sec ", "fontsize", 3)
+mprintf("\nFrom the figure which applies to carbon and low-alloy steels,we see that the cooling rate was approximately \n 4 degree C/s (at 700 degree C) ")
|