source: anuga_work/development/gong_2008/project_slide_parameters.py @ 7818

Last change on this file since 7818 was 5676, checked in by sexton, 16 years ago

Bridgette's study for investigating sensitivity of input wave at Wollongong

File size: 2.5 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, polygon_area, is_inside_polygon
10
11if sys.platform == 'win32':
12    home = getenv('INUNDATIONHOME')
13    user = getenv('USERPROFILE')
14
15else:   
16    home = getenv('INUNDATIONHOME', sep+'d'+sep+'xrd'+sep+'gem'+sep+'2'+sep+'ramp'+sep+'risk_assessment_methods_project'+sep+'inundation')     
17    user = getenv('LOGNAME')
18    print 'USER:', user
19
20###################################################################
21# Slide characteristics
22###################################################################
23
24# historical slides
25slide_origin_bulli = [370110,6189489]
26slide_origin_shovel = [354753,6187397]
27#slide_origin_yacaaba = [463012,6334735] original work was actually Birubi
28slide_origin_yacaaba = [476465, 6362424]
29slide_origin_birubi = [462267,6335100]
30
31# potential slides: these correspond approximately to modelled depths
32slide_origin_bulli_b = [405617,6249852]
33slide_origin_bulli_c0 = [438583,6308510]
34slide_origin_bulli_c1 = [465283,6335210]
35slide_origin_bulli_c2 = [483783,6358810]
36slide_origin_shovel_b = [396262,6252144]
37slide_origin_shovel_c0 = [431683,6311110]
38slide_origin_shovel_c1 = [458694,6340352]
39slide_origin_shovel_c2 = [475589,6363030]
40slide_origin_yacaaba_a = [359796,6190943]
41slide_origin_yacaaba_b = [397330,6251857]
42slide_origin_yacaaba_c0 = [431283,6312110]
43slide_origin_yacaaba_c1 = [459983,6339110]
44slide_origin_birubi_a = [362811,6191183]
45slide_origin_birubi_b = [403573,6250268]
46slide_origin_birubi_c0 = [437183,6309410]
47slide_origin_birubi_c2 = [483392,6359044]
48
49#bulli_depth = 2087.0
50bulli_depth = 1470.0
51bulli_length = 16840.0
52bulli_thickness = 424.0
53bulli_width = 8860.0
54bulli_density = 1.46
55bulli_slope = 4.0
56bulli_alpha = 126.0 - 90.0
57
58#shovel_depth = 968.0
59shovel_depth = 877.0
60shovel_length = 13500.0
61shovel_thickness = 165.0
62shovel_width = 4350.0
63shovel_density = 1.49
64shovel_slope = 4.0
65shovel_alpha = 118.0 - 90.0
66
67#yacaaba_depth = 1119.0
68yacaaba_depth = 938.
69yacaaba_length = 4189.
70yacaaba_thickness = 53.
71yacaaba_width = 2898.
72yacaaba_density = 1.48
73yacaaba_slope = 2.3
74yacaaba_alpha = 133.0 - 90.0
75 
76birubi_depth = 1320.
77birubi_length = 9903.0
78birubi_width = 4150.
79birubi_density = 1.48
80birubi_slope = 3.7
81birubi_alpha = 133.0 - 90.0
82birubi_thickness = 140.
Note: See TracBrowser for help on using the repository browser.