1 | """ |
---|
2 | Module to import the project.py 'configuration' file and perform |
---|
3 | sanity checks plus a quick check on mesh generation. |
---|
4 | |
---|
5 | Also callable as a stand-alone program, mainly to view the results |
---|
6 | of the mesh generation. |
---|
7 | """ |
---|
8 | |
---|
9 | import os |
---|
10 | |
---|
11 | from os.path import join, exists |
---|
12 | from anuga.utilities.polygon import read_polygon, number_mesh_triangles |
---|
13 | |
---|
14 | import project |
---|
15 | |
---|
16 | |
---|
17 | #------------------------------------------------------------------------------- |
---|
18 | # Sanity checks - check that required files/directories, etc, exist. |
---|
19 | #------------------------------------------------------------------------------- |
---|
20 | |
---|
21 | # flag - we check many things and then don't proceed if anything wrong |
---|
22 | sanity_error = False # checked at bottom of this file |
---|
23 | |
---|
24 | # Test that environment variables are defined. |
---|
25 | if os.getenv(project.ENV_INUNDATIONHOME) is None: |
---|
26 | print "Environment variable '%s' is not set" % project.ENV_INUNDATIONHOME |
---|
27 | sanity_error = True |
---|
28 | |
---|
29 | if os.getenv(project.ENV_MUXHOME) is None: |
---|
30 | print "Environment variable '%s' is not set" % project.ENV_MUXHOME |
---|
31 | sanity_error = True |
---|
32 | |
---|
33 | #------------------------------------------------------------------------------- |
---|
34 | # Directory Structure |
---|
35 | #------------------------------------------------------------------------------- |
---|
36 | |
---|
37 | # check folders generated from environment variables. |
---|
38 | if not exists(project.home): |
---|
39 | print "Sorry, data directory '%s' doesn't exist" % project.home |
---|
40 | sanity_error = True |
---|
41 | |
---|
42 | if not exists(project.muxhome): |
---|
43 | print "Sorry, MUX directory '%s' doesn't exist" % project.muxhome |
---|
44 | sanity_error = True |
---|
45 | |
---|
46 | if not exists(project.anuga_folder): |
---|
47 | print "Sorry, ANUGA directory '%s' doesn't exist" % project.anuga_folder |
---|
48 | sanity_error = True |
---|
49 | |
---|
50 | if not exists(project.topographies_folder): |
---|
51 | print ("Sorry, topo directory '%s' doesn't exist" |
---|
52 | % project.topographies_folder) |
---|
53 | sanity_error = True |
---|
54 | |
---|
55 | if not exists(project.polygons_folder): |
---|
56 | print ("Sorry, polygon directory '%s' doesn't exist" |
---|
57 | % project.polygons_folder) |
---|
58 | sanity_error = True |
---|
59 | |
---|
60 | if not exists(project.boundaries_folder): |
---|
61 | print ("Sorry, boundaries directory '%s' doesn't exist" |
---|
62 | % project.boundaries_folder) |
---|
63 | sanity_error = True |
---|
64 | |
---|
65 | if not exists(project.output_folder): |
---|
66 | print "Sorry, outputs directory '%s' doesn't exist" % project.output_folder |
---|
67 | sanity_error = True |
---|
68 | |
---|
69 | if not exists(project.gauges_folder): |
---|
70 | print "Sorry, gauges directory '%s' doesn't exist" % project.gauges_folder |
---|
71 | sanity_error = True |
---|
72 | |
---|
73 | if not exists(project.meshes_folder): |
---|
74 | print "Sorry, meshes directory '%s' doesn't exist" % project.meshes_folder |
---|
75 | sanity_error = True |
---|
76 | |
---|
77 | if not exists(project.mux_data_folder): |
---|
78 | print "Sorry, mux data directory '%s' doesn't exist" % project.mux_data_folder |
---|
79 | sanity_error = True |
---|
80 | |
---|
81 | # if multi_mux is True, check if multi-mux file exists |
---|
82 | if project.multi_mux: |
---|
83 | if not exists(project.mux_input): |
---|
84 | print ("Sorry, MUX input file '%s' doesn't exist" |
---|
85 | % project.mux_input) |
---|
86 | sanity_error = True |
---|
87 | |
---|
88 | #----- |
---|
89 | # If this directory don't exist, EventSelection hasn't been run. |
---|
90 | #----- |
---|
91 | |
---|
92 | if not exists(project.event_folder): |
---|
93 | print ("Sorry, you must generate event %s with EventSelection." |
---|
94 | % project.event_number) |
---|
95 | sanity_error = True |
---|
96 | |
---|
97 | #------------------------------------------------------------------------------- |
---|
98 | # Determine type of run |
---|
99 | #------------------------------------------------------------------------------- |
---|
100 | |
---|
101 | if project.setup == 'trial': |
---|
102 | print 'trial' |
---|
103 | project.scale_factor = 100 |
---|
104 | project.time_thinning = 96 |
---|
105 | project.yieldstep = 240 |
---|
106 | elif project.setup == 'basic': |
---|
107 | print 'basic' |
---|
108 | project.scale_factor = 4 |
---|
109 | project.time_thinning = 12 |
---|
110 | project.yieldstep = 120 |
---|
111 | elif project.setup == 'final': |
---|
112 | print 'final' |
---|
113 | project.scale_factor = 1 |
---|
114 | project.time_thinning = 4 |
---|
115 | project.yieldstep = 60 |
---|
116 | else: |
---|
117 | print ("Sorry, you must set the 'setup' variable to one of:" |
---|
118 | ' trial - coarsest mesh, fast\n' |
---|
119 | ' basic - coarse mesh\n' |
---|
120 | ' final - fine mesh, slowest\n' |
---|
121 | '\n' |
---|
122 | "'setup' was set to '%s'" % project.setup) |
---|
123 | sanity_error = True |
---|
124 | |
---|
125 | #------------------------------------------------------------------------------- |
---|
126 | # Check for errors detected above. |
---|
127 | #------------------------------------------------------------------------------- |
---|
128 | |
---|
129 | if sanity_error: |
---|
130 | msg = 'You must fix the above errors before continuing.' |
---|
131 | raise Exception, msg |
---|
132 | |
---|
133 | #------------------------------------------------------------------------------- |
---|
134 | # Reading polygons and creating interior regions |
---|
135 | #------------------------------------------------------------------------------- |
---|
136 | |
---|
137 | # Create list of land polygons with initial conditions |
---|
138 | project.land_initial_conditions = [] |
---|
139 | for filename, MSL in project.land_initial_conditions_filename: |
---|
140 | polygon = read_polygon(join(project.polygons_folder, filename)) |
---|
141 | project.land_initial_conditions.append([polygon, MSL]) |
---|
142 | |
---|
143 | # Create list of interior polygons with scaling factor |
---|
144 | project.interior_regions = [] |
---|
145 | for filename, maxarea in project.interior_regions_data: |
---|
146 | polygon = read_polygon(join(project.polygons_folder, filename)) |
---|
147 | project.interior_regions.append([polygon, |
---|
148 | maxarea*project.scale_factor]) |
---|
149 | |
---|
150 | # Initial bounding polygon for data clipping |
---|
151 | project.bounding_polygon = read_polygon(join(project.polygons_folder, |
---|
152 | project.bounding_polygon_filename)) |
---|
153 | project.bounding_maxarea = project.bounding_polygon_maxarea*project.scale_factor |
---|
154 | |
---|
155 | # Estimate the number of triangles |
---|
156 | trigs_min = number_mesh_triangles(project.interior_regions, |
---|
157 | project.bounding_polygon, |
---|
158 | project.bounding_maxarea) |
---|
159 | |
---|
160 | print 'min estimated number of triangles', trigs_min |
---|