InternalParameters#
- class VSPEC.params.InternalParameters(header: Header, star: StarParameters, planet: PlanetParameters, system: SystemParameters, obs: ObservationParameters, psg: psgParameters, inst: InstrumentParameters, gcm: gcmParameters)#
Bases:
BaseParameters
Class to store parameters for a VSPEC simulation.
- Parameters:
header (Header) – The VSPEC simulation header.
star (StarParameters) – The parameters related to the star.
planet (PlanetParameters) – The parameters related to the planet.
system (SystemParameters) – The parameters related to the system.
obs (ObservationParameters) – The parameters related to the observation.
psg (psgParameters) – The PSG parameters.
inst (InstrumentParameters) – The instrument parameters.
gcm (gcmParameters) – The GCM parameters.
- star#
The parameters related to the star.
- Type:
- planet#
The parameters related to the planet.
- Type:
- system#
The parameters related to the system.
- Type:
- obs#
The parameters related to the observation.
- Type:
- psg#
The PSG parameters.
- Type:
- inst#
The instrument parameters.
- Type:
- gcm#
The GCM parameters.
- Type:
Attributes Summary
Get the atmosphere model.
The flux correction for the stellar radius and distance.
Get the generator model.
Get the geometry model.
Get the noise model.
The number of epochs to simulate for the planet model.
The number of epochs to simulate for the stellar model.
Get the surface model.
Get the target model.
Get the telescope model.
Methods Summary
from_dict
(d)Create and InternalParameters instance from a dictionary.
from_yaml
(path)Create an InternalParameters instance from a YAML file.
Write VSPEC parameters into a libpypsg PyConfig object.
Attributes Documentation
- atmosphere#
Get the atmosphere model.
- flux_correction#
The flux correction for the stellar radius and distance.
- Returns:
Correction for the solid angle of the star.
- Return type:
- generator#
Get the generator model.
- geometry#
Get the geometry model.
- noise#
Get the noise model.
- planet_total_images#
The number of epochs to simulate for the planet model.
- Returns:
The total number of epochs to simulate the planet.
- Return type:
- star_total_images#
The number of epochs to simulate for the stellar model.
- Returns:
The total number of epochs to simulate the star.
- Return type:
- surface#
Get the surface model.
- target#
Get the target model.
- telescope#
Get the telescope model.
Methods Documentation
- classmethod from_dict(d: dict) InternalParameters #
Create and InternalParameters instance from a dictionary.
- Parameters:
d (dict) – The dictionary to construct the class from.
- Returns:
An instance of InternalParameters.
- Return type:
- classmethod from_yaml(path: Path) InternalParameters #
Create an InternalParameters instance from a YAML file.
- Parameters:
path (Path) – The path to the YAML file.
- Returns:
An instance of the InternalParameters class.
- Return type:
- to_pyconfig()#
Write VSPEC parameters into a libpypsg PyConfig object.