ESBO-ETC/README.md

33 lines
1.6 KiB
Markdown
Raw Permalink Normal View History

2020-10-29 14:28:48 +01:00
[![Test Application](https://github.com/LukasK13/ESBO-ETC/workflows/Test%20Application/badge.svg)](https://github.com/LukasK13/ESBO-ETC/actions)
[![Deploy Docs](https://github.com/LukasK13/ESBO-ETC/workflows/Deploy%20Docs/badge.svg)](https://github.com/LukasK13/ESBO-ETC/actions)
2020-07-21 14:44:01 +02:00
2020-03-26 17:42:46 +01:00
# ESBO-ETC
2020-05-20 11:32:24 +02:00
A modular exposure time calculator for the ESBO telescope.
2020-03-26 17:42:46 +01:00
2020-05-20 11:32:24 +02:00
## Introduction
This repository contains the source code of the ESBO-ETC, a highly modular exposure time calculator.
ESBO-ETC aims on modelling the physical aspect of light coming from a target through optical components
(e.g. atmosphere, mirrors, lenses, ...) on the detector. The set up of this so called optical pipeline can be
individually defined using a configuration file. Additionally, the thermal emission of optical components, the
obstruction of components as well as different PSFs including pointing jitter can be considered.
Finally, ESBO-ETC allows the computation of either the necessary exposure time for a desired SNR, the SNR for a given
exposure time or, in case of a BlackBodyTarget, the sensitivity as the minimum apparent magnitude for a given exposure
time and SNR. All computations support a batch-mode, allowing to compute multiple scenarios at once.
2020-07-22 08:04:38 +02:00
## Documentation
The latest version of the documentation is hosted on the [ESBO-DS server](https://esbo-ds.irs.uni-stuttgart.de/esboetcdocs/).
2020-05-27 10:30:41 +02:00
The full documentation is available as source [here](docs) and can be build using
[sphinx](https://www.sphinx-doc.org/en/master/usage/installation.html) by the command
2020-05-27 10:33:25 +02:00
```bash
2020-05-27 10:30:41 +02:00
sphinx-build -b html
2020-05-26 22:25:26 +02:00
```
2020-05-20 11:32:24 +02:00
2020-05-27 10:30:41 +02:00
for the HTML-documentation or
2020-05-20 11:32:24 +02:00
2020-05-27 10:33:25 +02:00
```bash
2020-05-27 10:30:41 +02:00
sphinx-build -M latexpdf
```
2020-05-20 11:32:24 +02:00
2020-05-27 10:30:41 +02:00
for the PDF version.