source: production/karratha_2005/project.py @ 1780

Last change on this file since 1780 was 1780, checked in by ole, 19 years ago

Project file for the Karratha study

File size: 464 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#boundary_filename =
19#bathymetry_filename =
20#mesh_filename =
Note: See TracBrowser for help on using the repository browser.