diff options
Diffstat (limited to '3411/CH5/EX5.6/Ex5_6.sce')
-rw-r--r-- | 3411/CH5/EX5.6/Ex5_6.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3411/CH5/EX5.6/Ex5_6.sce b/3411/CH5/EX5.6/Ex5_6.sce new file mode 100644 index 000000000..9df6c1ac3 --- /dev/null +++ b/3411/CH5/EX5.6/Ex5_6.sce @@ -0,0 +1,12 @@ +//Example 5_6
+clc();
+clear;
+//To calculate the interplanar spacing and wavelength
+n1=1
+theta1=23 //units in degrees
+n2=3
+theta2=60 //units in degrees
+lamda1=97 //units in pm
+lamda2=(n2*lamda1*sin(theta1*(%pi/180)))/(sin(theta2*(%pi/180))) //units in pm
+d=(n2*lamda1)/(2*sin(theta2*(%pi/180))) //units in pm
+printf("Wavelength lamda=%dpm \n Interplanar spacing d=%dpm",lamda2,d)
|