From c1f2e28775a95d2c54424ab2a1006f8d1e6e1db1 Mon Sep 17 00:00:00 2001 From: LukasK13 Date: Wed, 6 May 2020 10:21:46 +0200 Subject: [PATCH] Jitter parameter added. --- esbo_etc/classes/psf/Airy.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/esbo_etc/classes/psf/Airy.py b/esbo_etc/classes/psf/Airy.py index 80df28a..14eaaed 100644 --- a/esbo_etc/classes/psf/Airy.py +++ b/esbo_etc/classes/psf/Airy.py @@ -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 -------