From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2780/CH3/EX3.6/Ex3_6.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 2780/CH3/EX3.6/Ex3_6.sce (limited to '2780/CH3/EX3.6') diff --git a/2780/CH3/EX3.6/Ex3_6.sce b/2780/CH3/EX3.6/Ex3_6.sce new file mode 100755 index 000000000..1f564fca7 --- /dev/null +++ b/2780/CH3/EX3.6/Ex3_6.sce @@ -0,0 +1,16 @@ +clc +//to calculate values of lambda1 and lambda2 +//in fraunhofer diffraction pattern ,the direction of minima is given by e*sintheta=+m*lambda,where m=1,2,....... +//direction of fourth minima (m=4) for wavelength lambda1 is given by e*sintheta1=4*lambda1..........eq(1) +//similarly, e*sintheta2=5*lambda2..........eq(2) +//from eq(1) and eq(2),we get e*sintheta=4*lambda1=5*lambda2....eq(3) +y=0.5 //in cm +f=100 //in cm +theta=y/f //in radian +sintheta=theta //theta is very small +e=0.05 //width of slit in cm +lambda1=e*sintheta/4 +disp("lambda1="+string(lambda1)+"cm") +//from eq(3) we get, +lambda2=4*lambda1/5 +disp("lambda2="+string(lambda2)+"cm") -- cgit