summaryrefslogtreecommitdiff
path: root/3557/CH10/EX10.6
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3557/CH10/EX10.6
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3557/CH10/EX10.6')
-rw-r--r--3557/CH10/EX10.6/Ex10_6.sce15
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) ")