Translate

Translate

Sunday, October 13, 2013

Nodal Analysis

Nodal Analysis is a systematic method for performing circuit analysis.
Nodal analysis is a formalized procedure based on KCL equations.
Steps:
  1. Identify all nodes.
  2. Choose a reference node. Identify it with reference (ground) symbol. A good choice is the node with the most branches, or a node which can immediately give you another node voltage (e.g., below a voltage source).
  3. Assign voltage variables to the other nodes (these are node voltages.)
  4. Write a KCL equation for each node (sum the currents leaving the node and set equal to zero). Rearrange these equations into the form A*V1+B*V2=C (or similar for equations with more voltage variables.)
  5. Solve the system of equations from step 4. There are a number of techniques that can be used: simple substitution, Cramer's rule, the adjoint matrix method, etc.

Example
Given the Circuit below, find the voltages at all nodes.
Nodal example.png
node 0: V_0 = 0V\, (defined as ground node)
node 1: V_1 = 9V\, (free node voltage)
node 2: \frac{V_1 - V_2}{1k} = \frac{V_2 - V_0}{3k} + \frac{V_2 - V_3}{2k}

node 3: \frac{V_2 - V_3}{2k} = \frac{V_3 - V_0}{2k}
which results in the following system of linear equations: \left\{\begin{matrix} +11 V_2 & -3 V_3 & = & 54 \\ +1 V_2 & -2 V_3 & = & 0\end{matrix}\right.
therefore, the solution is: \left\{\begin{matrix} V_0 =0.00V \\ V_1 =9.00V \\ V_2 =5.68V \\ V_3 =2.84V\end{matrix}\right.
Another solution with KCL would be to solve node in terms of node 2;
\frac{V_2 - 9V}{1k} + \frac{V_2}{3k} + \frac{V_2}{4k} = 0

No comments:

Post a Comment