summaryrefslogtreecommitdiff
path: root/539/CH12/EX12.1/Example_12_1.sce
blob: 0cafe2f4d7ecf819ae1abf65e4882d9a0f111c00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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