Download SSP models =================== Link to the official sites of the SSP models currently used in PST: - `(Py)PopStar `_ See `Mollá et al 2009 `_ and `Millán-Irigoyen et al 2021 `_ for details. To increase the read speed, these models are converted into FITS files. See `instructions `_ for ingesting the models in the PST format. - `Granada-MILES `_ - `XSL `_ - `Bruzual & Charlot 2003 `_ See `instructions `_ for ingesting the models in the PST format. Ingesting new SSP models is a straightforward exercise. Users only need to create a new SSP model class by inheriting from the base class :class:`SSPBase`: .. code-block:: python from pst.SSP import SSPBase class MyNewSSPModel(SSPBase): def __init__(self, *args, **kwargs): # Do some stuff to initialise the main SSP properies self.initialise_model() def initialise_model(self): self.metallicities = ... self.ages = ... self.L_lambda = ... The SSP model must always include these three properties for it work.