An Easy Way for Stellar Doppler Imaging of Cool Single Stars
Project description
SpotDIPy
An easy way for stellar Doppler imaging of cool single stars.
A new version of SpotDIPy has been released that generates surface brightness maps for single cool stars by simultaneously modeling both spectral and light curve data using three-temperature approximation.
Installation
SpotDIPy can be installed easily via pip. To install the latest version, run the following commands. It is recommended to install SpotDIPy within a Python virtual environment.
pip install mayavi
pip install spotdipy
or
After downloading SpotDIPy, extract the ZIP file. Then, navigate to the SpotDIPy-main directory and run the following commands:
# The following lines will create and activate a virtual environment named venv in the relevant directory.
python -m venv venv
source venv/bin/activate # Linux
venv\Scripts\activate # Windows
# SpotDIPy can be installed with the following command.
pip install .
The code has been tested on both Linux (Ubuntu 22.04) and Windows (Windows 10). However, please note that on Windows 10, there is an issue with the ExoTiC-LD module related to downloading required files. To resolve this issue, it is recommended to manually download the necessary files in advance. These files are available at the following link:
https://zenodo.org/records/7874921
Once the files are downloaded, you can continue using SpotDIPy without any issues on Windows 10.
Example Usage
After installing SpotDIPy, you can test the code by running the example.py script in the directory containing the synths_lsds, target_lc, and target_lsds directories. The content of example.py is as follows.
from SpotDIPy import SpotDIPy
import numpy as np
import multiprocessing
from glob import glob
# Initialize the SpotDIPy class.
# cpu_num: Number of CPU cores to be used for parallelization tasks excluding the optimization
# process itself, which is handled separately. Setting this to multiprocessing.cpu_count() - 1
# reserves one core for other system processes.
DIP = SpotDIPy(cpu_num=multiprocessing.cpu_count() - 1, platform_name='cpu')
# Set stellar parameters that define the star and its properties.
# These parameters are crucial for accurate Doppler Imaging.
# t0: Reference time for the observed data, typically a Julian Day (JD). This represents
# the zero point in time for phasing the rotational period.
DIP.set_param('t0', value=2453200.0)
# period: Rotational period of the star at the equator, measured in days.
DIP.set_param('period', value=1.756604)
# Tphot: Effective photospheric temperature of the star in Kelvin. This represents the average
# temperature of the undisturbed stellar surface.
DIP.set_param('Tphot', value=5080)
# Tcool: Minimum temperature for cool spots on the stellar surface, in Kelvin. This defines the
# coolest temperature allowed for spot features during the imaging process.
DIP.set_param('Tcool', value=3800)
# Thot: Maximum temperature for hot spots on the stellar surface, in Kelvin.
# This sets the upper limit for the temperature of bright features. Note that in this example,
# Thot is set to the same value as Tphot, effectively disabling hot spots.
DIP.set_param('Thot', value=5080)
# incl: Inclination angle of the stellar rotational axis relative to the line of sight,
# in degrees. An inclination of 90 degrees means we view the star equator-on, while 0 degrees
# means we view it pole-on.
DIP.set_param('incl', value=46)
# vsini: Projected equatorial rotational velocity of the star, in km/s. This is the rotational velocity
# at the equator multiplied by the sine of the inclination angle. Only one of 'vsini' or 'R'
# (stellar radius) should be set, as they are related.
DIP.set_param('vsini', value=21.26272)
# R: Stellar radius in solar radii. As mentioned above, only use 'R' if you haven't set 'vsini'.
# DIP.set_param('R', value=0.770)
# vrt: Radial-tangential macroturbulence velocity in km/s. This parameter accounts for the
# broadening of spectral lines due to large-scale convective motions in the stellar atmosphere.
DIP.set_param('vrt', value=7.44827)
# mass: Stellar mass in solar masses. This parameter is important for accounting for gravity darkening.
DIP.set_param('mass', value=0.85)
# dOmega: Differential rotation parameter. A value of 0.0 indicates solid body rotation (no
# differential rotation). Non-zero values represent the difference in angular velocity
# between the equator and the poles.
DIP.set_param('dOmega', value=0.0)
# resolution: Resolution of the observed spectrum. This value is for correctly simulating
# the instrumental broadening of the spectral lines.
DIP.set_param('resolution', value=85000)
# Set limb-darkening parameters
# mh: Metallicity of the star, measured in dex (decimal exponent) relative to solar metallicity.
# law: The law used to fit I(mu) to determine limb darkening coefficients. Options include:
# - 'linear': Linear limb darkening law.
# - 'quadratic': Quadratic limb darkening law.
# - 'square-root': Square-root limb darkening law.
# model: The model grid used to model the stellar intensity (I) as a function of radial
# position on the stellar disc (mu) based on pre-computed grids spanning a range
# of metallicity, effective temperature, and surface gravity.
# mu_min: The minimum mu, determining the range over which limb darkening coefficient is calculated.
# data_path: Path to the directory containing the required data files. If set to None, an
# "exotic_ld_data" folder will be created, and the necessary files will be downloaded
# from the internet into this folder. If you are running SpotDIPy in a Windows
# environment, issues may occur during the download process. In such cases, you need to
# manually download the required files from the location specified in the Installation
# section and place them in the appropriate folder.
DIP.set_limb_darkening_params(mh=-0.14, law='linear', model='mps2', mu_min=0.1,
data_path=None)
# Set configuration
# Define settings for processing atomic line profiles and light curve data.
DIP.set_conf({
'line': {
'mode': 'on', # Enable processing of atomic line profiles when set to 'on'
'wave_range': [4400, 6800], # Wavelength range of the observed spectrum, in angstroms
'eqw': 0.08261, # Equivalent width of the atomic lines
'scaling': {'method': 'mean'}, # Method used to scale observed and synthetic line profiles
'corr': {'rv': 'free', 'amp': 'free'} # Radial velocity correction (rv) and amplitude correction (amp)
},
'lc': {
'mode': 'on', # Enable processing of light curve data when set to 'on'
'passband': 'TESS', # Passband in which the light curve was observed
'scaling': {'method': 'mean'}, # Method used to scale observed and synthetic light curve profiles
'corr': {'amp': None} # Amplitude correction (amp) for the light curve
}
})
# Construct the surface grid
# Define the method and parameters for constructing the stellar surface grid.
# Examples of available methods:
DIP.construct_surface_grid(method='phoebe2_marching', noes=3500) # Use the PHOEBE2 marching algorithm with about 3500 surface elements
#DIP.construct_surface_grid(method='healpy', nside=16) # Use the HEALPix grid with NSIDE = 16
#DIP.construct_surface_grid(method='trapezoid', nlats=40) # Use the trapezoid method with 40 latitude divisions
# Import initial local line profiles (LLPs) for the photosphere, cool spots, and hot spots.
# These profiles are used to model the local line intensities on the stellar surface.
# Not: If only light curve modeling is desired, these profiles are not needed.
# Load velocity data for the line profiles (e.g., photosphere, cool, and hot spots).
llp_vels = np.loadtxt('synth_lsds/synth_T5080.0_logg4.4_mh-0.14_mic1.93_lsd.out', skiprows=2)[:, 0]
# Load intensity data for the photosphere's local line profile.
llp_phot_int = np.loadtxt('synth_lsds/synth_T5080.0_logg4.4_mh-0.14_mic1.93_lsd.out', skiprows=2)[:, 1]
# Load intensity data for cool spots' local line profile.
llp_cool_int = np.loadtxt('synth_lsds/synth_T3800.0_logg4.4_mh-0.14_mic1.93_lsd.out', skiprows=2)[:, 1]
# Load intensity data for hot spots' local line profile (reusing the photospheric profile here as an example).
llp_hot_int = np.loadtxt('synth_lsds/synth_T5080.0_logg4.4_mh-0.14_mic1.93_lsd.out', skiprows=2)[:, 1]
# Set the loaded local line profiles in the DIP configuration for modeling line profiles.
DIP.set_local_profiles({
'line': {
'lp_vels': llp_vels, # Velocities for the local line profiles
'phot_lp_data': llp_phot_int, # Photosphere local line profile data
'cool_lp_data': llp_cool_int, # Cool spots local line profile data
'hot_lp_data': llp_hot_int # Hot spots local line profile data
}
})
# Import observed data
# Load observed atomic line data
line_paths = glob('target_lsds/*.out')
line_obs_data = []
line_mid_times = []
for i, line_path in enumerate(line_paths):
line_data = np.loadtxt(line_path, skiprows=2)
# Extract the mid-time of the observation from the filename
line_mid_time = float(line_path.split('/')[-1].split('_')[1].split("=")[1])
line_mid_times.append(float(line_mid_time))
line_obs_data.append(line_data)
# Load observed light curve data
lc_obs_data = np.loadtxt("target_lc/target_lc.txt")
# Prepare a dictionary to pass the observational data into the SpotDIPy class
# 'line' is for atomic line profiles (LSD profiles).
# - 'times' should be an array of mid-times for each observation, formatted consistently with "t0".
# - 'data' is a list where each element is a 2D array containing radial velocity, normalized intensity,
# and their corresponding errors for each observation.
#
# 'lc' is for the light curve profile.
# - 'times' should be an array of observation times, formatted consistently with "t0".
# - 'data' should be a 2D array where the first column contains flux values and the second column contains
# their corresponding errors.
input_data_dict = {
'line': {
'times': line_mid_times, # Mid-times for LSD profiles
'data': line_obs_data # Radial velocity, normalized intensity, and errors
},
'lc': {
'times': lc_obs_data[:, 0], # Times for light curve observations
'data': lc_obs_data[:, 1:] # Flux values and errors
}
}
# Pass the input data dictionary to the SpotDIPy class
DIP.set_input_data(input_data_dict)
# Reconstruct the stellar surface brightness distribution map
# `alpha`: Weight for chi-square of line profiles
# `delta`: Weight for chi-square of light curve
# `lmbd`: Weight for maximum entropy regularization
# `maxiter`: Maximum number of iterations
# `tol`: Convergence tolerance for stopping criteria
# Note: The duration of the optimization process depends on the total
# number of data points, the total number of pixels in the surface grid,
# and the tolerance value.
recons_result = DIP.reconstructor(alpha=1.0, delta=0.1, lmbd=1, maxiter=5500, tol=1e-7, disp=True)
# Plot the results with customized parameters
DIP.plot(plot_params={
'line_sep_prf': 0.06, # Separation between line profiles in the plot
'line_sep_res': 0.01, # Separation between line profile residuals
'mol_sep_prf': 0.3, # Separation between molecular line profiles in the plot
'mol_sep_res': 0.2, # Separation between molecular line profile residuals
'show_err_bars': True, # Whether to display error bars on the plot
'fmt': '%0.3f', # Format for numeric labels
'markersize': 2, # Size of the markers used in plots
'linewidth': 1, # Line width for plotted curves
'fontsize': 15, # Font size for labels
'ticklabelsize': 12 # Font size for axis tick labels
})
Help Improve SpotDIPy
If you encounter any bugs, errors, or unexpected behavior in SpotDIPy, or if you have suggestions for improvements, I’d love to hear from you! Your feedback is invaluable in making the code more robust and efficient.
Feel free to:
- Report issues by opening a GitHub Issue.
- Share your ideas or ask questions in the Discussions section.
- Reach out via email at 📧 enbahar@ankara.edu.tr for direct inquiries.
Your contributions and insights are greatly appreciated!
Citiation
If you use SpotDIPy in your research and publish a paper, please cite the following reference:
@ARTICLE{2024ApJ...960...60B,
author = {{Bahar}, Engin and {{\c{S}}enavc{\i}}, Hakan V. and {I{\c{s}}{\i}k}, Emre and {Hussain}, Gaitee A.~J. and {Kochukhov}, Oleg and {Montes}, David and {Xiang}, Yue},
title = "{First Chromospheric Activity and Doppler Imaging Study of PW And Using a New Doppler Imaging Code: SpotDIPy}",
journal = {\apj},
keywords = {Stellar activity, Doppler imaging, Starspots, 1580, 400, 1572, Astrophysics - Solar and Stellar Astrophysics},
year = 2024,
month = jan,
volume = {960},
number = {1},
eid = {60},
pages = {60},
doi = {10.3847/1538-4357/ad055d},
archivePrefix = {arXiv},
eprint = {2310.14865},
primaryClass = {astro-ph.SR},
adsurl = {https://ui.adsabs.harvard.edu/abs/2024ApJ...960...60B},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
Your citation would be greatly appreciated and help support the development of this code.
Project details
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 spotdipy-0.0.7.tar.gz.
File metadata
- Download URL: spotdipy-0.0.7.tar.gz
- Upload date:
- Size: 278.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
834f8fa3db6f1ca81dea8ec5cbe8f70b133f79add52c251925dd758bd3c826fe
|
|
| MD5 |
69b66c9b80f8a1ea409abe36e4ef80a6
|
|
| BLAKE2b-256 |
c983958db797ec7611d25fa9c2a8968fd9145ea286543e794610f6322e6a098d
|
File details
Details for the file spotdipy-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: spotdipy-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20f0f8bc099c3e778372a0f1782de88b5dda0da624b6007eda0f0f42d6b6a774
|
|
| MD5 |
999a94261c07438421059e3fa5fa3817
|
|
| BLAKE2b-256 |
40076f9cf66def29d4a25eec726a1beb94db142a84be9c18c6c942742cdda410
|