New Reply

Ngspice Capacitor Simulation problem

 
Share Thread Thread Tools
Jul1-12, 06:20 PM   #1
 

Ngspice Capacitor Simulation problem


I intend to use circuit simulation (namely ngspice because it runs on linux) to aid me through electric circuit studies.

However, I recently encountered a problem in a circuit I was simulating: the plots were not logical - a capacitor was taking no time to reach its maximum voltage.

At first I thought it was only my machine so I tried it on PSPICE and on ngspice online simulator, which yielded the plot attached with the following netlist:
Code:
A simple RC circuit
V0 n1 GND DC 12V
R1 n2 GND 10k
C2 n1 n2 10F
.END
Is the netlist wrong?
I found that the following netlist does model the capacitor alright, but the first I generated with a circuit designer application (gEDA) and the second I based on a website example.

Working netlist:
Code:
Test circuit
V0 n1 GND DC 10V
R1 n1 n2 3.3k
C2 n2 GND 47uF
.END
Attached Thumbnails
plot0.png  
PhysOrg.com
PhysOrg
engineering news on PhysOrg.com

>> NASA: Austin, calling Austin. 3-D pizzas to go
>> Research suggests modular design competence can benefit new product development
>> Army ground combat systems adopts tool for choosing future warfighting vehicles
Jul1-12, 08:09 PM   #2
 
Quote by wolterh View Post
However, I recently encountered a problem in a circuit I was simulating: the plots were not logical - a capacitor was taking no time to reach its maximum voltage.
Your netlist is not wrong, it describes a high-pass filter (the second one is a low-pass filter). But you're plotting the voltage of the ideal voltage source when it turns on. Add some internal resistance to it and see what happens.
Jul1-12, 09:08 PM   #3
 
Recognitions:
Science Advisor Science Advisor
Try removing the F from the 10 Farad capacitor. Just leave it as 10.

The simulator knows that the unit of capacitance is Farads, but it looks for modifiers like "k" or "μ" after the number.

It would assume you mean "femto" if you put an F there.
Jul2-12, 12:22 AM   #4
 

Ngspice Capacitor Simulation problem


As mentioned before, the circuit as you have it is a high pass filter. If you want to do AC simulation, you can go to www.ngspice.com and the following in the netlist textbox:

A simple RC circuit
V0 n1 GND DC 12V AC 1V
R1 n2 GND 10k
C2 n1 n2 10F

.AC DEC 10 1 1e10

.END

and then "db(v(n2))" in the plot textbox. You'll get a plot with high pass filter response, but with the pole at very high frequency. This is because your capacitor is really small--10 femto farads (10e-15). If you don't have the "F" then you'd end up with 10 farads--a much larger value than you may want also.

To see a transient step response of the capacitor, put the following into the netlist textbox:

A simple RC circuit
V0 n1 GND DC 12V AC 1V
R1 n2 GND 10k
C2 n1 n2 10n

.ic v(n2)=12V

.TRAN 100n 500u

.END

and then "v(n2)" into the plot textbox. Here I used a 10nF capacitor and an initial condition on v(n2) so that you could see it transition from 12V to GND.
Jul2-12, 12:49 AM   #5
 
I'm sorry I have been trying to reply this post for hours but my internet just keeps dying. Thanks for your answers, they are appreciated much!

gnurf: I have not researched on how to add an internal resistance to a source but the resistor present in the circuit (between nodes n2 and GND) does the same role.

vk6kro: I would say you have nailed the problem! Because I had estimated a time constant for the circuit with 10 Farads, the time interval and time step I was taking were useless for a 10 fF capacitor, which ngspice was interpreting.

ngspice.com: I was trying to do a transient analysis, but the other simulation tips you provided may prove useful for me in the future or for some other thread visitor!

Thanks for your answers. We can consider this thread closed from now on.
New Reply

Tags
capacitor, ngspice, pspice, simulation
Thread Tools


Similar Threads for: Ngspice Capacitor Simulation problem
Thread Forum Replies
NGSPICE gives wrong results! Electrical Engineering 4
Ngspice to PSpice conversion Electrical Engineering 8
Capacitor Problem involving a slab of Copper between a Capacitor Introductory Physics Homework 1
simulation of 3D resistance problem General Engineering 0
comsol/capacitor simulation Classical Physics 0