diff options
Diffstat (limited to '3768/CH3/EX3.8/Ex3_8.sce')
-rw-r--r-- | 3768/CH3/EX3.8/Ex3_8.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3768/CH3/EX3.8/Ex3_8.sce b/3768/CH3/EX3.8/Ex3_8.sce new file mode 100644 index 000000000..90d1a4f9d --- /dev/null +++ b/3768/CH3/EX3.8/Ex3_8.sce @@ -0,0 +1,17 @@ +//Example number 3.8, Page number 49 + +clc;clear; +close; + +//Variable declaration +a=0.25; +b=0.25; +c=0.18; +h=1; +k=1; +l=1; +//Calculation +d_hkl=1/sqrt((a**2/h**2)+(b**2/k**2)+(c**2/l**2)); //spacing between planes(nm) +//Result +printf("spacing between planes is %.3f mm",d_hkl) +//answer in the book is wrong |