source: anuga_work/production/tonga/project_fangauta.py @ 5212

Last change on this file since 5212 was 5194, checked in by herve, 16 years ago

run scripts for tonga

File size: 6.3 KB
Line 
1# -*- coding: cp1252 -*-
2"""Common filenames and locations for topographic data, meshes and outputs.
3"""
4
5from os import sep, environ, getenv, getcwd
6from os.path import expanduser
7import sys
8from time import localtime, strftime, gmtime
9from anuga.utilities.polygon import read_polygon, plot_polygons, is_inside_polygon, number_mesh_triangles
10#from anuga.coordinate_transforms.redfearn import degminsec2decimal_degrees, convert_points_from_latlon_to_utm
11from anuga.utilities.system_tools import get_user_name, get_host_name
12from anuga.utilities.polygon import polygon_area
13# file and system info
14#---------------------------------
15#codename = 'project.py'
16
17home = getenv('INUNDATIONHOME') + sep +'data'+sep #Sandpit's parent diruser = get_user_name()
18user = get_user_name()
19host = get_host_name()
20
21# INUNDATIONHOME is the inundation directory, not the data directory.
22
23#time stuff
24time = strftime('%Y%m%d_%H%M%S',localtime()) #gets time for new dir
25gtime = strftime('%Y%m%d_%H%M%S',gmtime()) #gets time for new dir
26build_time = time+'_build'
27run_time = time+'_run'
28print 'gtime: ', gtime
29
30#Making assumptions about the location of scenario data
31state = 'sw_pacific'
32scenario_name = 'Fangauta_resonance'
33scenario = 'tonga'
34
35tide = 0
36
37alpha = 0.1
38friction=0.01
39starttime=10000
40midtime=21600
41finaltime=432000
42export_cellsize=50
43setup='final'
44source='test'
45
46if setup =='trial':
47    print'trial'
48    res_factor=10
49    time_thinning=48
50    yieldstep=240
51if setup =='basic': 
52    print'basic'
53    res_factor=4
54    time_thinning=12
55    yieldstep=120
56if setup =='final': 
57    print'final'
58    res_factor=1
59    time_thinning=4
60    yieldstep=5
61
62dir_comment='_'+setup+'_'+str(tide)+'_'+str(scenario_name)+'_'+str(user)
63
64# onshore data 5m countour
65onshore_name = 'topography_tongatapu' # original'
66onshore_name1 ='topo_island_infangauta'
67
68# AHO + DPI data + colin French coastline
69#coast_name = 'waterline'
70Singlebeam_name = 'Tongatapu_SB_5m grid'
71addedpoint_name = 'addedpoints_nukualofabranch022'
72#Multibeam_name = 'Tongatapu_MB_30m grid'
73#Chart_name= 'Tongatapu_Chart'
74#Derived_bath_name= 'Derived_Bathy'
75#added_data_name='joining_eastIsland_toreef'
76
77
78#final topo name
79combined_name ='fangauta_combined_elevation'
80combined_smaller_name = 'fangauta_combined_elevation_smaller'
81
82anuga_dir = home+state+sep+scenario+sep+'anuga'+sep
83
84topographies_in_dir = home+sep+state+sep+scenario+sep+'elevation_final'+sep+'points'+sep
85topographies_dir = anuga_dir+'topographies'+sep
86#topographies_time_dir = topographies_dir+build_time+sep
87
88# input topo file location
89onshore_in_dir_name = topographies_in_dir + onshore_name
90onshore_in_dir_name1 = topographies_in_dir + onshore_name1
91Singlebeam_in_dir_name = topographies_in_dir + Singlebeam_name
92addedpoint_in_dir_name = topographies_in_dir + addedpoint_name
93#Multibeam_in_dir_name = topographies_in_dir + Multibeam_name
94#Chart_in_dir_name = topographies_in_dir + Chart_name
95#Derived_bath_in_dir_name = topographies_in_dir + Derived_bath_name
96#added_data_in_dir_name = topographies_in_dir + added_data_name
97
98onshore_dir_name = topographies_dir + onshore_name
99onshore_dir_name1 = topographies_dir + onshore_name1
100Singlebeam_dir_name = topographies_dir + Singlebeam_name
101addedpoint_dir_name = topographies_dir + addedpoint_name
102#Multibeam_dir_name = topographies_dir + Multibeam_name
103#Chart_dir_name = topographies_dir + Chart_name
104#Derived_bath_dir_name = topographies_dir + Derived_bath_name
105#added_data_dir_name = topographies_dir + added_data_name
106
107#final topo files
108combined_dir_name = topographies_dir + combined_name
109#combined_time_dir_name = topographies_time_dir + combined_name
110combined_smaller_name_dir = topographies_dir + combined_smaller_name
111#combined_time_dir_final_name = topographies_time_dir + combined_final_name
112
113meshes_dir = anuga_dir+'meshes'+sep
114meshes_dir_name = meshes_dir + scenario_name
115
116polygons_dir = anuga_dir+'polygons'+sep
117tide_dir = anuga_dir+'tide_data'+sep
118
119
120#boundaries_source = '1'
121
122if source =='dampier':
123    boundaries_name = 'broome_3854_17042007' #Dampier gun
124    boundaries_in_dir = anuga_dir+'boundaries'+sep+sep+'dampier'+sep+'1_10000'+sep
125
126if source=='onslow':
127    boundaries_name = 'broome_3859_16052007' #onslow_hedland_broome gun
128    boundaries_in_dir = anuga_dir+'boundaries'+sep+sep+'onslow_hedland_broome'+sep+'1_10000'+sep
129   
130if source=='exmouth':
131    boundaries_name = 'broome_3103_18052007' #exmouth gun
132    boundaries_in_dir = anuga_dir+'boundaries'+sep+sep+'exmouth'+sep+'1_10000'+sep
133
134if source=='test':
135    boundaries_name = 'other' #exmouth gun
136    boundaries_in_dir = anuga_dir+'boundaries'+sep
137
138
139#boundaries locations
140boundaries_in_dir_name = boundaries_in_dir + scenario_name
141boundaries_dir = anuga_dir+'boundaries'+sep
142boundaries_dir_name = boundaries_dir + scenario_name
143#boundaries_time_dir = anuga_dir+'boundaries'+sep+build_time+sep
144#boundaries_time_dir_name = boundaries_time_dir + boundaries_name  #Used by post processing
145
146#output locations
147output_dir = anuga_dir+'outputs'+sep
148output_build_time_dir = anuga_dir+'outputs'+sep+build_time+dir_comment+sep
149output_run_time_dir = anuga_dir+'outputs'+sep+run_time+dir_comment+sep
150output_run_time_dir_name = output_run_time_dir + scenario_name  #Used by post processing
151
152#gauges
153gauge_name = 'fangauta_gauge1.csv'
154gauges_dir = anuga_dir+'gauges'+sep
155gauges_dir_name = gauges_dir + gauge_name
156
157#buildings_filename = gauges_dir + 'Perth_res_Project.csv'
158#buildings_filename_out = 'Perth_res_Project_modified.csv'
159
160###############################
161# Domain definitions
162###############################
163from anuga.utilities.polygon import read_polygon, plot_polygons, polygon_area, is_inside_polygon
164
165poly_all = read_polygon(polygons_dir+'extent_fangauta.txt')
166res_poly_all = 5000*res_factor
167
168poly_island_Pea= read_polygon(polygons_dir+'poly_fangauta_island1.txt')
169poly_island_Mua= read_polygon(polygons_dir+'poly_fangauta_island2.txt')
170
171boundary_tags={'mouth':[13],
172               'land':[0,1,2,3,4,5,6,7,8,9,10,11,12,14,15]}
173
174area= polygon_area(poly_all)
175trigs_min = area/res_poly_all
176
177print 'min number triangles', trigs_min
178###################################################################
179# Clipping regions for export to asc and regions for clipping data
180###################################################################
181
182# exporting asc grid
183eastingmin = 670500
184eastingmax = 712750
185northingmin = 7646000
186northingmax = 7677000
187
188
189slide_origin = [701290, 7665750] # move onto the continental shelf, depth = 500
190slide_depth = 207.
191
192
193
194
Note: See TracBrowser for help on using the repository browser.