summaryrefslogtreecommitdiff
path: root/1586/CH13/EX13.1/EXP13_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '1586/CH13/EX13.1/EXP13_1.sce')
-rw-r--r--1586/CH13/EX13.1/EXP13_1.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1586/CH13/EX13.1/EXP13_1.sce b/1586/CH13/EX13.1/EXP13_1.sce
new file mode 100644
index 000000000..0abf81536
--- /dev/null
+++ b/1586/CH13/EX13.1/EXP13_1.sce
@@ -0,0 +1,13 @@
+clc;funcprot(0);//EXAMPLE 13.1
+// Initialisation of Variables
+%Fe=6.67;......//Carbon percentage in Cementite by weight
+%G=0.77;.......//Carbon percentage in eutectoid composition in steel by weight
+%A=0.0218;......//Carbon percentage in Ferrite
+%Fe3C=16;....//Percentage of alpha ferrite in steel
+%P=95;......//Percentage of Pearlite in Steel
+//CALCULATIONS
+X1=((%Fe3C/100)*(%Fe-%A))+%A;.....//Carbon content present in Steel
+X2=%Fe-((%P/100)*(%Fe-%G));.....//Carbon content present in Steel
+disp(X1,"Carbon content present in Steel:")
+disp(X2,"Carbon content present in Steel:")
+printf("The carbon content is on the order of 1.065 to 1.086 percent, consistent with a 10110 steel")