4. The Gas Supply

4.1. Inflows, Star Formation, and Efficiency

Like the enrichment equation, the time derivative of the mass of the gas in the interstellar medium (ISM) \(M_\text{g}\) is a simple sum of source and sink terms. For an infall rate (IFR) \(\dot{M}_\text{in}\), star formation rate (SFR) \(\dot{M}_\star\), and outflow rate (OFR) \(\dot{M}_\text{out}\):

\[\dot{M}_g = \dot{M}_\text{in} - \dot{M}_\star - \dot{M}_\text{out} + \dot{M}_\text{r}\]

where \(\dot{M}_\text{r}\) is the rate of recycling from stars producing remnants and return gas to the ISM at their birth metallicity. Because VICE is implemented with a Forward Euler solution, this equation is evaluated via:

\[\Delta M_g \approx \dot{M}_g\Delta t = \dot{M}_\text{in}\Delta t - \dot{M}_\star \Delta t - \dot{M}_\text{out} \Delta t + \dot{M}_\text{r}\Delta t\]

By construction, VICE operates such that the user specifies either an infall history (\(\dot{M}_\text{in}\) in \(M_\odot yr^{-1}\) as a function of time), a star formation history (\(\dot{M}_\star\) in \(M_\odot yr^{-1}\) as a function of time), or the gas history (\(M_\text{g}\) in \(M_\odot\) as a function of time). The user also specifies a star formation efficiency timescale [1]:

\[\tau_\star \equiv \frac{M_g}{\dot{M}_\star}\]

Users may specify an arbitrary function of time in Gyr to describe \(\tau_\star\), whose units are assumed to be Gyr. With one of either \(\dot{M}_\text{in}\), \(\dot{M}_\star\), or \(M_\text{g}\) specified by the user, \(\tau_\star\), and the implementation of \(\dot{M}_\text{out}\) and \(\dot{M}_\text{r}\) discussed in this section, the solutions to \(\dot{M}_\text{in}\), \(\dot{M}_\star\), and \(M_g\) as functions of time are unique.

VICE also allows users to adopt a formulation of \(\tau_\star\) that depends on the gas supply; this is an application of the Kennicutt-Schmidt relation to the single-zone approximation. This is implemented as a power-law:

\[\tau_\star^{-1} = \tau_{\star,\text{spec}}^{-1} \left(\frac{M_g}{M_{g,\text{Schmidt}}}\right)^\alpha\]

where \(M_{g,\text{Schmidt}}\) is a normalizing gas supply and \(\tau_{\star,\text{spec}}\) is the user-specified \(\tau_\star\). The singlezone object will employ this scaling when the attribute schmidt = True.

Users may also allow \(\tau_\star\) to vary with the gas supply in a customized way by specifying a function which accepts a second parameter in addition to time in Gyr. In infall and gas modes, VICE will interpret the second parameter as the gas mass in \(M_\odot\); in star formation mode, VICE will interpret it as the star formation rate in \(M_\odot/yr\). While such an approach also allows the single power-law solution, such a model has a well-defined solution implemented in VICE’s C library, allowing them to not suffer from a decrease in computational speed.

Relevant Source Code:

  • vice/src/singlezone/ism.c

4.2. Outflows

In the astronomical literature, the strength/efficiency of outflows are typically quantified according to a dimensionless parameter referred to as the mass loading factor, defined as the ratio of the mass outflow rate to the star formation rate: \(\eta \equiv \dot{M}_\text{out}/\dot{M}_\star\). Johnson & Weinberg (2020) introduced a new parameter to generalize this, dubbed the “outflow smoothing time.” This is the timescale on which the star-formation rate is averaged (i.e. “smoothed”) to determine the outflow rate:

\[\dot{M}_\text{out} = \eta(t)\langle\dot{M}_\star\rangle_{\tau_\text{s}} = \frac{\eta(t)}{\tau_\text{s}}\int_{t - \tau_\text{s}}^t \dot{M}_\star(t') dt'\]

At early times when \(0 \leq t \leq \tau_\text{s}\), this average is taken over only the time interval from 0 to \(t\). This equation is approximated numerically according to:

\[\dot{M}_\text{out} \approx \eta(t) \frac{\Delta t}{\tau_\text{s}} \sum_{i = 0}^{\tau_\text{s}/\Delta t} \dot{M}_\star(t - i\Delta t)\]

Put simply, at each timestep VICE looks backs at the number of timesteps corresponding to the smoothing time, and determines the arithmetic mean of the star formation rate at those timesteps, then multiplies this number by \(\eta(t)\), which may be a user-specified function of time in Gyr. An advantage of this formulation is that when \(\tau_\text{s} < \Delta t\), VICE automatically recovers the traditional relation of \(\dot{M}_\text{out} = \eta(t)\dot{M}_\star(t)\).

Note

It is only the star formation rate which is time averaged. The mass loading factor is not time-averaged in any way.

Relevant Source Code:

  • vice/src/singlezone/ism.c

4.3. Recycling

As stars produce remnants, the mass that does not end up in the remnant is returned to the interstellar medium (ISM). The net effect of this from all previous episodes of star formation quantifies the rate of recycling:

\[\dot{M}_\text{r} = \int_0^t \dot{M}_\star(t - t') \dot{r}(t') dt'\]

where \(r(\tau)\) is the cumulative return fraction from a single stellar population of age \(\tau\). This is approximated numerically according to

\[\dot{M}_\text{r} \approx \sum_i \dot{M}_\star(t - i\Delta t) \left[r((i + 1)\Delta t) - r(i\Delta t)\right]\]

This is an instance where the quantization of star forming episodes due to the Forward Euler solution simplifies the implementation; the stars that form in previous timesteps contribute \(\Delta r\) of their mass back to the ISM.

In the case of instantaneous recycling, this simplifies further to

\[\dot{M}_\text{r} \approx r_\text{inst}\dot{M}_\star\]

Weinberg, Andrews & Freudenburg (2017) [2] demonstrate that \(r_\text{inst}\) = 0.4 (0.2) for a Kroupa [3] (Salpeter [4]) IMF are good approximations.

Note

Instantaneous recycling refers only previously produced nucleosynthetic products. While this term has been used to refer to instantaneous production of new heavy nuclei in the astronomical literature in the past, VICE retains this approximation only for enrichment from core collapse supernovae.

Relevant Source Code:

  • vice/src/singlezone/recycling.c

4.3.1. Extension to Multizone Models

In a multizone simulation, the rate of recycling may change due to stars forming in a given zone and moving out of it, which decreases the rate of recycling, as well as stars moving into it, which increases the rate of recycling. In these simulations, however, VICE knows the zone number of each star particle; the rate of recycling can then be determined from the initial mass and age of each star particle in a given zone. This is given by:

\[\dot{M}_\text{r}\Delta t = \sum_i M_i \left[r\left(\tau_i + \Delta t\right) - r\left(\tau_i\right)\right]\]

where \(M_i\) and \(\tau_i\) are the initial mass and age, respectively, of the \(i\)’th star particle in a given zone.

Relevant Source Code:

  • vice/src/multizone/recycling.c