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
|
##############################################################################
#
# Copyright (c) 2003-2018 by The University of Queensland
# http://www.uq.edu.au
#
# Primary Business: Queensland, Australia
# Licensed under the Apache License, version 2.0
# http://www.apache.org/licenses/LICENSE-2.0
#
# Development until 2012 by Earth Systems Science Computational Center (ESSCC)
# Development 2012-2013 by School of Earth Sciences
# Development from 2014 by Centre for Geoscience Computing (GeoComp)
#
##############################################################################
from __future__ import print_function, division
__copyright__="""Copyright (c) 2003-2018 by The University of Queensland
http://www.uq.edu.au
Primary Business: Queensland, Australia"""
__license__="""Licensed under the Apache License, version 2.0
http://www.apache.org/licenses/LICENSE-2.0"""
__url__="https://launchpad.net/escript-finley"
"""
Test writing data object to various file formats
by Lutz Gross, ACcESS, University of Queensland, Australia, 2005.
"""
from esys.escript import *
from esys.finley import Rectangle,Brick
ne=1
work_dir="."
def writeInFormat(fs,format,filetype):
d=fs.getDim()
x=length(fs.getX())
# generate scalar data:
filename="%s/scalar.%s.%s"%(work_dir,filetype,format)
print("file ",filename," is generated")
try:
eval("x.save%s(\"%s\")"%(format.upper(),filename))
except Exception as msg:
print("%% failed because of ",msg)
# generate vector data:
print("file ",filename," is generated")
filename="%s/vector.%s.%s"%(work_dir,filetype,format)
if d==2:
m=[1.,2.]
else:
m=[1.,2.,3.]
try:
eval("(x*m).save%s(\"%s\")"%(format.upper(),filename))
except Exception as msg:
print("%% failed because of ",msg)
# generate tensor data:
filename="%s/tensor.%s.%s"%(work_dir,filetype,format)
print("file ",filename," is generated")
if d==2:
m=[[11.,12.],[21.,22.]]
else:
m=[[11.,12.,13.],[21.,22.,23.],[31.,32.,33.]]
try:
eval("(x*m).save%s(\"%s\")"%(format.upper(),filename))
except Exception as msg:
print("%% failed because of ",msg)
for format in ["vtk","dx"]:
for d in [2,3]:
for order in [1,2]:
if (d == 2):
mesh = Rectangle(ne, ne,order,l0=order*ne,l1=order*ne)
elif (d == 3):
mesh = Brick(ne,ne,ne,order,l0=order*ne,l1=order*ne,l2=order*ne)
for fs in ["ContinuousFunction","Function","FunctionOnBoundary","Solution","ReducedSolution","FunctionOnContact"]:
filetype="%s.o%d.d%d"%(fs,order,d)
writeInFormat(eval("%s(mesh)"%fs),format,filetype)
|