diff options
Diffstat (limited to '2708/CH14/EX14.4/ex_14_4.sce')
-rwxr-xr-x | 2708/CH14/EX14.4/ex_14_4.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2708/CH14/EX14.4/ex_14_4.sce b/2708/CH14/EX14.4/ex_14_4.sce new file mode 100755 index 000000000..c3ef3f286 --- /dev/null +++ b/2708/CH14/EX14.4/ex_14_4.sce @@ -0,0 +1,14 @@ +//Example 14.4 // wavelength & angle
+clc;
+clear;
+//given data :
+d=2.82;//spacing between successive planes in A
+theta=8+35/60;//in degree
+theta=theta*%pi/180;// to convert in radian
+n=1;// order of reflection
+lamda=2*d*sin(theta) /n;//de-broglie equation
+disp(lamda,"wavelength of NaCl in A ")
+n=2;//to find angleof reflection
+theta=asin(n*lamda/(2*d));//angle of reflection radian
+theta=theta*180/%pi;// to convert in degree
+disp(theta,"angle of reflection in degree")
|