Ignore:
Timestamp:
May 25, 2006, 5:30:42 PM (18 years ago)
Author:
ole
Message:

Arbitrary working dir

File:
1 edited

Legend:

Unmodified
Added
Removed
  • development/stochastic_study/project.py

    r2975 r2979  
    22"""
    33
     4# Working dir
     5working_dir = '/mnt/store/stochastic/'
     6import os
     7try:
     8    os.stat(working_dir)
     9except:
     10    working_dir = '.' + os.sep
     11   
    412# Inputs
    513boundary_filename = 'input_wave.tms'
     
    1220
    1321# Gauges (3 timeseries (Ch 5-7-9))
    14 gauges = [[4.521, 1.196],  [4.521, 1.696],  [4.521, 2.196]] 
     22gauges = [[4.521, 1.196],  [4.521, 1.696],  [4.521, 2.196]]
    1523gauge_names = ['ch5', 'ch7', 'ch9']
    1624
     
    1927
    2028# Stats (Suresh ?)
    21 number_of_realisations = 9
     29number_of_realisations = 2
    2230#std_dev = 0.0026  #Range is 26.035 cm
    23 std_dev = 0.0013  #Range is 26.035 cm
     31#std_dev = 0.0013  #Range is 26.035 cm
     32std_dev = 0.0006  #Range is 26.035 cm
    2433mean = 0.0
    2534blocksize = 100 #How many realisations to fit at a time
    2635
    2736number_of_bins = 10
    28 
    29 
    30 
    31    
    32 
    33 
    34 
    35 
Note: See TracChangeset for help on using the changeset viewer.