diff options
Diffstat (limited to '3526/CH15/EX15.2')
-rw-r--r-- | 3526/CH15/EX15.2/EX15_2.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3526/CH15/EX15.2/EX15_2.sce b/3526/CH15/EX15.2/EX15_2.sce new file mode 100644 index 000000000..af83d3f86 --- /dev/null +++ b/3526/CH15/EX15.2/EX15_2.sce @@ -0,0 +1,12 @@ +clc;funcprot(0);//EXAMPLE 15.2
+//page 462
+// Initialisation of Variables
+R=2.5;..........//Ratio of O to Si in SiO2
+W1=69.62;........//Weight of B2O3 in g/ml
+W2=60.08;........//Weight of SiO2 in g/ml
+//CALCULATIONS
+Fb1=(R-2)/3.5;...........//Mole Fraction of B2O3
+Fb2=1-Fb1;.........//Mole fraction of SiO2
+Wp=((Fb1*W1)/((Fb1*W1)+(Fb2*W2)))*100;.......//Weight Percent of B2O3
+disp(Fb1,"Mole Fraction of B2O3:")
+disp(Wp,"Weight Percent of B2O3:")
|