summaryrefslogtreecommitdiff
path: root/3411/CH5/EX5.6
diff options
context:
space:
mode:
Diffstat (limited to '3411/CH5/EX5.6')
-rw-r--r--3411/CH5/EX5.6/Ex5_6.sce12
-rw-r--r--3411/CH5/EX5.6/Ex5_6.txt2
2 files changed, 14 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)
diff --git a/3411/CH5/EX5.6/Ex5_6.txt b/3411/CH5/EX5.6/Ex5_6.txt
new file mode 100644
index 000000000..d3b42fa92
--- /dev/null
+++ b/3411/CH5/EX5.6/Ex5_6.txt
@@ -0,0 +1,2 @@
+Wavelength lamda=131pm
+ Interplanar spacing d=168pm \ No newline at end of file