1 |
|
2 |
######################################################## |
3 |
# |
4 |
# Copyright (c) 2003-2008 by University of Queensland |
5 |
# Earth Systems Science Computational Center (ESSCC) |
6 |
# http://www.uq.edu.au/esscc |
7 |
# |
8 |
# Primary Business: Queensland, Australia |
9 |
# Licensed under the Open Software License version 3.0 |
10 |
# http://www.opensource.org/licenses/osl-3.0.php |
11 |
# |
12 |
######################################################## |
13 |
|
14 |
__copyright__="""Copyright (c) 2003-2008 by University of Queensland |
15 |
Earth Systems Science Computational Center (ESSCC) |
16 |
http://www.uq.edu.au/esscc |
17 |
Primary Business: Queensland, Australia""" |
18 |
__license__="""Licensed under the Open Software License version 3.0 |
19 |
http://www.opensource.org/licenses/osl-3.0.php""" |
20 |
__url__="http://www.uq.edu.au/esscc/escript-finley" |
21 |
|
22 |
""" |
23 |
Author: John Ngui, john.ngui@uq.edu.au |
24 |
""" |
25 |
|
26 |
# Import the necessary modules. |
27 |
from esys.pyvisi import Scene, DataCollector, Carpet, Camera |
28 |
from esys.pyvisi.constant import * |
29 |
import os |
30 |
|
31 |
PYVISI_EXAMPLE_MESHES_PATH = "data_meshes" |
32 |
PYVISI_EXAMPLE_IMAGES_PATH = "data_sample_images" |
33 |
X_SIZE = 400 |
34 |
Y_SIZE = 400 |
35 |
|
36 |
SCALAR_FIELD_CELL_DATA = "temperature_cell" |
37 |
FILE_3D = "interior_3D.xml" |
38 |
IMAGE_NAME = "carpet.jpg" |
39 |
JPG_RENDERER = Renderer.ONLINE_JPG |
40 |
|
41 |
# Create a Scene. |
42 |
s = Scene(renderer = JPG_RENDERER, num_viewport = 1, x_size = X_SIZE, |
43 |
y_size = Y_SIZE) |
44 |
|
45 |
# Create a DataCollector reading from a XML file. |
46 |
dc1 = DataCollector(source = Source.XML) |
47 |
dc1.setFileName(file_name = os.path.join(PYVISI_EXAMPLE_MESHES_PATH, FILE_3D)) |
48 |
dc1.setActiveScalar(scalar = SCALAR_FIELD_CELL_DATA) |
49 |
|
50 |
# Create a Carpet. |
51 |
cpt1 = Carpet(scene = s, data_collector = dc1, viewport = Viewport.SOUTH_WEST, |
52 |
warp_mode = WarpMode.SCALAR, lut = Lut.COLOR, cell_to_point = True, |
53 |
outline = True) |
54 |
cpt1.setPlaneToXY(0.2) |
55 |
cpt1.setScaleFactor(1.9) |
56 |
|
57 |
# Create a Camera. |
58 |
c1 = Camera(scene = s, viewport = Viewport.SOUTH_WEST) |
59 |
c1.isometricView() |
60 |
|
61 |
# Render the object. |
62 |
s.render(image_name = os.path.join(PYVISI_EXAMPLE_IMAGES_PATH, IMAGE_NAME)) |
63 |
|