To perform an iteration of the Decoupled Newton-Raphson (NR) method for determining complex nodal voltages in an electrical system, we need to follow a systematic approach.
I'll guide you through each step, assuming you have a basic understanding of electrical circuits and matrix operations.
a) Deriving the Admittance Matrix
1. Identify Nodes: Label each node in the circuit (excluding the reference node).
2. Admittance for Each Element: Calculate the admittance (Y) of each circuit element. Admittance is the reciprocal of impedance (Z), i.e.,

3. Admittance Matrix Formation:
- The diagonal elements of the matrix
are the sum of all admittances connected to node i .
- The off-diagonal elements
are the negative sum of the admittance between nodes i and j . If there's no direct connection, it's zero.
b) Applying Gaussian Elimination
1. Formulate Equations: Use the admittance matrix to set up a set of linear equations representing the circuit.
2. Gaussian Elimination:
- Forward Elimination: Modify the matrix to an upper triangular form.
- Back Substitution: Solve for the unknowns (nodal voltages) from the last equation to the first.
c) Utilizing Kirchhoff's Voltage Law (KVL)
1. Loop Identification: Identify loops in the circuit.
2. Apply KVL: Write equations according to KVL for each loop. KVL states that the sum of voltages around any closed loop in a circuit must equal zero.
d) Modified Nodal Analysis
1. Node Equations: Write node equations for each non-reference node using KVL and element constitutive relations.
2. Incorporate Independent Sources: Modify the equations to include the effect of any independent voltage or current sources.
3. Solve the System: Use methods like Gaussian Elimination to solve the node equations.
Newton-Raphson Iteration
1. Initial Guess: Start with an initial guess for the node voltages.
2. Jacobian Matrix: Compute the Jacobian matrix of partial derivatives based on the power balance equations.
3. Update Voltages: Use the NR formula to update the node voltages.
![\[ V_{\text{new}} = V_{\text{old}} - [J]^(-1) * \text{Mismatch} \]](https://img.qammunity.org/2024/formulas/physics/high-school/u5rp183z04iqxwlye0mp4wsrmxukfkjve5.png)
4. Check Convergence: If the voltage changes are within a specified tolerance, the process has converged; otherwise, repeat with the new voltages.
This is a high-level overview. Each step involves detailed calculations and depends on the specific configuration and components of your electrical system.