Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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