source: development/stochastic_study/project.py @ 2959

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

Using new interface to interpolation function and some restructuring

File size: 523 bytes
Line 
1"""Common filenames for the stochastic study of ANUGA
2"""
3
4# Inputs
5boundary_filename = 'input_wave.tms'
6bathymetry_filename = 'bathymetry.pts'
7
8# Model name
9basename = 'simulation'
10mesh_filename = basename + '.msh'
11
12
13# Gauges (3 timeseries (Ch 5-7-9))
14gauges = [[4.521, 1.196],  [4.521, 1.696],  [4.521, 2.196]] 
15gauge_names = ['ch5', 'ch7', 'ch9']
16
17
18# Stats (Suresh ?)
19number_of_samples = 300
20std_dev = 0.01
21mean = 0.0
22blocksize = 100 #How many realisations to fit at a time
23
24
25
26
27
28   
29
30
31
32
Note: See TracBrowser for help on using the repository browser.