Skip to article frontmatterSkip to article content

Modeling the Eye at 10X

import numpy as np
import matplotlib.pyplot as plt

1Modeling the Eye at 10X

We will set up an optical system to model the eye that has all lengths multiplied by 10. For example, the eye is approximately 1.5 cm from lens to retina. In this experiment, it will be 15 cm (150 mm).

To verify the focal length of the 150 mm lens, go to a window with the lens and a sheet of paper. Focus the trees or Seabury building on the sheet of paper using the lens. In this scenario, the object (trees or Seabury) are VERY far away. One might say “infinitely far” such that ss\approx\infty. Measure the distance from lens to paper, ss', when the image is focused. Use the thin lens equation to determine ff.

1f=1s+1s\frac{1}{f}=\frac{1}{s}+\frac{1}{s'}

1.1The relaxed eye for far vision

When we look at distant objects, we relax our eye, and the eye has an accomodation associated with a long focal length.

  1. Set up the optics system with a 150 mm lens, viewing screen and object light source.
  2. Set the viewing screen at the far right end of the optics rail.
  3. Place the oject light very far (as far across the table as possible) from the viewing screen.
  4. Find the location for the lens that creates a focused image on the viewing screen.
  5. Calculate the refractive power of the lens in this system.
  6. Comment on the size of the image on the viewing screen (large, medium, small).
s = 
sprime =
f = (1/s + 1/sprime)**-1
print(f)

1.2Accomodation for near vision

To see close objects, muscles contract to increase the radius of curvature of the lens. This causes the lens to have a shorter focal length. The lens to retina distance remains the same (1.5 cm, which will be 15 cm for our experiment).

  1. Arrange the 75 mm lens and viewing screen 150 mm apart at the right end of the optics rail.
    • This gives s=0.150s' = 0.150 m.
  2. Adjust the object light until the image is clear.
  3. Measure ss and calculate the focal length of the lens to verify that it is approximately f=75f = 75 mm.
  4. Comment on the size of the image on the viewing screen.

1.2.1Even more accomodation

  1. Repeat the previous experiment with the unknown lens.
  2. What is the focal length of this lens?

1.3Refractive Power

  1. Calculate the refractive power P=1/fP=1/f for all three lenses.
  2. How much accomodation has been made between the 150 mm and shortest focal length lens?

1.4Perception of Distance

Thinking about your answers related to image size, how might these image sizes be related to our perception of object distance?

2For Fun

For a lens with focal length of 10 cm (0.1 m), plot the relationship image distance vs. object distance (ss' vs. ss). To do this set a variable for f. Then, make a numpy array of object distances from 0.01 to 0.5 m in steps of 0.01 m. Calculate the image distance using the thin lens equation.

1f=1s+1s\frac{1}{f}=\frac{1}{s}+\frac{1}{s'}
f=
s = 
sp = 

plt.plot()
plt.xlabel('Object Distance (m)')
plt.ylabel('Image Distance (m)')
plt.show()