Circuit Theory/Phasors/Examples

From Wikibooks, open books for an open world
Jump to navigation Jump to search

The steps have changed due to the introduction of phasors and differential equations.

  1. Label currents and voltages
  2. Count knowns and unknowns
  3. Write terminal equations
  4. Write loop equations
  5. Write junction equations
  6. Solve equations:
    1. Phasors: Time domain -> phasor domain -> Time Domain
    2. Laplace: Time domain -> s domain ->Time Domain
    3. Symbolic & Numeric for both
  7. Simulate (circuitlab everycircuit circuit falstad animations)
  8. Voltage/Current Check
  9. Power Computations
  10. Build Intuition

All these problems assume steady state. Later this will be called the "particular" solution to a first-order linear differential equation. Click on the equations to see where they came from. Matlab and Mupad files are included for every calculation. Clicking on the homogeneous equations will jump forward in the course.

Calculus diff
eq
Constants Power
Factor
LR LR Solution Similar RC
A, C
found
after
homogeneous
.93




none .93




already solved ... no differential equation!
.37




already solved ... no differential equation!
A, C
found
after
homogeneous
.37




Capacitor problems require a change in symbols. Swap current and voltage sources, swap parallel and series, and replace inductor with capacitors and the math is the same. ICE instead of ELI .. for both the terminal relations and phase check.

More complicated problems involve multiple reactive components rather than just one. This could lead into doing the above math within the context of solving multiple differential equations simultaneously ... which is easy to do with phasors.

2 resistor, capacitor, inductor, voltage source
3R, 2C, 3L, current and voltage source

Here is a summary of what was learned about matLab.

  • Internally, matLab keeps complex numbers in rectangular form.
  • The angle command converts complex numbers into an angle less than , adding a negative sign if in the 3rd or 4th quadrant.
  • Adding angles in the time domain requires mentally picturing phasors to figure out what is going on. The goal is to add numbers together no matter what. This may result in answers greater than or which will require some conversion back to a positive or negative number smaller than .
  • The laplace transform just converts the real into a cos term and the imaginary into a sin term with random + and - signs.

Mupad seems to reduce the number of mistakes, but it is frustrating. So here are some tips:

  • Don't have to Mupad subscript command. Mupad distinguishes i1 from i and I1 from I
  • Mupad uses "I" for rather than matLab's "i"
  • Mupad uses "PI" for π rather than matLab's "pi"
  • Mupad thinks "j" is a variable, not
  • When Mupad says "fail" with linsolve, most of the time the number of equations does not match the number of unknowns
  • When Mupad says "proc" and doesn't solve anything, remove the equal sign so "linsolve=([equations],[unknowns])" reads "linsolve([equations],[unknowns])"
  • When Mupad doesn't give numeric answers after entering "numeric::linsolve", look through all of the output for strange symbols you didn't type. Remember that Mupad often changes the font, the capitalization of what you typed when rendering the output.
  • The numeric answers from Mupad can be put in the clip board .. treat all the blue output as one line .. drag the mouse across the screen rather than trying to start at the top right and drag to the bottom left, or starting at the top and dragging down.
  • So far, can not get numeric answers in polar from within mupad. The mupad abs and arg functions return symbolic answers, but don't see to work on symbols representing variables (with known values), only symbols representing numbers. Use matlab instead.
  • In matlab, angle and arg are the same function.