ESBO-ETC/esbo_etc/classes/sensor/ASensor.py

99 lines
2.7 KiB
Python
Raw Normal View History

2020-04-21 10:39:55 +02:00
from ..IRadiant import IRadiant
import astropy.units as u
from abc import abstractmethod
2020-05-08 15:06:13 +02:00
from ..Entry import Entry
from typing import Union
2020-04-21 10:39:55 +02:00
2020-04-21 14:46:40 +02:00
class ASensor:
2020-04-21 10:39:55 +02:00
"""
Abstract super class for sensor models
"""
def __init__(self, parent: IRadiant):
"""
Initialize a new sensor
Parameters
----------
parent : IRadiant
The parent element of the optical component from which the electromagnetic radiation is received
"""
self._parent = parent
@abstractmethod
@u.quantity_input(exp_time="time")
2020-05-16 15:55:50 +02:00
def getSNR(self, exp_time: u.Quantity) -> u.dimensionless_unscaled:
2020-04-21 10:39:55 +02:00
"""
Calculate the signal to noise ratio (SNR) for the given exposure time.
Parameters
----------
exp_time : time-Quantity
The exposure time to calculate the SNR for.
Returns
-------
2020-05-16 15:55:50 +02:00
snr : Quantity
2020-04-21 10:39:55 +02:00
The calculated SNR
"""
pass
@abstractmethod
2020-05-16 15:52:27 +02:00
@u.quantity_input(snr=u.dimensionless_unscaled)
2020-05-16 15:55:50 +02:00
def getExpTime(self, snr: u.Quantity) -> u.s:
2020-04-21 10:39:55 +02:00
"""
Calculate the necessary exposure time in order to achieve the given SNR.
Parameters
----------
2020-05-16 15:52:27 +02:00
snr : Quantity
2020-04-21 10:39:55 +02:00
The SNR for which the necessary exposure time shall be calculated.
Returns
-------
exp_time : Quantity
The necessary exposure time in seconds.
"""
pass
2020-05-08 15:06:13 +02:00
2020-05-16 15:52:27 +02:00
@abstractmethod
@u.quantity_input(exp_time="time", snr=u.dimensionless_unscaled, target_brightness=u.mag)
2020-05-16 15:55:50 +02:00
def getSensitivity(self, exp_time: u.Quantity, snr: u.Quantity, target_brightness: u.Quantity) -> u.mag:
2020-05-16 15:52:27 +02:00
"""
Calculate the sensitivity of the telescope detector combination.
Parameters
----------
exp_time : Quantity
The exposure time in seconds.
snr : Quantity
The SNR for which the sensitivity time shall be calculated.
target_brightness : Quantity
The target brightness in magnitudes.
Returns
-------
sensitivity: Quantity
The sensitivity as limiting apparent star magnitude in mag.
"""
pass
2020-05-08 15:06:13 +02:00
@staticmethod
2020-05-15 11:15:18 +02:00
def check_config(sensor: Entry, conf: Entry) -> Union[None, str]:
2020-05-08 15:06:13 +02:00
"""
Check the configuration for this class
Parameters
----------
2020-05-15 11:15:18 +02:00
sensor : Entry
2020-05-08 15:06:13 +02:00
The configuration entry to be checked.
2020-05-15 11:15:18 +02:00
conf: Entry
The complete configuration.
2020-05-08 15:06:13 +02:00
Returns
-------
mes : Union[None, str]
2020-05-08 16:45:39 +02:00
The error message of the check. This will be None if the check was successful.
2020-05-08 15:06:13 +02:00
"""
pass