diff options
Diffstat (limited to '3557/CH9/EX9.12/Ex9_12.sce')
-rw-r--r-- | 3557/CH9/EX9.12/Ex9_12.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3557/CH9/EX9.12/Ex9_12.sce b/3557/CH9/EX9.12/Ex9_12.sce new file mode 100644 index 000000000..2cd9598c4 --- /dev/null +++ b/3557/CH9/EX9.12/Ex9_12.sce @@ -0,0 +1,13 @@ +//Example 9.12//
+
+Al2O3=1;// solid composition
+SiO2=2; // solid composition
+molp=(Al2O3/(Al2O3+SiO2))*100
+mprintf("molp = %f percent",molp)
+xm=60;//mol % //composition of mullite
+x=33.3;//mol% // x is overall comosition
+xs=0;//mol % //composition of SiO2
+mols=(xm-x)/(xm-xs)*100
+mprintf("\nmols = %f mol percent ",mols)
+molm=(x-xs)/(xm-xs)*100
+mprintf("\nmolm = %f mol percent",molm)
|