diff options
Diffstat (limited to '1586/CH13/EX13.1')
-rw-r--r-- | 1586/CH13/EX13.1/EXP13_1.jpg | bin | 0 -> 182731 bytes | |||
-rw-r--r-- | 1586/CH13/EX13.1/EXP13_1.sce | 13 |
2 files changed, 13 insertions, 0 deletions
diff --git a/1586/CH13/EX13.1/EXP13_1.jpg b/1586/CH13/EX13.1/EXP13_1.jpg Binary files differnew file mode 100644 index 000000000..cd1ff7bdc --- /dev/null +++ b/1586/CH13/EX13.1/EXP13_1.jpg 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")
|