diff options
Diffstat (limited to '539/CH12/EX12.1')
-rwxr-xr-x | 539/CH12/EX12.1/Example_12_1.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/539/CH12/EX12.1/Example_12_1.sce b/539/CH12/EX12.1/Example_12_1.sce new file mode 100755 index 000000000..0cafe2f4d --- /dev/null +++ b/539/CH12/EX12.1/Example_12_1.sce @@ -0,0 +1,16 @@ +//Computation of Minimum Caion-to-Anion Radius Ratio forCo-ordination No. of 3
+
+clear;
+clc;
+
+printf("\tExample 12.1\n");
+
+printf("\nFor equilateral triangle after joining centres of the atoms \nAngle = 30\n");
+
+a=30;
+
+ratio=(1-cos(30*%pi/180))/cos(30*%pi/180);
+
+printf("\nCation to anion raio is : %.3f\n",ratio);
+
+//End
\ No newline at end of file |