diff options
Diffstat (limited to '3526/CH10')
-rw-r--r-- | 3526/CH10/EX10.6/EX10_6.sce | 16 | ||||
-rw-r--r-- | 3526/CH10/EX10.8/EX10_8.sce | 10 | ||||
-rw-r--r-- | 3526/CH10/EX10.9/EX10_9.sce | 20 |
3 files changed, 46 insertions, 0 deletions
diff --git a/3526/CH10/EX10.6/EX10_6.sce b/3526/CH10/EX10.6/EX10_6.sce new file mode 100644 index 000000000..1b6ab86f5 --- /dev/null +++ b/3526/CH10/EX10.6/EX10_6.sce @@ -0,0 +1,16 @@ +clc;funcprot(0)//EXAMPLE 10.6
+//page 293
+//INITIALISATION OF VARIABLES
+c1=2;..........//NO.of independent Chemical components at 1300 celsius
+p1=1;........//No.of phases at 1300 celsius
+c2=2;........//NO.of independent Chemical components at 1250 celsius
+p2=2;.........//No.of phases at 1250 celsius
+c3=2;.........//NO.of independent Chemical components at 1200 celsius
+p3=1;.......//No.of phases at 1200 celsius
+//CALCULATIONS
+f1=1+c1-p1;...........//Degrees of freedom of both Copper and NIckel at 1300 celsius
+f2=1+c2-p2;...........//Degrees of freedom of both Copper and NIckel at 1250 celsius
+f3=1+c3-p3;..........//Degrees of freedom of both Copper and NIckel at 1200 celsius
+disp(f1,"Degrees of freedom of both Copper and NIckel at 1300 celsius ")
+disp(f2,"Degrees of freedom of both Copper and NIckel at 1250 celsius ")
+disp(f3,"Degrees of freedom of both Copper and NIckel at 1200 celsius ")
diff --git a/3526/CH10/EX10.8/EX10_8.sce b/3526/CH10/EX10.8/EX10_8.sce new file mode 100644 index 000000000..5f70c9cf3 --- /dev/null +++ b/3526/CH10/EX10.8/EX10_8.sce @@ -0,0 +1,10 @@ +clc;funcprot(0);//EXAMPLE 10.8
+//page 295
+// Initialisation of Variables
+%Nia=40;......//no, of grams of nickel in alloy at alla temperature
+%NiL=32;......//Mass of Nickel present in Liquid
+%Nialpha=45;......//Mass of NIckel present in alpha
+//CALCULATIONS
+x=(%Nia-%NiL)/(%Nialpha-%NiL);.....//Mass fraction of alloy in percent
+disp(x,"Mass fraction of alloy in percent:")
+printf("By converting 62percent alpha and 38percent Liquid are present.:")
diff --git a/3526/CH10/EX10.9/EX10_9.sce b/3526/CH10/EX10.9/EX10_9.sce new file mode 100644 index 000000000..f1eb704f1 --- /dev/null +++ b/3526/CH10/EX10.9/EX10_9.sce @@ -0,0 +1,20 @@ +clc;funcprot(0);//EXAMPLE 10.9
+//page 296
+// Initialisation of Variables
+%NiL=37;......// percentage of NI the Liquid contains at 1270 degree celsius
+%NiS=50;........//percentage of NI the Solid contains at 1270 degree celsius
+%NiL2=32;........//percentage of NI the Liquidcontains at 1250 degree celsius
+%NiS2=45;........//percentage of NI the Solid contains at 1250 degree celsius
+%NiS3=40;........//percentage of NI the Solid contains at 1200 degree celsius
+%NiL3=40;.......//percentage of NI the Liquid contains at 1300 degree celsius
+//CALCULATIONS
+%L=((%NiS-%NiL3)/(%NiS-%NiL))*100;......//Percentage of Liquid at 1270 degree celsius
+%S=((%NiS3-%NiL)/(%NiS-%NiL))*100;.......//Percentage of Solid qt 1270 degree celsius
+%L2=((%NiS2-%NiL3)/(%NiS2-%NiL2))*100;....//Percentage of Liquid at 1250 degree celsius
+%S2=((%NiS3-%NiL2)/(%NiS2-%NiL2))*100;....//Percentage of Solid qt 1250 degree celsius
+printf("At 1300 degree celsius only one phase so 100 percent Liquid")
+disp(round(%L),"Percentage of Liquid at 1270 degree celsius :")
+disp(round(%S),"Percentage of Solid qt 1270 degree celsius:")
+disp(round(%L2),"Percentage of Liquid at 1250 degree celsius :")
+disp(round(%S2),"Percentage of Solid at 1250 degree celsius:")
+printf("At 1200 degree celsius only one phase so 100 percent Solid ")
|