-
I want to get the transfer function of an integrator. I wrote the schematics below from lcapy import Circuit, t, oo Vo = a[1].V The result is proportional to 1/s^2 while it should only be proportional to 1/s. Can anyone help me out here. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
You have specified an initial condition for the capacitor so the circuit is solved as an initial value problem using Laplace transforms. In this case your current source has a Laplace transform of Is / s so you are getting the step response. What you want is the transimpedance of the circuit. You can achieve this several ways, say by using a Dirac delta for the current source:
|
Beta Was this translation helpful? Give feedback.
-
Oops, that should have been
Alternatively, you can specify an arbitrary s-domain current:
|
Beta Was this translation helpful? Give feedback.
-
Thank you :) |
Beta Was this translation helpful? Give feedback.
Oops, that should have been
Alternatively, you can specify an arbitrary s-domain current: