Skip to content

Commit

Permalink
Remove blank after der
Browse files Browse the repository at this point in the history
  • Loading branch information
beutlich committed Mar 31, 2021
1 parent 103210b commit 6f0a4e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions chapters/connectors.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1041,9 +1041,9 @@ \subsubsection{An Overdetermined Connector for Power Systems}\label{an-overdeter
Connections.branch(p.theta,n.theta); //edge in virtual graph
// since n.theta = p.theta
n.theta = p.theta; // pass angle theta between plugs
omega = der (p.theta); // frequency of source
omega = der(p.theta); // frequency of source
zeros(3) = p.i + n.i;
X*der (p.i) + omega*Y*p.i = p.v - n.v;
X*der(p.i) + omega*Y*p.i = p.v - n.v;
end AC_Inductor
\end{lstlisting}
At the place where the source frequency, i.e., essentially
Expand Down
4 changes: 2 additions & 2 deletions chapters/functions.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1369,9 +1369,9 @@ \subsection{Using the Derivative Annotation}\label{using-the-derivative-annotati

ThermodynamicState state1 = setState_ph(p=$\ldots$, h=$\ldots$, phase=$\ldots$);
Density rho1=density(state1);
DensityDerivative d_rho1=der (rho1);
DensityDerivative d_rho1=der(rho1);
Density rho2=density(setState_ph(p=$\ldots$, h=$\ldots$, phase=$\ldots$));
DensityDerivative d_rho2=der (rho2);
DensityDerivative d_rho2=der(rho2);
\end{lstlisting}
\end{example}

Expand Down

0 comments on commit 6f0a4e4

Please sign in to comment.