2014-09-10 17:17:37 +06:00
|
|
|
print ("Hello from init.py")
|
|
|
|
# import ngfem_cf
|
|
|
|
|
|
|
|
def mydir(x=None):
|
|
|
|
if x==None:
|
|
|
|
return []
|
|
|
|
else:
|
|
|
|
return [i for i in dir(x) if not '__' in i]
|
|
|
|
|
|
|
|
def execfile(fname):
|
|
|
|
exec(open(fname).read())
|
|
|
|
|
2014-09-16 22:38:30 +06:00
|
|
|
|
|
|
|
import matplotlib.pyplot as plt
|
2014-09-10 17:17:37 +06:00
|
|
|
|
|
|
|
def plotgeom(self):
|
2014-09-16 22:38:30 +06:00
|
|
|
if plotgeom.plot:
|
|
|
|
plt.close()
|
|
|
|
|
2014-09-10 17:17:37 +06:00
|
|
|
coords = self.PlotData()
|
2014-09-16 22:38:30 +06:00
|
|
|
for i in range(0,len(coords[2])):
|
|
|
|
plt.plot(coords[2][i],coords[3][i],color='b')
|
|
|
|
|
2014-09-10 17:17:37 +06:00
|
|
|
plt.axis('equal')
|
|
|
|
plt.xlim(coords[0])
|
|
|
|
plt.ylim(coords[1])
|
2014-09-16 22:38:30 +06:00
|
|
|
plotgeom.plot = True
|
2014-09-10 17:17:37 +06:00
|
|
|
plt.show(block=False)
|
|
|
|
|
2014-09-16 22:38:30 +06:00
|
|
|
plotgeom.plot = False
|
|
|
|
|
|
|
|
def plotpointindex(self,show = True):
|
|
|
|
if show:
|
|
|
|
if len(plotpointindex.txt) == 0:
|
|
|
|
pi = self.PointData()
|
|
|
|
for i in range(0,len(pi[0])):
|
|
|
|
plotpointindex.txt.append(plt.text(pi[0][i],pi[1][i],str(pi[2][i])))
|
|
|
|
plotpointindex.txt.append(plt.plot(pi[0][i],pi[1][i],'ro'))
|
|
|
|
else:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
for i in range(0,len(plotpointindex.txt)):
|
|
|
|
try:
|
|
|
|
plotpointindex.txt[i].remove()
|
|
|
|
except:
|
|
|
|
plotpointindex.txt[i][0].remove()
|
|
|
|
plotpointindex.txt.clear()
|
|
|
|
#plt.draw()
|
2014-09-10 17:17:37 +06:00
|
|
|
plt.show(block=False)
|
2014-09-16 22:38:30 +06:00
|
|
|
|
|
|
|
plotpointindex.txt = list()
|
2014-09-10 17:17:37 +06:00
|
|
|
|
2014-09-16 22:38:30 +06:00
|
|
|
def plotdomainindex(self, show = True):
|
|
|
|
if show:
|
|
|
|
if len(plotdomainindex.txt) == 0:
|
|
|
|
segdata = self.SegmentData()
|
|
|
|
for i in range(0,len(segdata[0])):
|
|
|
|
if segdata[0][i][2]:
|
|
|
|
horr = 'right'
|
|
|
|
horl = 'left'
|
|
|
|
else:
|
|
|
|
horr = 'left'
|
|
|
|
horl = 'right'
|
|
|
|
if segdata[0][i][3]:
|
|
|
|
vertr = 'top'
|
|
|
|
vertl = 'bottom'
|
|
|
|
else:
|
|
|
|
vertr = 'bottom'
|
|
|
|
vertl = 'top'
|
|
|
|
plotdomainindex.txt.append(plt.text(segdata[0][i][0],segdata[0][i][1],str(segdata[2][i]),horizontalalignment=horl,verticalalignment=vertl))
|
|
|
|
plotdomainindex.txt.append(plt.text(segdata[1][i][0],segdata[1][i][1],str(segdata[3][i]),horizontalalignment=horr,verticalalignment=vertr))
|
2014-09-10 17:17:37 +06:00
|
|
|
else:
|
2014-09-16 22:38:30 +06:00
|
|
|
pass
|
|
|
|
else:
|
|
|
|
for i in range(0,len(plotdomainindex.txt)):
|
|
|
|
plotdomainindex.txt[i].remove()
|
|
|
|
plotdomainindex.txt.clear()
|
|
|
|
#plt.draw()
|
2014-09-10 17:17:37 +06:00
|
|
|
plt.show(block=False)
|
2014-09-16 22:38:30 +06:00
|
|
|
|
|
|
|
plotdomainindex.txt = list()
|
|
|
|
|
2014-09-10 17:17:37 +06:00
|
|
|
|
2014-09-16 22:38:30 +06:00
|
|
|
from nglib.meshing import *
|
|
|
|
from nglib.geom2d import *
|
2014-09-10 17:17:37 +06:00
|
|
|
|
2014-09-16 22:38:30 +06:00
|
|
|
SplineGeometry.Plot = plotgeom
|
|
|
|
SplineGeometry.ShowPoints = plotpointindex
|
|
|
|
SplineGeometry.ShowDomains = plotdomainindex
|
|
|
|
|
|
|
|
def Line(point_index1,point_index2):
|
|
|
|
return ["line",point_index1,point_index2]
|
|
|
|
|
|
|
|
def Spline3(point_index1,point_index2,point_index3):
|
|
|
|
return ["spline3",point_index1,point_index2,point_index3]
|
|
|
|
|
2014-09-10 17:17:37 +06:00
|
|
|
def startConsole():
|
|
|
|
import code
|
|
|
|
try:
|
|
|
|
import readline
|
|
|
|
import rlcompleter
|
|
|
|
readline.parse_and_bind("tab:complete") # autocomplete
|
|
|
|
except:
|
|
|
|
try:
|
|
|
|
import pyreadline as readline
|
|
|
|
import rlcompleter
|
|
|
|
readline.parse_and_bind("tab:complete") # autocomplete
|
|
|
|
except:
|
|
|
|
print('readline not found')
|
|
|
|
vars = globals()
|
|
|
|
vars.update(locals())
|
|
|
|
shell = code.InteractiveConsole(vars)
|
|
|
|
shell.interact()
|
|
|
|
|
|
|
|
|
|
|
|
startConsole()
|
|
|
|
|
|
|
|
|