diff options
Diffstat (limited to '3537/CH5/EX5.15')
-rw-r--r-- | 3537/CH5/EX5.15/Ex5_15.sce | 10 | ||||
-rw-r--r-- | 3537/CH5/EX5.15/Ex5_15.txt | 1 |
2 files changed, 11 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)
diff --git a/3537/CH5/EX5.15/Ex5_15.txt b/3537/CH5/EX5.15/Ex5_15.txt new file mode 100644 index 000000000..8b7bcf2d9 --- /dev/null +++ b/3537/CH5/EX5.15/Ex5_15.txt @@ -0,0 +1 @@ + The glancing angle is 21 degrees
\ No newline at end of file |