:py:mod:`pytmosph3r.chemistry.ace3d` ==================================== .. py:module:: pytmosph3r.chemistry.ace3d Module Contents --------------- .. py:class:: ACE3D(gases=None, metallicity=1, co_ratio=0.457) Bases: :py:obj:`pytmosph3r.chemistry.chemistry.Chemistry` Use ACE chemistry on each vertical column. See taurex model (https://taurex3-public.readthedocs.io/en/latest/user/taurex/chemistry.html). AgĂșndez, M., Venot, O., Iro, N., et al. 2012, AandA, 548,A73 :param metallicity: Stellar metallicity in solar units :type metallicity: float :param co_ratio: C/O ratio :type co_ratio: float .. py:method:: inputs() .. py:method:: build(atmosphere) General function that will be called to compute the chemistry after :attr:`atmosphere` has been initialized. It iterates over :attr:`gases` by calling :func:`compute_vmr` on each gas. :param atmosphere: Altitude-based atmosphere in which to compute the volume mixing ratios of :attr:`gases`. :type atmosphere: :class:`~pytmosph3r.atmosphere.altitudeatmosphere.AltitudeAtmosphere` :param input_atmosphere: Input atmosphere if you need it (with input mix_ratios for example). :type input_atmosphere: :class:`~pytmosph3r.atmosphere.inputatmosphere.InputAtmosphere`, optional