electrical network

Tags: #definition

electrical network

We shall treat an electrical network as a weighted graph G where

That satisfies Kirchoff's laws: (see potential function for another interpretation of these independent on direction of the graph)

  1. Kirchoff's first law: for any vG, the current coming in is equal to the current coming out:
ievIe=veiIe
  1. Kirchoff's second law: For all undirected cycles in G, the signed sum of the voltages in this cycle is 0.
  2. Ohm's law: for all eE,
Ve=IeRe

Properties

Associated to a network we have

We are concerned with finding the effective resistance of G: if we assume Un=0 and Ibat=1, then

Reff=detK~~detK~

where K~~ is obtained by removing the 1st and nth rows and columns of K, and K~ is obtained by removing the nth row and column of K.

One more trick for electrical networks: Y-delta transform

Examples

First, some examples from classical circuits:

Series connection

Suppose we have a series connection

\usepackage{circuitikz}
\usepackage{amsmath}
\usepackage{amsfonts}
\begin{document}
\begin{circuitikz}  
\draw  
(0,0) node[left]{}  
to[short, o-] (1,0)  
to[R=$R_1$] (3,0)  
to[R=$R_2$] (5,0)  
to[short, -o] (6,0) node[right]{};  
\end{circuitikz}
\end{document}

which corresponds to the graph G

\usepackage{tikz-cd}
\usepackage{amsmath}
\usepackage{amsfonts}
\begin{document}
\begin{tikzcd}
1 \arrow[r, no head, "\frac{1}{R_1}"] & 2 \arrow[r, no head, "\frac{1}{R_2}"] & 3 
\end{tikzcd} 
\end{document}

and if we glue together 1 and 3, we get the graph G

\usepackage{tikz-cd}
\usepackage{amsmath}
\usepackage{amsfonts}
\begin{document}
\begin{tikzcd}
1 \arrow[r, bend left, "\frac{1}{R_1}"] \arrow[r, bend right, "\frac{1}{R_2}"] & 2
\end{tikzcd} 
\end{document}

Thus,

Reff=1R1+1R21R11R2
Parallel connection

Suppose we have the parallel connection

\usepackage{circuitikz}

\begin{document}
\begin{circuitikz}
\draw (0,0) node[left]{} to[short, o-] (0,1)  
to[R=$R_1$] (4,1)  
to[short, -o] (4,0) node[right]{};  
  
\draw (0,0) to[short] (0,-1)  
to[R=$R_2$] (4,-1)  
to[short] (4,0);
\end{circuitikz} 
\end{document}

Then G is given by

\usepackage{tikz-cd}
\usepackage{amsmath}
\usepackage{amsfonts}
\begin{document}
\begin{tikzcd}
1 \arrow[r, bend left, "\frac{1}{R_1}"]\arrow[r, bend right, "\frac{1}{R_2}"] & 2
\end{tikzcd} 
\end{document}

and G is given by

\usepackage{tikz-cd}
\usepackage{amsmath}
\usepackage{amsfonts}
\begin{document}
\begin{tikzcd}
1 \arrow[loop up, "\frac{1}{R_1}"] \arrow[loop down, "\frac{1}{R_2}"]
\end{tikzcd} 
\end{document}

So

Reff=11R1+1R2
Wheatstone bridge

Note that this circuit is not the composition of series and parallel networks!
Pasted image 20260430132840.png|300
It has Kirchoff matrix

K=[R11+R21R11R210R11R11+R31+R41R31R41R21R31R21+R31+R51R510R41R51R41+R51]

So

K~=[R11+R21R11R21R11R11+R31+R41R31R21R31R21+R31+R51]

and

K~~=[R11+R31+R41R31R31R21+R31+R51]

And with these you can calculate the effective resistance of the graph (though it is a little bit tedious)