Convenience Constructors for Published IMFs

We provide convenience constructors for published IMFs that can be called without arguments, or with positional arguments to set different minimum and maximum stellar masses. The provided constructors are

InitialMassFunctions.Chabrier2001LogNormalFunction
Chabrier2001LogNormal(mmin::Real=0.08, mmax::Real=Inf)

Function to instantiate the Chabrier 2001 lognormal IMF for single stars. Returns an instance of Distributions.Truncated(Distributions.LogNormal). See also Chabrier2003 which has the same lognormal form for masses below one solar mass, but a power law extension at higher masses.

source
InitialMassFunctions.Chabrier2003Function
Chabrier2003(mmin::Real=0.08, mmax::Real=Inf)

Function to instantiate the Chabrier 2003 IMF for single stars. This is a lognormal IMF with a power-law extension for masses greater than one solar mass. This IMF is valid for single stars and takes parameters from the "Disk and Young Clusters" column of Table 2 in the above paper. This will return an instance of LogNormalBPL. See also Chabrier2003System which implements the IMF for general stellar systems with multiplicity from this same paper, and Chabrier2001LogNormal which has the same lognormal form as this model but without a high-mass power law extension.

source
InitialMassFunctions.Chabrier2003SystemFunction
Chabrier2003System(mmin::Real=0.08, mmax::Real=Inf)

Function to instantiate the Chabrier 2003 system IMF. This is a lognormal IMF with a power-law extension for masses greater than one solar mass. This IMF is valid for general star systems with stellar multiplicity (e.g., binaries) and differs from the typical single-star models. Parameters for this distribution are taken from Equation 18 in the above paper. This will return an instance of LogNormalBPL. See also Chabrier2003 for the single star IMF.

source

Below is a comparison plot of the probability density functions of the literature IMFs we provide, all normalized to integrate to 1 over the initial mass range (0.08, 100.0) solar masses.

Example block output


We also provide a constructor for a single-power-law IMF,

InitialMassFunctions.PowerLawIMFFunction
PowerLawIMF(α::Real, mmin::Real, mmax::Real)

Descibes a single power-law IMF with probability distribution

\[ \frac{dn(m)}{dm} = A \times m^{-\alpha}\]

truncated such that the probability distribution is 0 below mmin and above mmax. A is a normalization constant such that the distribution integrates to 1 from the minimum valid stellar mass mmin to the maximum valid stellar mass mmax. This is simply Distributions.truncated(Distributions.Pareto(α-1,mmin);upper=mmax). See the documentation for Pareto and truncated.

source

which internally creates a truncated Pareto distribution. Similarly, we provide a constructor for a single-component LogNormal IMF,

InitialMassFunctions.LogNormalIMFFunction
LogNormalIMF(μ::Real, σ::Real, mmin::Real, mmax::Real)

Describes a lognormal IMF with probability distribution

\[ \frac{dn(m)}{dm} = \frac{A}{x} \, \exp \left[ \frac{ -\left( \log(x) - \mu \right)^2}{2\sigma^2} \right]\]

truncated such that the probability distribution is 0 below mmin and above mmax. A is a normalization constant such that the distribution integrates to 1 from the minimum valid stellar mass mmin to the maximum valid stellar mass mmax. This is simply Distributions.truncated(Distributions.LogNormal(μ,σ);lower=mmin,upper=mmax). See the documentation for LogNormal and truncated.

Arguments

source