source: production/karratha_2005/project.py @ 1782

Last change on this file since 1782 was 1782, checked in by ole, 19 years ago
File size: 480 bytes
Line 
1"""Common filenames and locations for topographic data, meshes and outputs.
2"""
3
4
5from os import sep
6from os.path import expanduser
7
8home = expanduser('~')
9
10
11meshdir = home+sep+'karratha_tsunami_scenario_2005'+sep+'meshes'+sep
12datadir = home+sep+'karratha_tsunami_scenario_2005'+sep+'data'+sep
13basename = 'karratha_250m'
14
15meshfile = meshdir + basename + '.msh'
16demfile = datadir + basename + '.dem'
17
18
19print demfile
20
21#boundary_filename =
22#bathymetry_filename =
23#mesh_filename =
Note: See TracBrowser for help on using the repository browser.