Rev | Line | |
---|
[2979] | 1 | """Common filenames for the stochastic study of ANUGA |
---|
| 2 | """ |
---|
| 3 | |
---|
| 4 | # Working dir |
---|
[3008] | 5 | working_dir = '/mnt/store/stochastic3/' |
---|
[2979] | 6 | import os |
---|
| 7 | try: |
---|
| 8 | os.stat(working_dir) |
---|
| 9 | except: |
---|
| 10 | working_dir = '.' + os.sep |
---|
| 11 | |
---|
| 12 | # Inputs |
---|
| 13 | boundary_filename = 'input_wave.tms' |
---|
| 14 | bathymetry_filename = 'bathymetry.pts' |
---|
| 15 | |
---|
| 16 | # Model name |
---|
| 17 | basename = 'simulation' |
---|
| 18 | mesh_filename = basename + '.msh' |
---|
| 19 | |
---|
| 20 | |
---|
| 21 | # Gauges (3 timeseries (Ch 5-7-9)) |
---|
| 22 | gauges = [[4.521, 1.196], [4.521, 1.696], [4.521, 2.196]] |
---|
| 23 | gauge_names = ['ch5', 'ch7', 'ch9'] |
---|
| 24 | |
---|
| 25 | # Constants |
---|
| 26 | number_of_timesteps = 451 # Known from problem description |
---|
| 27 | |
---|
| 28 | # Stats (Suresh ?) |
---|
[3035] | 29 | number_of_realisations = 2 |
---|
[3009] | 30 | |
---|
[3008] | 31 | #number_of_realisations = 16000 |
---|
| 32 | |
---|
[3035] | 33 | std_dev = 0.0013 #m #Range is 26.035 cm (simulation 3) |
---|
| 34 | #std_dev = 0.0006 #m #Range is 26.035 cm (simulation 1) |
---|
[2979] | 35 | mean = 0.0 |
---|
[3009] | 36 | blocksize = 100 #How many realisations to fit at a time |
---|
[2979] | 37 | |
---|
[3009] | 38 | number_of_bins = 10 |
---|
Note: See
TracBrowser
for help on using the repository browser.