diff options
Diffstat (limited to '3537/CH5/EX5.15/Ex5_15.sce')
-rw-r--r-- | 3537/CH5/EX5.15/Ex5_15.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3537/CH5/EX5.15/Ex5_15.sce b/3537/CH5/EX5.15/Ex5_15.sce new file mode 100644 index 000000000..a53c087c2 --- /dev/null +++ b/3537/CH5/EX5.15/Ex5_15.sce @@ -0,0 +1,10 @@ +//Example 5_15
+clc();
+clear;
+//To find the glancing angle for the second order diffraction
+d100=0.28 //units in nm
+n=2
+lamda=0.071 //units in nm
+d110=d100/sqrt(2)
+theta=asin(( n*lamda)/(2*d110))*180/%pi
+printf("The glancing angle is %d degrees",theta)
|