diff options
Diffstat (limited to '3840/CH2/EX2.5/Ex2_5.sce')
-rw-r--r-- | 3840/CH2/EX2.5/Ex2_5.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3840/CH2/EX2.5/Ex2_5.sce b/3840/CH2/EX2.5/Ex2_5.sce new file mode 100644 index 000000000..f34831f62 --- /dev/null +++ b/3840/CH2/EX2.5/Ex2_5.sce @@ -0,0 +1,14 @@ +clear +// +// +// + +//Variable declaration +a=3.5 //lattice constant(angstrom) +n=10**7 //1mm in angstrom + +//Calculation +N=n**2/a**2 //number of atoms per sq mm + +//Result +printf("\n number of atoms per sq mm is %0.2f *10**12",N/10**12) |