#!/usr/bin/python # QUCS->Python+pylab converter ver.1.0 # Public domain code, written by Wojciech M. Zabolotny # ( wzabise.pw.edu.pl ) 20.01.2009 import sys import pylab class qucs_dep_var: def __init__(this,vals,ind_vars): this.val=vals this.ind_vars=ind_vars class qucs_data: def __init__(this,fname=""): this.indeps={} this.deps={} if fname != "": f=open(fname,"rb") l=f.readline().strip() # In the first line check whether we have a qucs data if l != "": raise("This is not a qucs data file!") # Now we should start reading dependent vars, and independent vars # The next line should be either dependent variable or independent variable while True: l=f.readline().strip() if l=="": break if l[0:6]=="" l=infile.readline().strip() if l != "": raise("Wrong syntax in line: "+l) #Reshape the data buffer into the multi-dimensional array dta=pylab.reshape(dta,dims,'FORTRAN') this.deps[vnames[0]]=qucs_dep_var(dta,vnames[1:]) def create_indep(this,ldef, infile): #Create the independent variable with the name defined in the first field #In the first line we should find the variable name and its length [vname, vsize]=ldef.split() vsize=int(vsize) #Create the empty data dta = pylab.zeros(vsize,complex) #Read the data for i in xrange(0,vsize): l=infile.readline().strip() dta[i]=this.conv_dta(l) #Now make sure, that the last line is "" l=infile.readline().strip() if l != "": raise("Wrong syntax in line: "+l) this.indeps[vname]=dta