Home

Introduction

Contents

Scripts

FeedBack

Date 08/09/2010
Script S5_2_8.m
Download Script S5_2_8.m
%==============================================
%Young 7
%==============================================
%
%lambda and d in microns
lambda=0.51;
d=1;
%the beam is incident normally to the Young apparatus
%values of tetag varying the order m between -2 and 2
mn=-2:1:2
coef=lambda/d;
tetagn=(asin(mn*coef))*180/pi
%
%the beam subtends an angle alfag=30°
%with normal to the Young apparatus
alfa=30*pi/180;
sinalfa=sin(alfa);
%values of m when tetag=90° and tetag=-90°
m1=(1+sin(alfa))/coef
m2=(-1+sin(alfa))/coef
%
%values of tetag varying the order m between -3 and 3
m=-3:1:3
arg=m*coef-sin(alfa)
tetag=asin(arg)*180/pi
%==============================================
%
%==============================================
%==============================================
%Corrigenda
%change (pag. 207) in the first row
%"Inded if we put m = 2 we would have"
%with
%"Inded if we put m = -2 we would have"
%==============================================
%==============================================

Top