Symbolic/Examples/Circuits

From PrattWiki
Revision as of 16:50, 24 January 2023 by DukeEgr93 (talk | contribs) (Python)
Jump to navigation Jump to search

Brute Force 1

The following example shows the "brute force" method of setting up and solving for all the element currents and voltages for a simple resistive circuit and then using those solutions to solve for auxiliary information (in this case, some powers). The circuit involved is:

ExCirLabel.png

Equations

Element Equations

Mainly, these are Ohm's Law equations for the resistors, so:

R1:v1=i1R1R2:v2=i2R2

KCL Equations

The number of independent KCL equations s one less than the number of nodes, so in this case, 2. Note: all three nodal KCL equations are written below, but node nc's is not used in the Maple worksheet.

KCL,na:ia+i1+i2=0KCL,nb:i2+ib=0KCL,nc:iai1ib=0

KVL Equations

The number of independent KVL equations is equal to the number of meshes for a 2-D circuit, or to the number of elements, minus the number of nodes, plus one for circuits in general. In this case, that is 2 independent KVL (two meshes, or 3 elements - 3 nodes + 1 = 2). For the brute force method, just use the mesh equations:

KVL,l1:va+v1=0KVL,l2:v1+v2+vb=0

Auxiliary Equations

For this example, the auxiliary equations will be used to determine the power delivered by each source and the power absorbed by each resistor:

pdel,ia=vaiapdel,vb=vbibpabs,R1=v1i1pabs,R2=v2i2

Note that all elements except for ia are labeled passively.

Code

Maple

The Maple worksheet for this example is available in the Maple Cloud at this Maple Cloud Link. You can view the worksheet even if you do not have Maple; if you have Maple, you can download the worksheet and edit it.

The code assumes that:

R1=1000 ΩR2=2200 Ωia=0.005 Avb=12 V

Python

Starting in 2022, we are looking at using Python to perform symbolic calculations. You can view three Notebook forms on a Google Drive Folder that has three versions of the example:

  • "nosub" uses no subscripts for the variables; SymPy will automatically make variables with single digits at the end print with subscripts (like i1) but will not do subscripts for things like ia
  • "allsub" uses subscripts for all the variables - which requires also putting the subscripts in the code
  • "dispsub" uses a two-step process for relating simple variable names like ia to more complicated display forms such as ia. It even relates the variable name pdelia to the display form pdel,ia

The notebooks pull the sym_helper file from its home on GitHub if needed.

You can look at the Trinket below, which will also grab sym_helper if needed. It uses the "nosub" version of the code because Trinket apparently, among other things, doesn't know how to make a subscript b print correctly...