Metadata-Version: 2.1
Name: thin_lens
Version: 0.0.3
Summary: Compute the optics of the 'thin'-lens-equation.
Home-page: https://github.com/cherenkov-plenoscope/thin_lens
Author: Sebastian Achim Mueller
Author-email: sebastian-achim.mueller@mpi-hd.mpg.de
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Description-Content-Type: text/x-rst
License-File: LICENSE

####################################
The optics of the thin-lens-equation
####################################
|TestStatus| |PyPiStatus| |BlackStyle| |BlackPackStyle| |LicenseBadge|

This python-packag is about the thin-lens-equation:

|ImgThinLens|

.. |ImgThinLens| image:: https://github.com/cherenkov-plenoscope/thin_lens/blob/main/readme/thin_lens_bokeh_overview_scale.svg?raw=True

.. code-block::

     1     1     1
    --- = --- + ---
     f     g     b

The focal-length of the imaging-optics: ``f``.
The image-distance an image has from the aperture's principal plane: ``b``.
The object-distance an object has from the aperture's principal plane: ``g``.
The screen-distance a screen has from the aperture's principal plane: ``d``.

Note that the screen-distance ``d`` is not part of the thin-lens-equation.
In case ``d != b`` the image on the screen is 'out of focus', thus blurred.
Only when ``d == b`` the image on the screen is 'in focus', thus sharp.

*******
Install
*******

.. code-block:: bash

    pip install thin_lens


*****
Usage
*****

.. code-block:: python

    import thin_lens

    f = 1.0

    b = thin_lens.compute_image_distance_for_object_distance(
        object_distance=100.0,
        focal_length=f,
    )

    assert b > f

    print(b)

gives:

.. code-block::

    1.0101010101010102


.. |TestStatus| image:: https://github.com/cherenkov-plenoscope/thin_lens/actions/workflows/test.yml/badge.svg?branch=main
    :target: https://github.com/cherenkov-plenoscope/thin_lens/actions/workflows/test.yml

.. |PyPiStatus| image:: https://img.shields.io/pypi/v/thin_lens
    :target: https://pypi.org/project/thin_lens

.. |BlackStyle| image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/psf/black

.. |BlackPackStyle| image:: https://img.shields.io/badge/pack%20style-black-000000.svg
    :target: https://github.com/cherenkov-plenoscope/black_pack

.. |LicenseBadge| image:: https://img.shields.io/badge/License-MIT-yellow.svg
    :target: https://opensource.org/licenses/MIT
