summaryrefslogtreecommitdiff
path: root/2243/CH4/EX4.11/Ex4_11.sce
blob: 7c296e980f0f9178f524d86b57ff9613a53bf50b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
clc();
clear;
//Given:
lambda = 6000; //Wwavelength in A
mu = 1.33; //Refractive index for cornea
D = 2; //Diameter of pupil in mm
//Yellow light wavelength in eye:
lambda1 = lambda/mu ; //Wavelength in A
//The angular resolution 
//1 A = 1.0*10^-7 mm
theta_c = (1.22*lambda1*10^-7)/D; // angle in rad
//Maximum value for L
L = 1/tan(theta_c); // in mm
printf("Maximum value for L should be : %.1f mm",L);