ESBO-ETC/esbo_etc/classes/optical_component/AOpticalComponent.py

114 lines
4.4 KiB
Python
Raw Normal View History

2020-04-16 09:35:24 +02:00
from ..IRadiant import IRadiant
from ..SpectralQty import SpectralQty
2020-04-16 09:35:24 +02:00
from ...lib.helpers import error
from abc import abstractmethod
2020-04-09 17:51:55 +02:00
import astropy.units as u
from astropy.modeling.models import BlackBody
2020-04-14 19:56:10 +02:00
from typing import Union, Callable
2020-04-16 09:35:24 +02:00
class AOpticalComponent(IRadiant):
"""
Abstract super class for an optical component
"""
@abstractmethod
2020-04-09 17:51:55 +02:00
@u.quantity_input(obstructor_temp=[u.K, u.Celsius])
2020-04-16 09:35:24 +02:00
def __init__(self, parent: IRadiant, transreflectivity: Union[SpectralQty, int, float, u.Quantity] = None,
noise: Union[SpectralQty, int, float, u.Quantity] = None, obstruction: float = 0,
obstructor_temp: u.Quantity = 0 * u.K, obstructor_emissivity: float = 1):
"""
Initialize a new optical component
Parameters
----------
2020-04-16 09:35:24 +02:00
parent : IRadiant
The parent element of the optical component from which the electromagnetic radiation is received
transreflectivity : SpectralQty
The spectral transmission / reflectivity coefficient of the component. This coefficient is multiplied with
the incoming radiation from the parent element in order to propagate the incoming radiation through the
optical component.
noise : SpectralQty
2020-04-14 13:12:40 +02:00
The noise created by the optical component as spectral radiance. This noise will be added to the propagated
incoming noise in order to calculate the overall noise.
obstruction : float
The additional obstruction factor of the optical component. 0 means the component is not obstructed, 1
denotes a completely obstructed component with therefore no incoming flux. It is important to note, that
the obstruction factor reflects the obstruction of the optical component additionally to the obstruction
factors of the prior elements in the beam.
2020-04-09 17:51:55 +02:00
obstructor_temp : Quantity in Kelvin / Celsius
Temperature of the obstructing component.
obstructor_emissivity : float
Emissivity of the obstructing component.
"""
self._parent = parent
if transreflectivity:
self._transreflectivity = transreflectivity
if noise:
self._noise = noise
self._obstruction = obstruction
2020-04-09 17:51:55 +02:00
self._obstructor_temp = obstructor_temp
self._obstructor_emissivity = obstructor_emissivity
def calcSignal(self) -> SpectralQty:
"""
Calculate the spectral flux density of the target's signal
Returns
-------
signal : SpectralQty
The spectral flux density of the target's signal
"""
2020-04-09 17:51:55 +02:00
return self.propagate(self._parent.calcSignal()) * (1 - self._obstruction)
def calcNoise(self) -> SpectralQty:
"""
Calculate the spectral radiance of the target's noise
Returns
-------
noise : SpectralQty
The spectral radiance of the target's noise
"""
2020-04-09 17:51:55 +02:00
parent = self.propagate(self._parent.calcNoise())
if self._obstructor_temp > 0 * u.K:
bb = BlackBody(temperature=self._obstructor_temp, scale=1. * u.W / (u.m ** 2 * u.nm * u.sr))
obstructor = bb(parent.wl) * self._obstructor_emissivity
2020-04-14 19:56:10 +02:00
noise = parent * (1. - self._obstruction) + obstructor * self._obstruction
2020-04-09 17:51:55 +02:00
else:
2020-04-14 19:56:10 +02:00
noise = parent * (1. - self._obstruction)
return noise + self.ownNoise()
def propagate(self, sqty: SpectralQty) -> SpectralQty:
"""
Propagate incoming radiation through the optical component
Parameters
----------
sqty : SpectralQty
The incoming radiation
Returns
-------
sqty : SpectralQty
Manipulated incoming radiation
"""
2020-04-09 17:51:55 +02:00
if hasattr(self, "_transreflectivity"):
return sqty * self._transreflectivity
else:
error("Transreflectivity not given. Method propagate() needs to be implemented.")
2020-04-14 19:56:10 +02:00
def ownNoise(self) -> Union[SpectralQty, Callable, int, float]:
"""
Calculate the noise created by the optical component
Returns
-------
2020-04-14 19:56:10 +02:00
noise : Union[SpectralQty, Callable, int, float]
The noise created by the optical component
"""
2020-04-09 17:51:55 +02:00
if hasattr(self, "_noise"):
return self._noise
else:
error("noise not given. Method ownNoise() needs to be implemented.")