solarc-eclipse 0.5.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- euvst_response/__init__.py +52 -0
- euvst_response/analysis.py +680 -0
- euvst_response/cli.py +113 -0
- euvst_response/config.py +396 -0
- euvst_response/data/throughput/grating_reflection_efficiency.dat +25 -0
- euvst_response/data/throughput/primary_mirror_coating_reflectance.dat +25 -0
- euvst_response/data/throughput/source.txt +3 -0
- euvst_response/data/throughput/throughput_aluminium_1000_angstrom.dat +503 -0
- euvst_response/data/throughput/throughput_aluminium_oxide_1000_angstrom.dat +503 -0
- euvst_response/data/throughput/throughput_carbon_1000_angstrom.dat +503 -0
- euvst_response/data_processing.py +269 -0
- euvst_response/fitting.py +144 -0
- euvst_response/main.py +424 -0
- euvst_response/monte_carlo.py +159 -0
- euvst_response/pinhole_diffraction.py +260 -0
- euvst_response/psf.py +46 -0
- euvst_response/radiometric.py +512 -0
- euvst_response/synthesis.py +911 -0
- euvst_response/synthesis_cli.py +12 -0
- euvst_response/utils.py +176 -0
- solarc_eclipse-0.5.0.dist-info/METADATA +354 -0
- solarc_eclipse-0.5.0.dist-info/RECORD +26 -0
- solarc_eclipse-0.5.0.dist-info/WHEEL +5 -0
- solarc_eclipse-0.5.0.dist-info/entry_points.txt +5 -0
- solarc_eclipse-0.5.0.dist-info/licenses/LICENSE +1 -0
- solarc_eclipse-0.5.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"""
|
|
2
|
+
ECLIPSE: Emission Calculation and Line Intensity Prediction for SOLAR-C EUVST
|
|
3
|
+
|
|
4
|
+
This package provides tools for modeling the performance of the EUV spectrograph EUVST, on SOLAR-C.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
__version__ = "0.5.0"
|
|
8
|
+
__author__ = "James McKevitt"
|
|
9
|
+
__email__ = "jm2@mssl.ucl.ac.uk"
|
|
10
|
+
|
|
11
|
+
# Import main classes and functions for easy access
|
|
12
|
+
from .config import Detector_SWC, Detector_EIS, Telescope_EUVST, Telescope_EIS, Simulation, AluminiumFilter
|
|
13
|
+
from .utils import wl_to_vel, vel_to_wl, angle_to_distance, distance_to_angle
|
|
14
|
+
from .radiometric import (
|
|
15
|
+
intensity_to_photons, add_telescope_throughput, photons_to_pixel_counts,
|
|
16
|
+
apply_exposure_and_poisson, add_poisson, apply_focusing_optics_psf, to_electrons,
|
|
17
|
+
to_dn, add_visible_stray_light, add_pinhole_visible_light
|
|
18
|
+
)
|
|
19
|
+
from .pinhole_diffraction import apply_euv_pinhole_diffraction, airy_disk_pattern
|
|
20
|
+
from .fitting import fit_cube_gauss, velocity_from_fit, width_from_fit, analyse
|
|
21
|
+
from .monte_carlo import simulate_once, monte_carlo
|
|
22
|
+
from .main import main
|
|
23
|
+
from .data_processing import load_atmosphere
|
|
24
|
+
from .analysis import (
|
|
25
|
+
load_instrument_response_results,
|
|
26
|
+
get_parameter_combinations,
|
|
27
|
+
analyse_fit_statistics,
|
|
28
|
+
get_results_for_combination,
|
|
29
|
+
summary_table,
|
|
30
|
+
create_sunpy_maps_from_combo,
|
|
31
|
+
get_dem_data_from_results
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
__all__ = [
|
|
35
|
+
"Detector_SWC", "Detector_EIS", "Telescope_EUVST", "Telescope_EIS",
|
|
36
|
+
"Simulation", "AluminiumFilter",
|
|
37
|
+
"wl_to_vel", "vel_to_wl", "angle_to_distance", "distance_to_angle",
|
|
38
|
+
"intensity_to_photons", "add_telescope_throughput", "photons_to_pixel_counts",
|
|
39
|
+
"apply_exposure_and_poisson", "add_poisson", "apply_focusing_optics_psf", "to_electrons",
|
|
40
|
+
"to_dn", "add_visible_stray_light", "add_pinhole_visible_light",
|
|
41
|
+
"fit_cube_gauss", "velocity_from_fit", "width_from_fit", "analyse",
|
|
42
|
+
"simulate_once", "monte_carlo",
|
|
43
|
+
"main",
|
|
44
|
+
"load_atmosphere",
|
|
45
|
+
"load_instrument_response_results",
|
|
46
|
+
"get_parameter_combinations",
|
|
47
|
+
"analyse_fit_statistics",
|
|
48
|
+
"get_results_for_combination",
|
|
49
|
+
"summary_table",
|
|
50
|
+
"create_sunpy_maps_from_combo",
|
|
51
|
+
"get_dem_data_from_results"
|
|
52
|
+
]
|