Jitter parameter added.

This commit is contained in:
Lukas Klass 2020-05-06 10:21:46 +02:00
parent f8e16fcc9a
commit c1f2e28775

View File

@ -17,7 +17,8 @@ class Airy(IPSF):
self.__wl = wl
self.__d_aperture = d_aperture
def calcReducedObservationAngle(self, contained_energy: Union[str, int, float, u.Quantity]) -> u.Quantity:
def calcReducedObservationAngle(self, contained_energy: Union[str, int, float, u.Quantity],
jitter_sigma: u.Quantity = None) -> u.Quantity:
"""
Calculate the reduced observation angle in lambda / d_ap for the given contained energy.
@ -25,6 +26,8 @@ class Airy(IPSF):
----------
contained_energy : Union[str, int, float, u.Quantity]
The percentage of energy to be contained within a circle with the diameter reduced observation angle.
jitter_sigma : Quantity
Sigma of the telescope's jitter in arcsec
Returns
-------