MSSL Emission Calculation and Line Intensity Prediction for SOLAR-C EUVST-SW
Project description
M-ECLIPSES: MSSL Emission Calculation and Line Intensity Prediction for SOLAR-C EUVST-SW
The M-ECLIPSES code (MSSL Emission Calculation and Line Intensity Prediction for SOLAR-C EUVST-SW) is used to forward model the performance of the ESA/MSSL short wavelength camera, part of the EUV spectrograph EUVST, on SOLAR-C.
Contact: James McKevitt (jm2@mssl.ucl.ac.uk). License: Contact for permission to use.
The instrument response generated by this code will be updated during instrument development, testing, and commissioning.
Installation
From PyPI (recommended)
pip install m-eclipses
From source
git clone https://github.com/jamesmckevitt/solc_euvst_sw_response.git
pip install solc_euvst_sw_response
Quick Start
Command Line Interface
After installation, you can run M-ECLIPSES from the command line:
# Run synthesis script (convert 3D MHD data to synthetic spectra)
synthesise-spectra --data-dir ./data/atmosphere --goft-file ./data/gofnt.sav --output-dir ./run/input
# Run instrument response simulation
m-eclipses --config ./run/input/config.yaml
# Help can be accessed with
synthesise-spectra --help
m-eclipses --help
Python API
You can also use M-ECLIPSES as a Python library:
import euvst_response
from euvst_response import AluminiumFilter, Detector_SWC, Telescope_EUVST
telescope = Telescope_EUVST()
detector = Detector_SWC()
print(f"Telescope collecting area: {telescope.collecting_area:.4f}")
print(f"Detector QE (EUV): {detector.qe_euv:.2f}")
# Calculate effective area at Fe XII 195.119 Å
fe12_wl = 195.119 * u.AA
effective_area = telescope.collecting_area * telescope.throughput(fe12_wl) * detector.qe_euv
# Get breakdown of throughput by component
pm_eff = telescope.primary_mirror_efficiency(fe12_wl)
grating_eff = telescope.grating_efficiency(fe12_wl)
micro_eff = telescope.microroughness_efficiency(fe12_wl)
filter_eff = telescope.filter.total_throughput(fe12_wl)
Analysis Tutorial
For analyzing simulation results, see the included Jupyter notebook analysis_tutorial.ipynb which demonstrates how to:
- Load simulation results
- Explore parameter combinations
- Analyze fit statistics and compute velocity/line width errors
- Create SunPy maps for visualization
The analysis functions are now available directly from the package:
from euvst_response import (
load_instrument_response_results,
get_results_for_combination,
analyse_fit_statistics,
create_sunpy_maps_from_combo,
summary_table
)
Detailed instructions
1. Generate contribution functions for the desired emission lines
Edit make_gofnt.pro to specify the desired emission lines and the location of the CHIANTI files. You can use CHIANTI to identify the required lines.
Run the following command:
idl -e "make_goft"
2. Run the line synthesis
The synthesis script converts 3D MHD simulation data into synthetic solar spectra. It can be run directly from the command line with extensive configuration options.
Basic Usage
# Example using all available command line options
synthesise-spectra \
--data-dir ./data/atmosphere \
--goft-file ./data/gofnt.sav \
--output-dir ./run/input \
--output-name synthesised_spectra.pkl \
--temp-file temp/eosT.0270000 \
--rho-file rho/result_prim_0.0270000 \
--vz-file vz/result_prim_2.0270000 \
--cube-shape 512 768 256 \
--voxel-dx 0.192 \
--voxel-dy 0.192 \
--voxel-dz 0.064 \
--vel-res 5.0 \
--vel-lim 300.0 \
--downsample 1 \
--precision float64 \
--mean-mol-wt 1.29 \
--limit-lines Fe12_195.1190
# Show all available options
synthesise-spectra --help
Command Line Options
Input/Output Paths:
--data-dir: Directory containing simulation data (default:data/atmosphere)--goft-file: Path to CHIANTI G(T,N) save file (default:./data/gofnt.sav)--output-dir: Output directory for results (default:./run/input)--output-name: Output filename (default:synthesised_spectra.pkl)
Simulation Files:
--temp-file: Temperature file relative to data-dir (default:temp/eosT.0270000)--rho-file: Density file relative to data-dir (default:rho/result_prim_0.0270000)--vz-file: Velocity file relative to data-dir (default:vz/result_prim_2.0270000)
Grid Parameters:
--cube-shape: Cube dimensions as three integers (default:512 768 256)--voxel-dx,--voxel-dy,--voxel-dz: Voxel sizes in Mm (default:0.192 0.192 0.064)
Velocity Grid:
--vel-res: Velocity resolution in km/s (default:5.0)--vel-lim: Velocity limit ±km/s (default:300.0)
Processing Options:
--downsample: Downsampling factor (default:1= no downsampling)--precision: Numerical precisionfloat32orfloat64(default:float64)--mean-mol-wt: Mean molecular weight (default:1.29)
Line Selection:
--limit-lines: Limit to specific lines, e.g.,--limit-lines Fe12_195.1190 Fe12_195.1790
Output
The synthesis produces a pickle file containing:
line_cubes: Individual NDCube objects for each spectral line with proper WCSconfig: Runtime configuration for reproducibility- Additional technical data for internal use
Performance Tips
- Use
--downsample 2or--downsample 4for initial testing - Use
--precision float32to reduce memory usage (may affect accuracy) - Use
--limit-linesto synthesize only specific lines for development - Monitor memory usage - full resolution synthesis can require 50+ GB RAM
Working with Synthesis Results
The synthesis results can be loaded and analyzed using the package API:
import euvst_response
# Load synthesis results - this sums all line cubes into a single cube
cube = euvst_response.load_atmosphere("./run/input/synthesised_spectra.pkl")
print(f"Combined cube shape: {cube.data.shape}")
# Access individual line cubes if needed
import pickle
with open("./run/input/synthesised_spectra.pkl", "rb") as f:
data = pickle.load(f)
# Access individual line cubes
fe12_195 = data["line_cubes"]["Fe12_195.1190"]
print(f"Fe XII 195.119 cube shape: {fe12_195.data.shape}")
print(f"Rest wavelength: {fe12_195.meta['rest_wav']}")
Pre-computed Atmospheres
This step can require a lot of memory at full resolution. A fully synthesised atmosphere using the Cheung et al. (2018) atmosphere (doi:10.1038/s41550-018-0629-3) for the Fe XII 195.119 and 195.179 lines, including 5 background lines from each side, can be downloaded here: https://liveuclac-my.sharepoint.com/:f:/g/personal/ucasjem_ucl_ac_uk/Es-ts6rwXIlInAweGI7hmdMB5BoGqv9uSpIXOvMkzhS3cw?e=54si7R
Important: You can place the synthesised atmosphere file anywhere and specify its location using the synthesis_file parameter in your YAML configuration file. The default location is ./run/input/synthesised_spectra.pkl.
3. Simulate the instrument response
Configuration File
M-ECLIPSES uses YAML configuration files to specify simulation parameters. You can specify single values or lists of values for parameter sweeps.
Key configuration options:
instrument: Choose between SWC (EUVST) or EIS (Hinode)synthesis_file: Path to the synthesised spectra pickle file (default:./run/input/synthesised_spectra.pkl)expos: Exposure time(s) for simulationsn_iter: Number of Monte Carlo iterations- Parameter sweeps for filters, detector settings, etc.
Here's a complete example configuration file:
# Instrument selection
instrument: SWC # Options: SWC (EUVST Short Wavelength) or EIS (Hinode/EIS)
# Synthesis file path - location of the synthesised spectra pickle file
synthesis_file: ./run/input/synthesised_spectra.pkl # Default location
# Point Spread Function
psf: False # Enable PSF convolution
# Or test with and without PSF:
# psf: [True, False] # Run simulations both with and without PSF
# Exposure times - can be single value or list
expos: [0.5 s, 1 s, 2 s, 5 s, 10 s, 20 s, 40 s, 80 s]
# Monte Carlo simulation parameters
n_iter: 1000 # Number of Monte Carlo iterations
ncpu: -1 # Number of CPU cores (-1 = use all available)
# Parameter sweeps - you can specify single values or lists for any parameter
# The simulation will run all combinations of parameters
# Slit width
slit_width: 0.2 arcsec # Narrowest slit on EUVST
# Filter parameters (SWC only)
# Thickness of aluminum oxide layer on entrance filter
oxide_thickness: 95 angstrom # Default (expected value)
# Carbon contamination thickness on filter
c_thickness: 0 angstrom # Default (ideal case, no contamination)
# Aluminum filter thickness
aluminium_thickness: 1485 angstrom # Default (expected value)
# CCD temperature for dark current calculation
ccd_temperature: -60 Celsius # Default (expected operating temperature)
# Visible stray light level
vis_sl: 0 photon / (s * pixel) # Default, (ideal case, no stray light)
For guidence on recommended values, see McKevitt et al. (2025) (in prep.).
Running Simulations
Run the instrument response function using:
m-eclipses --config ./run/input/config.yaml
Command-line options:
--config: Path to YAML configuration file (required)--debug: Enable debug mode with IPython breakpoints on errors (optional)
Output
Results are saved as pickle files in the scratch/ directory with the same base name as the configuration file. The output includes:
- Simulated detector signals (DN and photon counts)
- Fitted spectral line parameters (intensity, velocity, width)
- Statistical analysis of velocity precision vs. exposure time
- Ground truth comparisons
Acknowledgements
The SOLAR-C/EUVST-SW instrument is an ESA-funded contribution to the JAXA-led SOLAR-C mission. The EUVST-LW (long wavelength) instrument is contributed by NASA. The M-ECLIPSES code is developed and maintained at Mullard Space Science Laboratory (UCL), and was made using Austrian Super Computing (ASC) instrastructure in collaboration with the University of Vienna.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file m_eclipses-0.4.0.tar.gz.
File metadata
- Download URL: m_eclipses-0.4.0.tar.gz
- Upload date:
- Size: 60.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d7b505a77f5268b6bbf27cb013730a25480bf4988d1ab09f851b4db3c290b1a
|
|
| MD5 |
6ded788b6a54a238d00dc416a04c9921
|
|
| BLAKE2b-256 |
57d6029a49067e1487686ff7d62c9f9d19eeccad2c4b793f1fe74b9dcd51530b
|
File details
Details for the file m_eclipses-0.4.0-py3-none-any.whl.
File metadata
- Download URL: m_eclipses-0.4.0-py3-none-any.whl
- Upload date:
- Size: 61.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8aa33680271fc74906c19f855ca318216191d94ff245d7e2048d5b309d6b8cb8
|
|
| MD5 |
aa68bf758e355d1ccccb05c716364fd9
|
|
| BLAKE2b-256 |
fecbc94c3d78a41973d4b62326d49c503d341c226eb34bc530f53d85b38bdcd4
|