source: development/stochastic_study/project.py @ 3290

Last change on this file since 3290 was 3035, checked in by ole, 18 years ago

Working with Suresh at ACFR

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