7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2024-11-22 10:34:40 +00:00
kicad/demos/simulation/power_supplies/boost/GenOpAmp.lib
Seth Hillbrand d25ac664f8 Adding additional demos
Some simulation demos curtesy of Holger Vogt and a new board design
curtesy of Pat Deegan
2024-01-15 16:52:33 -08:00

23 lines
658 B
Plaintext

* Simple generic single-pole OpAmp model
* Parameters are pole frequency, gain, offset, output resistance.
* the output is limited to the supply voltage
* Author Holger Vogt, Public Domain
.subckt genopa1 in+ in- vcc vee out params: POLE=20 GAIN=20k VOFF=10m ROUT=10
* add offset voltage
Voff in+ inoff dc {VOFF}
* gain stage with RC pole
G10 0 int inoff in- 100u
R1 int 0 {GAIN/100u}
C1 int 0 {1/(6.28*(GAIN/100u)*POLE)}
* output decoupling, output resistance
Eout 2 0 int 0 1
Rout 2 out {ROUT}
* output limited to vee, vcc
Elow lee 0 vee 0 1
Ehigh lcc 0 vcc 0 1
Dlow lee int Dlimit
Dhigh int lcc Dlimit
.model Dlimit D N=0.01
*
.ends