Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

WORK IN PROGRESS

Having modeled the extended LED source, I now turn to ray tracing the rays from this source. The purpose is to understand what degree of uniformity we can expect in the the irradiance after the illuminator.

The algorithms and lens developed in the previous sections have been incorporated into the main module.

from optiland.rays import PolarizationState

from main import Collimator, LED

led = LED()

lens = Collimator()
state = PolarizationState(is_polarized=False)
lens.set_polarization(state)