Skip to content

luisCorl/e2scapy

Repository files navigation

Hi welcome to E2SCAPy V 0.1

E2SCAPy is : Electronic Symbolic Circuit Analisys on Python

here you can understand how to use this library...

1.- formulation:

######################################################################

E2SCAPy is simple and powerfull

######################################################################

E2SCAPy works whit MNA (Modify Nodal Analisys) theory and MNA is a formulation used for electrical circuit and MNA gets an algebraic system by the way Ax = z where A is a square matrix, x is incognigts vector and z is an input system where z have independent sources like voltage and current sources.

other important think is Netlist input, the algorithm works whit an Netlist input this netlist can be generated by spice tool in my personal experience I had been used LTSPICE works good and is open source, this Netlist should be a order for example if we have a circuit like this Netlist:

V1 1 0
R1 1 2
C1 2 0
L1 2 3
R2 3 0
I1 0 3

I recomend reorder al elements by type and numbrer like this:

V1 1 0
R1 1 2
R2 3 0
C1 2 0
L1 2 3
I1 0 3

and before save the Netlist whit .cir extension this is necesary put this .cir whit program.py in other words in the same folder.

Important if you have been interested in how to learn do Netlist easy and fast I recomend you visist scam MATLAB for Erik Cheever web site:

######################################################################

######################################################################

but dont worry I have been generated some examples you can check it in examples.

2.- solutions:

the solution for A matrix should be do it by Gauss Elimination (GE), adjunte matrix (ADJ) and Lower and Upper method (LU) all of this are implemented by Sympy and collected on ESCAPy but if you are searching power compute... Welcome to DDD (Determinant Diagram Decision) this idea was collected from Sheldon Tan and developed for me.

DDD Method should compute matrix whit size 4x4 and up. If you try compute a system 3x3 or 2x2 is important don't use DDD, just use Sympy method (ADJ, GE or LU).

DDD works whit symengine is fast and also DDD works better.

3.- outputs:

you can have an output in latex way or simple aoutput, and also you can have an estetic output, depend of size circuit, and oviously output size.

4.- instructions for use E2SCAPy:

you can use this repository or simple install library by pip,

######################################################################

pip install escapy

######################################################################

do a netlist, import escapy and put netlist name and extension let me show you:

import e2scapy #we import escapy
e2scapy.MNAf('3_OpAmps.cir')

A,x,z = e2scapy.formula_DDD()
Xout = e2scapy.resuelve_serie_DDD(A,x,z)
x_out = e2scapy.simplifica(Xout)

and if you prefer use an sympy method:

import e2scapy #we import e2scapy
e2scapy.MNAf('3_OpAmps.cir')

A,x,z = e2scapy.formula_sympy()
Xout = e2scapy.resuelve_LU(A,x,z)
x_out = e2scapy.simplifica(X1)

finaly in terminal you can write:

x_out 
x

or

print(x_out)
print(x)

remember all incongnits x verctor represent an output from x_out

be happy and anjoy!

About

circuit EDA symbolic library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages