From 544ae66b4ce80ab2137f1c5976c32879f941c5fe Mon Sep 17 00:00:00 2001 From: OLSSON Hans Date: Fri, 15 Oct 2021 17:22:17 +0200 Subject: [PATCH] ForgotToSave --- chapters/equations.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chapters/equations.tex b/chapters/equations.tex index 2a35c9b3c..60cec6dfc 100644 --- a/chapters/equations.tex +++ b/chapters/equations.tex @@ -889,8 +889,8 @@ \subsection{Recommended selection of start values}\label{recommended-selection-o If a \lstinline!start!-attribute is set by a possibly hierarchical modifier at the top level, then this \lstinline!start!-attribute has the highest confidence, namely 1 irrespectively on what level, the variable itself is declared. In case this process is \emph{tied} and at least one of the \lstinline!start!-attributes is equal to a parameter, which may be equal to another parameter (etc), the confidence number is propagated through these bindings and used to break the tie. Note that this is only applied if the expression is exactly the parameter - not an expression depending on one or more parameters. - \begin{example} +Simplified example showing the priority of start-values \begin{lstlisting}[language=modelica] model M1 Real x(start = 4.0); @@ -911,7 +911,7 @@ \subsection{Recommended selection of start values}\label{recommended-selection-o // over m1.y.start = 5.0 with confidence number 2. M2 m2(xStart = 3.0); // Using m2.x.start = m2.xStart = 3.0 with confidence number 2, and tie-breaker 1 -// over m2.y.start = m2.yStart = 5.0 with confidence number 2, and tie-breaker 1 +// over m2.y.start = m2.yStart = 5.0 with confidence number 2, and tie-breaker 2 \end{lstlisting} \end{example} \end{nonnormative}