Node Voltage Method - Example 6 (Trick: How to handle CCCS)

preview_player
Показать описание
This video shows how to apply Node Voltage method to solve a circuit containing a Current Controlled Current Source (CCCS). CCCS can never cause a super node to be formed. The circuit equations are solved using Mathematica. The power associated with the CCCS is also determined. It also shows how to verify the solution using PSPICE and LTSPICE. The PySpice (Python) code to simulate the circuit is provided in the comments section below.

The video is organised as follows:
(00:00) [1] Setting up the problem
(02:10) [2] Writing circuit equations
(05:45) [3] Mathematica solution & CCCS power
(07:53) [4] PSPICE solution
(08:34) [5] LTSPICE solution
Рекомендации по теме
Комментарии
Автор

Thank you sir😇, what a teaching style, every point can easily understood.

devangrathod
Автор

# Pyspice (Python) code to simulate the circuit in the video is below.


import PySpice.Logging.Logging as Logging
logger = Logging.setup_logging()

from PySpice.Spice.Netlist import Circuit
from PySpice.Unit import *

circuit = Circuit('Circuit with CCCS')

circuit.F(1, 4, 3, 'Vtest', 3)

simulator = circuit.simulator(temperature=25, nominal_temperature=25)
analysis = simulator.operating_point()


for node in analysis.nodes.values():
print('Node {}: {:4.1f} V'.format(str(node), float(node)))

for node in analysis.branches.values():
print('Node {}: {:5.2f} A'.format(str(node), float(node)))


electriccircuits