summaryrefslogtreecommitdiff
path: root/src/kicadtoNgspice/Processing.py
diff options
context:
space:
mode:
authorfahim2015-04-22 17:52:04 +0530
committerfahim2015-04-22 17:52:04 +0530
commit342730ed59f75ebe1b5df0f886ae9e6bcd787ee6 (patch)
tree759bb8348608c67057aa58b4c654d9cb2339f62d /src/kicadtoNgspice/Processing.py
parentaf98d04dd0a438b7dd63ff72c71f0ceb695fe704 (diff)
downloadeSim-342730ed59f75ebe1b5df0f886ae9e6bcd787ee6.tar.gz
eSim-342730ed59f75ebe1b5df0f886ae9e6bcd787ee6.tar.bz2
eSim-342730ed59f75ebe1b5df0f886ae9e6bcd787ee6.zip
Subject: Added Device Libarary Tab.Few Changes in Workspace class.
Description: Completed the Device Library auto creation of Widget. Added the information to schematicInfo.Hence to the final ".cir.out" file. Added sample device library. Deleted/Comment unwanted print statement. Added details of function in the comment.
Diffstat (limited to 'src/kicadtoNgspice/Processing.py')
-rw-r--r--src/kicadtoNgspice/Processing.py93
1 files changed, 5 insertions, 88 deletions
diff --git a/src/kicadtoNgspice/Processing.py b/src/kicadtoNgspice/Processing.py
index 63f38bb2..6fb79921 100644
--- a/src/kicadtoNgspice/Processing.py
+++ b/src/kicadtoNgspice/Processing.py
@@ -5,6 +5,10 @@ from xml.etree import ElementTree as ET
class PrcocessNetlist:
+ """
+ This class include all the function required for pre-proccessing of netlist
+ before converting to Ngspice Netlist.
+ """
modelxmlDIR = '../modelParamXML'
def __init__(self):
pass
@@ -75,62 +79,7 @@ class PrcocessNetlist:
schematicInfo.append(eachline)
return optionInfo,schematicInfo
- def getModelSubcktList(self,schematicInfo,modelList,subcktList):
- #Processing Netlist for modellist and subcktlist details
- for eachline in schematicInfo:
- words = eachline.split()
- if eachline[0]=='d':
- modelName=words[3]
- if modelName in modelList:
- continue
- else:
- modelList.append(modelName)
- elif eachline[0]=='q':
- modelName=words[4]
- index=schematicInfo.index(eachline)
- schematicInfo.remove(eachline)
- schematicInfo.insert(index,words[0]+" "+words[3]+" "+words[2]+" "+words[1]+" "+words[4])
- if modelName in modelList:
- continue
- else:
- modelList.append(modelName)
- elif eachline[0]=='m':
- modelName=words[4]
- index=schematicInfo.index(eachline)
- schematicInfo.remove(eachline)
- '''
- width=raw_input(' Enter width of mosfet '+words[0]+'(default=100u):')
- length=raw_input(' Enter length of mosfet '+words[0]+'(default=100u):')
- multiplicative_factor=raw_input(' Enter multiplicative factor of mosfet '+words[0]+'(default=1):')
-
- if width=="": width="100u"
- if multiplicative_factor=="": multiplicative_factor="100u"
- if length=="": length="100u"
- schematicInfo.insert(index,words[0]+" "+words[1]+" "+words[2]+" "+words[3]+" "+words[3]+" "+words[4]+" "+'M='+multiplicative_factor+" "+'L='+length+" "+'W='+width)
- '''
-
- schematicInfo.insert(index,words[0]+" "+words[1]+" "+words[2]+" "+words[3]+" "+words[3]+" "+words[4])
- if modelName in modelList:
- continue
- modelList.append(modelName)
- elif eachline[0]=='j':
- modelName=words[4]
- index=schematicInfo.index(eachline)
- schematicInfo.remove(eachline)
- schematicInfo.insert(index,words[0]+" "+words[1]+" "+words[2]+" "+words[3]+" "+words[4])
- if modelName in modelList:
- continue
- else:
- modelList.append(modelName)
- elif eachline[0]=='x':
- subcktName=words[len(words)-1]
- if subcktName in subcktList:
- continue
- else:
- subcktList.append(subcktName)
- return modelList,subcktList
-
def insertSpecialSourceParam(self,schematicInfo,sourcelist):
#Inser Special source parameter
schematicInfo1=[]
@@ -337,39 +286,7 @@ class PrcocessNetlist:
#print "Count",count
#print "UnknownModelList",unknownModelList
#print "MultipleModelList",multipleModelList
- '''
- if compType=="gain":
- schematicInfo.append("a"+str(k)+" "+words[1]+" "+words[2]+" "+compName)
- k=k+1
- #Insert comment at remove line
- schematicInfo.insert(index,"* "+compline)
- print "-----------------------------------------------------------\n"
- print "Adding Gain"
- Comment='* Gain '+compType
- Title='Add parameters for Gain '+compName
- in_offset=' Enter offset for input (default=0.0): '
- gain=' Enter gain (default=1.0): '
- out_offset=' Enter offset for output (default=0.0): '
- print "-----------------------------------------------------------"
- modelList.append([index,compline,compType,compName,Comment,Title,in_offset,gain,out_offset])
- elif compType=="summer":
- schematicInfo.append("a"+str(k)+" ["+words[1]+" "+words[2]+"] "+words[3]+" "+compName)
- k=k+1
- #Insert comment at remove line
- schematicInfo.insert(index,"* "+compline)
- print "-----------------------------------------------------------\n"
- print "Adding summer"
- Comment='* Summer '+compType
- Title='Add parameters for Summer '+compName
- in1_offset=' Enter offset for input 1 (default=0.0): '
- in2_offset=' Enter offset for input 2 (default=0.0): '
- in1_gain=' Enter gain for input 1 (default=1.0): '
- in2_gain=' Enter gain for input 2 (default=1.0): '
- out_gain=' Enter gain for output (default=1.0): '
- out_offset=' Enter offset for output (default=0.0): '
- print "-----------------------------------------------------------"
- modelList.append([index,compline,compType,compName,Comment,Title,in1_offset,in2_offset,in1_gain,in2_gain,out_gain,out_offset])
- '''
+
return schematicInfo,outputOption,modelList,unknownModelList,multipleModelList