summaryrefslogtreecommitdiff
path: root/1367/CH10/EX10.6/10_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '1367/CH10/EX10.6/10_6.sce')
-rwxr-xr-x1367/CH10/EX10.6/10_6.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1367/CH10/EX10.6/10_6.sce b/1367/CH10/EX10.6/10_6.sce
new file mode 100755
index 000000000..c61395add
--- /dev/null
+++ b/1367/CH10/EX10.6/10_6.sce
@@ -0,0 +1,12 @@
+//Find Weight fraction of errite and Cementite
+//Ex:10.6
+clc;
+clear;
+close;
+c=0.83;//carbon
+f=0;//ferrite
+ce=6.67;//cementite
+w_a=(ce-c)/(ce-f);
+disp(w_a,"Weight fraction of errite = ");
+w_b=(c-f)/(ce-f);
+disp(w_b,"Weight Fraction of Cementite = "); \ No newline at end of file