diff options
Diffstat (limited to '539/CH10/EX10.1.a/Example_10_1a.sce')
-rwxr-xr-x | 539/CH10/EX10.1.a/Example_10_1a.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/539/CH10/EX10.1.a/Example_10_1a.sce b/539/CH10/EX10.1.a/Example_10_1a.sce new file mode 100755 index 000000000..15c91ed5c --- /dev/null +++ b/539/CH10/EX10.1.a/Example_10_1a.sce @@ -0,0 +1,22 @@ +//Computation of Critical Nuclear Radius
+
+clear;
+clc;
+
+printf("\tExample 10.1\n");
+
+printf("\n\tPart A");
+Hf=-1.16*10^9; // in J/m^3 latent heat of fusion
+Y=0.132; // in J/m^2 Surface energy
+Tm=1064+273; // in K Melting point of gold
+T=1064+273-230; // in K 230 is supercooling value
+
+r=-2*Y*Tm/(Hf*(Tm-T));
+
+printf("\nCritical Radius is : %.2f nm\n",r/10^-9);
+
+G=16*%pi*Y^3*Tm^2/(3*Hf^2*(Tm-T)^2);
+
+printf("\nActivation free energy is : %.2e J\n",G);
+
+//end
\ No newline at end of file |