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.
@@ -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
+ ]