1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
AC_TYPE = 0
TRANS_TYPE = 1
DC_TYPE = 2
import sys
import os
import json
from decimal import Decimal
class DataExtraction:
def __init__(self,analysisInfo,VOLT_FILE,CURRENT_FILE):
self.data = []
self.analysisInfo = analysisInfo.split() #['.dc', 'v1', '-1e-00', '5e-00', '0.02e-00', 'i1', '-1e-03', '5e-03', '1e-03']
self.VOLT_FILE = VOLT_FILE
self.CURRENT_FILE = CURRENT_FILE
self.val_dict = {}
self.voltList = []
self.currentList = []
def openFile(self):
try:
with open(self.VOLT_FILE) as volt_reader:
self.allv = volt_reader.read()
self.allv = self.allv.split("\n")
with open(self.CURRENT_FILE) as current_reader:
self.alli = current_reader.read()
self.alli = self.alli.split("\n")
except Exception as e:
print "Exception Message : ",str(e)
for line in self.alli[3].split(" "):
if len(line):
self.currentList.append(line)
self.currentList = self.currentList[2:]
#print "current list ----->", self.currentList
for line in self.allv[3].split(" "):
if len(line):
self.voltList.append(line)
self.voltList = self.voltList[2:]
#print "volt list ------>", self.voltList
numberList = self.calculateNumbers()
plotType = self.createDataList(numberList)
return plotType
def calculateNumbers(self):
lines_number = partition_number = volt_number = current_number = 0
for line in self.allv[3:]:
if "Index" in line:
volt_number += 1
for line in self.alli[3:]:
if "#branch" in line:
current_number += 1
self.dec = 0
if self.analysisInfo[0][-3:]==".ac":
self.analysisType = AC_TYPE
if "dec" in self.analysisInfo:
self.dec = 1
for line in self.allv[3:]:
lines_number += 1
if "Index" in line:
partition_number += 1
if "AC" in line:
break
elif ".tran" in self.analysisInfo:
self.analysisType = TRANS_TYPE
for line in self.allv[3:]:
lines_number += 1
if "Index" in line:
partition_number += 1
if "Transient" in line:
break
else:
self.analysisType = DC_TYPE
for line in self.allv[3:]:
lines_number += 1
if "Index" in line:
partition_number += 1
if "DC" in line:
break
volt_number //= partition_number
current_number //= partition_number
return [lines_number, volt_number, current_number]
def createDataList(self, numberList):
lines_number = numberList[0] + 1
volt_number = numberList[1]
current_number = numberList[2]
dec = [self.analysisType, self.dec]
vnum = len(self.allv[5].split("\t"))
inum = len(self.alli[5].split("\t"))
len_volt = len(self.voltList)
len_current = len(self.currentList)
full_data = []
#creating data
for i in xrange(1, volt_number):
for line in self.allv[3+i*lines_number].split(" "):
if len(line) > 0:
self.voltList.append(line)
self.voltList.pop(len_volt)
self.voltList.pop(len_volt)
len_volt = len(self.voltList)
for i in xrange(1, current_number):
for line in self.alli[3+i*lines_number].split(" "):
if len(line) > 0:
self.currentList.append(line)
self.currentList.pop(len_current)
self.currentList.pop(len_current)
len_current = len(self.currentList)
p = k = m = 0
for line in self.alli[5:lines_number-1]:
if len(line.split("\t")) == inum:
j2 = line.split("\t")
j2.pop(0)
j2.pop(0)
j2.pop()
if self.analysisType == 0:
j2.pop()
for i in xrange(1, current_number):
j3 = self.alli[5+i*lines_number+k].split("\t")
j3.pop(0)
j3.pop(0)
if self.analysisType == 0:
j3.pop()
j3.pop()
j2 = j2 + j3
full_data.append(j2)
k += 1
for line in self.allv[5:lines_number-1]:
if len(line.split("\t")) == vnum:
j = line.split("\t")
j.pop()
if self.analysisType == 0:
j.pop()
for i in xrange(1, volt_number):
j1 = self.allv[5+i*lines_number+p].split("\t")
j1.pop(0)
j1.pop(0)
if self.analysisType == 0:
j1.pop()
if self.voltList[len(self.voltList)-1] == 'v-sweep':
self.voltList.pop()
j1.pop()
j1.pop()
j = j + j1
j = j + full_data[m]
m += 1
j = "\t".join(j[1:])
j = j.replace(",", "")
self.data.append(j)
p += 1
self.volts_length = len(self.voltList)
self.voltList = self.voltList + self.currentList
#print dec
return dec
def computeAxes(self):
nums = len(self.data[0].split("\t"))
#print "i'm nums:",nums
x_cordinates = []
y_cordinates = []
var = self.data[0].split("\t")
for i in range(1,nums):
y_cordinates.append([float(var[i])])
for i in self.data[1:]:
temp = i.split("\t")
for j in range(1,nums):
y_cordinates[j-1].append(float(temp[j]))
for i in self.data:
temp = i.split("\t")
x_cordinates.append(float(temp[0]))
for i in xrange(0, nums-1):
self.val_dict[self.voltList[i]] = y_cordinates[i]
self.val_dict['x-axis'] = x_cordinates
def main():
analysisInfo = sys.argv[1]
VOLT_FILE = sys.argv[2]
CURRENT_FILE = sys.argv[3]
app = DataExtraction(analysisInfo,VOLT_FILE,CURRENT_FILE)
app.openFile()
app.computeAxes()
print json.dumps(app.val_dict)
# Call main function
if __name__ == '__main__':
# Create and display the splash screen
main()
|