Electronic – Modular Analog Circuit formula solver

analogsimulationtransistors

I've been thinking of making a database / program to make building analog circuits easier. I wanted to make sure there isn't anything else like this that I can contribute to instead of going through the effort of creating something from scratch. Lets see if I can describe what I am thinking about in my head in words:

With this program or database you would be able to select a type of circuit block and enter the desired specifications of the circuit. The solver would then automatically determine the resistor values, capacitor values and components necessary to meet the specifications set.

How about an example? Let's say that I want to design a BJT common emitter amplifier like the one:

enter image description here

When designing an amplifier like this I really only care about a few things and don't always want to go through and calculate everything every-time. I would input the maximum AC voltage in, the output impedance of the previous stage, the positive and negative rail voltages, and the desired voltage gain / current gain. In turn, it would be able to solve for the resistors & capacitor values needed and if it was REALLY cool, suggest a few transistors that would work for it.

Disclaimer – I'm sure I missed something…

Now with a simple circuit like this you may think, "Is this really necessary?" My answer to this is, not really. But imagine if you could now select these blocks, connect them together and design entire circuits. I have been thinking about using Falstad circuit simulator or circuit lab and some html scripting for this. There are many other things in my head right now about this, but I will keep them to myself to keep this post simple.

So, my overall questions are:
Is there anything else out there like this that I can contribute to? Is this completely impractical? Would anyone else be interested in having a tool like this?

Best Answer

I think you have good idea, however it already exists in some variations. I found one example for BJT cascode stage: http://www.daycounter.com/Calculators/Cascode/BJT-Cascode-Calculator.phtml

But also, I'm encouraging you to make it on your own way for few elementary different topologies, having in mind this few points: 1. it should be online; 2. it should be in pure javascript (not Java or Flash) 3. dialogs should be in schematic 4. SVG for that matter should be the markup language of choice

That's only my opinion. Good luck with this nice idea.