1 |
|
2 |
######################################################## |
3 |
# |
4 |
# Copyright (c) 2003-2009 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 |
|
15 |
import os |
16 |
Import('*') |
17 |
|
18 |
#_deps is for files which end in .py and are required for |
19 |
# testing but should not be invoked directly themselves |
20 |
example_deps = ['cookbook/heatrefraction_mesher001.py', |
21 |
'cookbook/heatrefraction_mesher002.py', |
22 |
'cookbook/heatrefraction001.py', |
23 |
'cookbook/heatrefraction002.py', |
24 |
'cookbook/cblib1.py', |
25 |
'cookbook/cblib2.py' |
26 |
] |
27 |
|
28 |
# |
29 |
# these are the release examples in example sub directory: |
30 |
# |
31 |
example_files_allow_mpi = [ |
32 |
'geotutorial/steadystate_variablek.py', |
33 |
'geotutorial/steadystate.py', |
34 |
'geotutorial/forward_euler.py', |
35 |
'geotutorial/myfirstscript.py', |
36 |
'geotutorial/backward_euler.py', |
37 |
'usersguide/lit_driven_cavity.py', |
38 |
'usersguide/mount.py', |
39 |
'usersguide/heatedblock.py', |
40 |
'usersguide/helmholtz.py', |
41 |
'usersguide/fluid.py', |
42 |
'usersguide/poisson.py', |
43 |
'usersguide/diffusion.py', |
44 |
'usersguide/poisson_vtk.py', |
45 |
'usersguide/slip.py', |
46 |
'usersguide/int_save.py', |
47 |
] |
48 |
|
49 |
example_files_no_mpi = [ |
50 |
] |
51 |
|
52 |
haveGMSH=(os.system("gmsh -version")/256==0) #Do we have gmsh installed? |
53 |
haveMPL=False #Do we have matplotlib? |
54 |
haveGD=False #Does the matplotlib have griddata? |
55 |
|
56 |
mplmagicversion='0.98.5' |
57 |
|
58 |
try: |
59 |
import matplotlib |
60 |
haveMPL=True |
61 |
mplversion=matplotlib.__version__ |
62 |
from matplotlib.mlab import griddata |
63 |
haveGD=True |
64 |
except ImportError: |
65 |
pass |
66 |
|
67 |
if not haveMPL: |
68 |
print "matplotlib not found skipping some tests" |
69 |
else: |
70 |
if mplversion<mplmagicversion: |
71 |
print "matplotlib found but version too early. Some tests skipped." |
72 |
|
73 |
if not haveGMSH: |
74 |
print "gmsh not found" |
75 |
|
76 |
example_files_no_mpi.append('cookbook/onedheatdiff.py') |
77 |
example_files_no_mpi.append('cookbook/onedheatdiff_var001.py') |
78 |
#example_files_no_mpi.append('cookbook/sandbox.py') |
79 |
example_files_no_mpi.append('cookbook/twodheatdiff.py') |
80 |
example_files_no_mpi.append('cookbook/wavesolver2d001.py') |
81 |
example_files_no_mpi.append('cookbook/wavesolver2d002.py') |
82 |
|
83 |
|
84 |
if haveMPL: |
85 |
example_files_no_mpi.append('cookbook/onedheatdiff001.py') |
86 |
example_files_no_mpi.append('cookbook/onedheatdiff002.py') |
87 |
if mplversion>=mplmagicversion: |
88 |
example_files_no_mpi.append('cookbook/twodheatdiff001.py') |
89 |
example_files_no_mpi.append('usersguide/poisson_matplotlib.py') |
90 |
example_files_allow_mpi.append('usersguide/wave.py') |
91 |
if haveGMSH: |
92 |
example_files_no_mpi.append('cookbook/run_heatrefraction.py') |
93 |
if haveGMSH: |
94 |
example_files_allow_mpi.append('usersguide/trapezoid.py') |
95 |
example_files_allow_mpi.append('usersguide/quad.py') |
96 |
example_files_allow_mpi.append('usersguide/brick.py') |
97 |
example_files_allow_mpi.append('usersguide/refine.py') |
98 |
|
99 |
|
100 |
# we want to make sure these are still added to the examples bundle even if we can't run them |
101 |
if not haveGMSH: |
102 |
example_deps.append('cookbook/run_heatrefraction.py') |
103 |
example_deps.append('usersguide/trapezoid.py') |
104 |
example_deps.append('usersguide/quad.py') |
105 |
example_deps.append('usersguide/brick.py') |
106 |
example_deps.append('usersguide/refine.py') |
107 |
if not haveGD: |
108 |
example_deps.append('cookbook/twodheatdiff001.py') |
109 |
example_deps.append('usersguide/poisson_matplotlib.py') |
110 |
example_deps.append('usersguide/wave.py') |
111 |
if not haveMPL: |
112 |
example_deps.append('cookbook/onedheatdiff001.py') |
113 |
example_deps.append('cookbook/onedheatdiff002.py') |
114 |
|
115 |
|
116 |
example_files= example_files_allow_mpi + example_files_no_mpi + example_deps |
117 |
|
118 |
|
119 |
ex2=[ os.path.join("examples",str(x)) for x in example_files] |
120 |
|
121 |
#========================================================================================== |
122 |
|
123 |
local_env = clone_env(env) |
124 |
src_dir = local_env.Dir('.').srcnode().abspath |
125 |
release_dir=local_env.Dir('#/release/doc/').srcnode().abspath |
126 |
|
127 |
tmp1 = env.Command("#/release/doc/escript_examples.zip", None, |
128 |
"zip "+os.path.join(release_dir,"escript_examples.zip ") +" ".join(ex2),chdir=src_dir) |
129 |
env.Alias('examples_zipfile', tmp1) |
130 |
|
131 |
|
132 |
#Need to use explicit tar rather than the tar builder due to problems getting it not to put |
133 |
#unwanted path components in the tar file |
134 |
#--transform on tar is not supported on savanna |
135 |
tmp2 = env.Command("#/release/doc/escript_examples.tar.gz", None, "tar -czf "+os.path.join(release_dir,"escript_examples.tar.gz ")+" ".join(ex2), chdir=src_dir) |
136 |
env.Alias('examples_tarfile',tmp2) |
137 |
|
138 |
#env=Environment(TARFLAGS = "-c -z",chdir=src_dir) |
139 |
#if 'Tar' in dir(env): env.Tar('#/release/doc/escript_examples.tar.gz', example_files,chdir=src_dir) |
140 |
#env.Alias('examples_tarfile', '#release/doc/escript_examples.tar.gz') |
141 |
|
142 |
local_env.SConscript(dirs = ['#/doc/cookbook'], build_dir='#/build/$PLATFORM/doc/cookbook', duplicate=1) |
143 |
local_env.SConscript(dirs = ['#/doc/user'], build_dir='#/build/$PLATFORM/doc/user', duplicate=1) |
144 |
local_env.SConscript(dirs = ['#/doc/epydoc'], build_dir='#/build/$PLATFORM/doc/epydoc', duplicate=1) |
145 |
local_env.SConscript(dirs = ['#/doc/doxygen'], build_dir='#/build/$PLATFORM/doc/doxygen', duplicate=1) |
146 |
local_env.SConscript(dirs = ['#/doc/install'], build_dir='#/build/$PLATFORM/doc/install', duplicate=1) |
147 |
local_env.SConscript(dirs = ['#/doc/examples'], build_dir='#/build/$PLATFORM/doc/examples', duplicate=1, exports=[ 'example_files_allow_mpi' , 'example_files_no_mpi', 'example_deps' ]) |
148 |
|
149 |
|