Skip to content

Latest commit

 

History

History
64 lines (41 loc) · 1.58 KB

index.md

File metadata and controls

64 lines (41 loc) · 1.58 KB
<script src="js/analytics.js"></script> <script src="js/fraction.js"></script> <script src="js/circuitry.js"></script>

Equivalent Circuit Calculator

Diagram the parallel/series* circuit of resistors or capacitors below as a comma-separated list of numbers and arrays. Numbers (integer or decimal) represent resistance or capacitance values. Using nested arrays, you can indicate parallel branches.

What are you calculating?

 Resistance
 Capacitance

Enter the circuit diagram

<textarea id="circuit"></textarea>

Calculate

* For more complex topologies, you will need a different tool.


Diagram Examples

Each example shows an image of a circuit segment (with resistors or capacitors), followed by the text 'diagram' you would use to represent it in the box above.

100, 200, 300

30, [[0.7], [4, 12.5], [10]]

[[3], [2], [1]]

10, [
        [2, [
                [4], 
                [8], 
                [6]
            ]
        ], 
        [1.5], 
        [3]
    ]

No can do!

<script src="js/ui.js"></script>