Download SSP models

Link to the official sites of the SSP models currently used in PST:

Ingesting new SSP models is a straightforward exercise. Users only need to create a new SSP model class by inheriting from the base class SSPBase:

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.