diff --git a/docs/api_reference/src/quantities.tex b/docs/api_reference/src/quantities.tex index 9ee9b82c5..92e9515dc 100644 --- a/docs/api_reference/src/quantities.tex +++ b/docs/api_reference/src/quantities.tex @@ -916,8 +916,19 @@ Otherwise, a type $x$ is an input symbolic constant. \end{itemize} \begin{example} -The input of \tcode{derived_unit, per>>} -is $\tcode{km}/\tcode{h}^2$. +Item by item, this algorithm step goes from the \Cpp{} parameter type +\tcode{derived_unit, per>} +\begin{itemize} +\item +to $\tcode{si::kilo_} \times \tcode{per}$ (product of \tcode{To}'s arguments), +\item +to $\tcode{si::kilo_} \times 1/\tcode{power}$ (product of \tcode{per}'s arguments as denominator), +\item +to $\tcode{si::kilo_} \times 1/\tcode{non_si::hour}^2$ (\tcode{power}s as powers), +\item +to $x \times 1/y^2$ where $x = \tcode{si::kilo_}$ and $y = \tcode{non_si::hour}$ (symbolic substitution) +in the mathematical domain. +\end{itemize} \end{example} \pnum