diff options
author | Sunil Shetye | 2019-06-25 15:00:55 +0530 |
---|---|---|
committer | GitHub | 2019-06-25 15:00:55 +0530 |
commit | 32acf14bfbfa5d5874ebfdbf88ef64777f05e3f8 (patch) | |
tree | fc23c9c31d0821fa0deec33aa452f70df602217d /src/kicadtoNgspice/Processing.py | |
parent | 73399832febef4407eb8d8a9e57d535f18b18654 (diff) | |
parent | c263636b86d204c9500ed2fe58e4f9db74c28bee (diff) | |
download | eSim-32acf14bfbfa5d5874ebfdbf88ef64777f05e3f8.tar.gz eSim-32acf14bfbfa5d5874ebfdbf88ef64777f05e3f8.tar.bz2 eSim-32acf14bfbfa5d5874ebfdbf88ef64777f05e3f8.zip |
Merge pull request #101 from nilshah98/sphinx
Made pep8 compliant, Resolves #100
Diffstat (limited to 'src/kicadtoNgspice/Processing.py')
-rw-r--r-- | src/kicadtoNgspice/Processing.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/kicadtoNgspice/Processing.py b/src/kicadtoNgspice/Processing.py index ebbd3429..216383e6 100644 --- a/src/kicadtoNgspice/Processing.py +++ b/src/kicadtoNgspice/Processing.py @@ -16,6 +16,7 @@ class PrcocessNetlist: """ - Read the circuit file and return splitted lines """ + def readNetlist(self, filename): f = open(filename) data = f.read() @@ -31,6 +32,7 @@ class PrcocessNetlist: - Read Parameter information and store it into dictionary - kicadNetlis is the .cir file content """ + def readParamInfo(self, kicadNetlis): param = {} print("=========================KICADNETLIST========================") @@ -55,6 +57,7 @@ class PrcocessNetlist: - Preprocess netlist (replace parameters) - Separate infoline (first line) from the rest of netlist """ + def preprocessNetlist(self, kicadNetlis, param): netlist = [] for eachline in kicadNetlis: @@ -125,6 +128,7 @@ class PrcocessNetlist: - Then check for type whether ac, dc, sine, etc... - Handle starting with h and f as well """ + def insertSpecialSourceParam(self, schematicInfo, sourcelist): schematicInfo1 = [] print("=============================================================") @@ -462,7 +466,7 @@ class PrcocessNetlist: "a" + str(k) + " (" + words[1] + " " + words[2] + ") (interNode_" + str(interMediateNodeCount) + " " + words[3] + ") " - ) + ) modelLine += compName + "_primary" schematicInfo.append(modelLine) k = k + 1 |