blob: 5c02efc60d2d9bf71c3464f80efc2da928c90a0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Example 2_16
clc();
clear;
//To find the angular separation of two lines of sodium in the first order spectrum
N=5*10^5 //units in lines per meter
m=1
lemda1=5890*10^-10 //units in meters
lemda2=5896*10^-10 //units in meters
theta1=asin(m*N*lemda1)*180/%pi
theta2=asin(m*N*lemda2)*180/%pi
theta=(theta2-theta1)
printf("The angular separation is %.3f degrees",theta)
|