maxdm=[(0.07,1.0,0.1),(1.0,300.0,1.0)],# list of tuples
fsample=1.0,
factor=1.0,
showtable=False):
"""
const_dt returns a list of masses spaced at a constant age difference
Args:
dt: the time difference between the masses (1000.0 Myr, used when logspacing==False)
dlogt : the delta log10(time) difference between masses (0.1 dex, used when logspacing==True)
mmin: the minimum mass to be considered in the stellar lifetime interpolation table (0.07 Msun)
mmax: the maximum mass to be considered in the stellar lifetime interpolation table (100.0 Msun)
nres: the resolution of the stellar lifetime interpolation table (100)
logspacing: whether to use log-spaced time, in which case dt is actually d(log10(t))
tmin: the minimum time to consider (Myr, default 3.0 Myr)
tmax: the maximum time to consider (Myr, default None which means we use the grid option 'max_evolution_time')
mindm: a list of tuples containing a mass range and minimum mass spacing in that range. The default is [(0.07,1.0,0.1),(1.0,300.0,1.0)] allocated a minimum dm of 0.1Msun in the mass range 0.07 to 1.0 Msun and 1.0Msun in the range 1.0 to 300.0 Msun. Anything you set overrides this.
maxdm: a list of tuples similar to mindm but specifying a maximum mass spacing. (None)
fsample: a global sampling (Shannon-like) factor (<1) to improve resolution (default 1.0, set to smaller to improve resolution)
factor: all masses generated are multiplied by this after generation
showtable: if True, the mass list and times are shown to stdout after generation
Returns:
Array of masses.
Example:
# these are lines set as options to Population.add_grid_value(...)