1 |
#!/usr/bin/env python |
2 |
|
3 |
|
4 |
# $Id: escript_twoDVectorData3D.py,v 1.3 2006/01/05 00:13:50 paultcochrane Exp $ |
5 |
|
6 |
from esys.escript import * |
7 |
from esys import bruce |
8 |
|
9 |
import numarray |
10 |
|
11 |
from pyvisi import * |
12 |
from pyvisi.renderers.vtk import * |
13 |
|
14 |
brickDomain = bruce.Brick(9,9,9,10,10,10) |
15 |
brickFunctionSpace=escript.ContinuousFunction(brickDomain) |
16 |
|
17 |
vectorData2D = numarray.array([1.0,2.0]) |
18 |
|
19 |
# plotting 2D vectors in a 3D array |
20 |
twoDVectorData3D = Data(vectorData2D, brickFunctionSpace, True) |
21 |
scene = Scene() |
22 |
plot = ArrowPlot3D(scene) |
23 |
plot.setData(twoDVectorData3D) |
24 |
scene.render(pause=True) |
25 |
|
26 |
scene.save(fname="escript_twoDVectorData3D_arrowPlot3D.png", format="png") |
27 |
|
28 |
# vim: expandtab shiftwidth=4: |