From b7738c770f32f8ae66bfb085c543847eac9d68f4 Mon Sep 17 00:00:00 2001 From: Ingmar Schoegl Date: Mon, 10 Jul 2023 07:15:38 -0600 Subject: [PATCH] [doc] Fix broken links --- doc/sphinx/yaml/species.rst | 8 ++++---- interfaces/cython/cantera/ck2yaml.py | 4 ++-- interfaces/cython/cantera/cti2yaml.py | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/sphinx/yaml/species.rst b/doc/sphinx/yaml/species.rst index de32bcac96..5d638b83b0 100644 --- a/doc/sphinx/yaml/species.rst +++ b/doc/sphinx/yaml/species.rst @@ -71,7 +71,7 @@ Fields of a species ``thermo`` entry used by all models are: NASA 7-coefficient polynomials ------------------------------ -The polynomial form `described here `__, +The polynomial form `described here `__, given for one or two temperature regions. Additional fields of a ``NASA7`` thermo entry are: @@ -104,7 +104,7 @@ Example:: NASA 9-coefficient polynomials ------------------------------ -The polynomial form `described here `__, +The polynomial form `described here `__, given for any number of temperature regions. Additional fields of a ``NASA9`` thermo entry are: @@ -140,7 +140,7 @@ Example:: Shomate polynomials ------------------- -The polynomial form `described here `__, +The polynomial form `described here `__, given for one or two temperature regions. Additional fields of a ``Shomate`` thermo entry are: @@ -173,7 +173,7 @@ Example:: Constant heat capacity ---------------------- -The constant heat capacity model `described here `__. +The constant heat capacity model `described here `__. Additional fields of a ``constant-cp`` thermo entry are: ``T0`` diff --git a/interfaces/cython/cantera/ck2yaml.py b/interfaces/cython/cantera/ck2yaml.py index 13b8e124e7..d802df0a8d 100644 --- a/interfaces/cython/cantera/ck2yaml.py +++ b/interfaces/cython/cantera/ck2yaml.py @@ -209,7 +209,7 @@ class Nasa7: """ Thermodynamic data parameterized as two seven-coefficient NASA polynomials. - See https://cantera.org/science/science-species.html#the-nasa-7-coefficient-polynomial-parameterization + See https://cantera.org/science/species-thermo.html#the-nasa-7-coefficient-polynomial-parameterization """ def __init__(self, *, Tmin, Tmax, Tmid, low_coeffs, high_coeffs, note=''): self.Tmin = Tmin @@ -240,7 +240,7 @@ class Nasa9: """ Thermodynamic data parameterized as any number of nine-coefficient NASA polynomials. - See https://cantera.org/science/science-species.html#the-nasa-9-coefficient-polynomial-parameterization + See https://cantera.org/science/species-thermo.html#the-nasa-9-coefficient-polynomial-parameterization :param data: List of polynomials, where each polynomial is written as diff --git a/interfaces/cython/cantera/cti2yaml.py b/interfaces/cython/cantera/cti2yaml.py index de6b45a49f..1963be042d 100644 --- a/interfaces/cython/cantera/cti2yaml.py +++ b/interfaces/cython/cantera/cti2yaml.py @@ -266,14 +266,14 @@ def __init__(self, name, atoms='', note = '', thermo=None, transport=None, The parameterization to use to compute the reference-state thermodynamic properties. This must be one of the entry types described in `Thermodynamic Property Models - `__. + `__. To specify multiple parameterizations, each for a different temperature range, group them in parentheses. :param transport: An entry specifying parameters to compute this species' contribution to the transport properties. This must be one of the entry types described in `Species Transport Coefficients - `__, + `__, and must be consistent with the transport model of the phase into which the species is imported. To specify parameters for multiple transport models, group the entries in parentheses.