diff options
Diffstat (limited to '3753/CH6/EX6.11/Ex6_11.sce')
-rw-r--r-- | 3753/CH6/EX6.11/Ex6_11.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3753/CH6/EX6.11/Ex6_11.sce b/3753/CH6/EX6.11/Ex6_11.sce new file mode 100644 index 000000000..ff3205109 --- /dev/null +++ b/3753/CH6/EX6.11/Ex6_11.sce @@ -0,0 +1,15 @@ +//Example number 6.11, Page number 6.51 + +clc;clear;close + +// variable declaration +n=4 // unitless +A=63.55 // Atomic wt. of NaCl +N=6.02*10^26 // Avagadro number +rho=8930 // density + +// Calculations +a=((n*A)/(N*rho))^(1/3) // Lattice Constant + +// Result +printf("lattice constant, a = %.2f nm",(a*10^9)) |