Results 283 comments of Paul Falstad

It doesn't have a schematic. It's implementing using java code. https://github.com/sharpie7/circuitjs1/blob/master/src/com/lushprojects/circuitjs1/client/VCOElm.java

you want to measure the impedance of a circuit? or you want to add a complex impedance component to a circuit?

The problem with doing anything related to impedance or phasors is that I need to know the frequency of the source, which has to be sinusoidal. I suppose could have...

So when saving a circuit, you want to save the implementation (the subcircuit layout) so they can be viewed? Or maybe, when creating a subcircuit, I could add an option...

I'd like to keep it a text file if possible. The escaped strings are ugly but we can get rid of those without completely changing the file format.

A lot of good examples in there. Thank you!

This is probably roundoff error. Some of the component values are a bit extreme. If you change the timestep to 50m it goes away.

what's a*(5/a)? that's just 5 isn't it? the expression a*(5/a) is undefined if a is 0.. that's why you're getting that error. the expression should not be infinite at any...

I'm confused about why you want to do that. I could come up with something, but it wouldn't be practical circuit so there wouldn't be much point. Are you trying...

steprate determines how many iterations we will try to do per second. deltaTime is in milliseconds. so steprate*deltaTime/1000 is the number of steps we should be doing in deltaTime. If...