Changes between Version 2 and Version 3 of RegressionProps


Ignore:
Timestamp:
08/26/08 18:20:43 (16 years ago)
Author:
skbhate
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RegressionProps

    v2 v3  
    1313###########################################################################
    1414
     15# PLEASE DO NOT EDIT THIS SECTION.
     16
    1517# TEST_DIR
    1618# Base directory for all test script installation
     
    2123$DATA_DIR = "$TEST_DIR/data";
    2224
    23 # GZIP
    24 $GZIP = "/usr/bin/gunzip";
     25# TEST_RUN
     26# Workspace directory to store model run and test results.
     27# User specified workspace name is used to set this directory.
     28$TEST_RUN = "/cygdrive/c/skbhate/dev/nopp/demo/test/test-run/fd";
    2529
    2630# NCO Tools
     
    3640# ROMS related properties
    3741
     42# ROMS shell script and other supporting files directory.
     43# The shell script in this directory acts as a boiler plate for
     44# final script which is created based on user defined scenario
     45# in XML document.
     46
     47$ROMS_BUILD_DIR = "$TEST_DIR/bin/roms";
     48
    3849# ROMS_DIR
    3950# Base directory for ROMS model
    4051# modified by ./config. Can be changed manually as well.
    41 $ROMS_DIR = "/cygdrive/c/skbhate/dev/nopp/ROMS_3.2_current";
     52$ROMS_DIR = "/cygdrive/c/skbhate/dev/nopp/ROMS_3.2_0811";
     53
     54# ROMS BIN directory
     55# place to run/find build scripts
     56
     57$ROMS_BIN_DIR = "$ROMS_DIR/ROMS/Bin";
    4258
    4359# Input Files Directory
     
    6985$NETCDF4 = "USE_NETCDF4";
    7086$MPI_F90 = "USE_MPIF90";
    71 $NETCDF_LIB = "NETCDF_LIBDIR";
    72 $NETCDF_INC = "NETCDF_INCDIR";
     87$NESTED_GRIDS = "NestedGrids";
    7388
    7489#ROMS_SED executable
     
    85100$QSUB = "/usr/local/bin/qsub";
    86101$QSTAT = "/usr/local/bin/qstat";
    87 $QDEL = "usr/local/bin/qdel";
     102$QDEL = "/usr/local/bin/qdel";
    88103$PBS_SCRIPT = "$ROMS_DIR/roms_pbs.sh";
    89104# Interval in seconds to poll pbs job status
    90 $POLL = 120;
     105$POLL = 30;
    91106
    92107######################## Customize variables below ###############
    93108
    94 # ROMS shell script (build.bash) default.
    95 #$ROMS_BUILD_FILE = "$ROMS_DIR/ROMS/Bin/build.bash";
    96 
    97 $ROMS_BUILD_FILE = "$ROMS_DIR/ROMS/Bin/build.bash";
    98 
    99 # TEST_RUN
    100 # directory to store test results. you can change this directory
    101 # to anything where you would like to store the test results.
    102 
    103 $TEST_RUN = "$TEST_DIR/test-run";
    104 
    105109# Errors/msgs on STDOUT. '0'-no msgs, '1' -msgs
    106110$VERBOSE = 0;
     111$DEBUG = 0;
    107112
    108113#MPIRUN ( MPI or MPICH) Configured for default on system. Change path
    109114#to use the required version of mpirun.
    110 
     115$MPIEXEC = "mpirun";
    111116$MPIRUN = "";
    112117
     
    119124
    1201251;
    121 
    122126}}}