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

64 lines
3.0 KiB
Python
Raw Normal View History

2020-05-13 14:33:22 +02:00
from ..IRadiant import IRadiant
from ..Entry import Entry
from .ASensor import ASensor
from .Imager import Imager
2020-06-30 10:26:16 +02:00
from .Heterodyne import Heterodyne
2020-05-29 09:36:02 +02:00
from ...lib.logger import logger
2020-05-13 14:33:22 +02:00
class SensorFactory:
"""
A Factory creating objects of the type ASensor
"""
def __init__(self, parent: IRadiant, common_conf: Entry):
"""
Instantiate a new factory object
"""
self.__common_conf = common_conf
self.__parent = parent
def create(self, options: Entry) -> ASensor:
"""
Create a new object of the type ASensor
Parameters
----------
options : Entry
The options to be used as parameters for the instantiation of the new object.
Returns
-------
obj : ASensor
The created sensor object
"""
if options.type == "Imager":
args = dict(parent=self.__parent, quantum_efficiency=options.pixel.quantum_efficiency(),
pixel_geometry=options.pixel_geometry(), pixel_size=options.pixel.pixel_size(),
read_noise=options.pixel.sigma_read_out(), dark_current=options.pixel.dark_current(),
2020-05-15 11:16:42 +02:00
well_capacity=options.pixel.well_capacity(), f_number=options.f_number(),
common_conf=self.__common_conf)
2020-05-13 14:33:22 +02:00
if hasattr(options, "center_offset"):
# noinspection PyCallingNonCallable
args["center_offset"] = options.center_offset()
if hasattr(options, "photometric_aperture"):
if hasattr(options.photometric_aperture, "shape") and isinstance(
options.photometric_aperture.shape, Entry):
args["shape"] = options.photometric_aperture.shape()
if hasattr(options.photometric_aperture, "contained_energy") and isinstance(
options.photometric_aperture.contained_energy, Entry):
args["contained_energy"] = options.photometric_aperture.contained_energy()
if hasattr(options.photometric_aperture, "aperture_size") and isinstance(
options.photometric_aperture.aperture_size, Entry):
args["aperture_size"] = options.photometric_aperture.aperture_size()
2020-05-13 14:33:22 +02:00
return Imager(**args)
2020-06-30 10:26:16 +02:00
elif options.type == "Heterodyne":
args = dict(parent=self.__parent, aperture_efficiency=options.aperture_efficiency(),
main_beam_efficiency=options.main_beam_efficiency(), receiver_temp=options.receiver_temp(),
eta_fss=options.eta_fss(), lambda_line=options.lambda_line(), kappa=options.kappa(),
common_conf=self.__common_conf)
if hasattr(options, "n_on"):
# noinspection PyCallingNonCallable
args["n_on"] = options.n_on()
return Heterodyne(**args)
2020-05-13 14:33:22 +02:00
else:
2020-05-29 09:36:02 +02:00
logger.error("Wrong sensor type: " + options.type)