Changes between Version 1 and Version 2 of RegressionProps


Ignore:
Timestamp:
07/16/08 15:12:54 (16 years ago)
Author:
skbhate
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RegressionProps

    v1 v2  
    1010#
    1111# usage: require "regression.props"
    12 # Sachin Kumar Bhate (skbhate@gri.msstate.edu). May'07
     12# Sachin Kumar Bhate (skbhate@ngi.msstate.edu)
    1313###########################################################################
    1414
    1515# TEST_DIR
    1616# Base directory for all test script installation
    17 $TEST_DIR = "/cygdrive/c/skbhate/dev/nopp/regression";
     17$TEST_DIR = "/cygdrive/c/skbhate/dev/nopp/demo/test";
    1818
    1919# DATA_DIR
    2020# Contains master and other relevant data files required to perform test
    21 # you can change this directory to anything where you
    22 # would like to store data files.
    2321$DATA_DIR = "$TEST_DIR/data";
    24 
    25 # TEST_RUN
    26 # directory to store test results. you can change this directory
    27 # to anything where you would like to store the test results.
    28 $TEST_RUN = "$TEST_DIR/test-run";
    2922
    3023# GZIP
     
    3427$NCKS = "/usr/local/bin/ncks";
    3528$NCDIFF = "/usr/local/bin/ncdiff";
    36 
    37 # NCO tools options. Add options/flags for
    38 # ncks and ncdiff here.
    39 # $NCKSOPT = "-4 -c";
    40 $NCKSOPT = "";
    41 $NCDIFFOPT = "";
    42 
    43 # Set this option to identify ROMS output file types to be
    44 # used in testing. e.g history, averages etc. By default the
    45 # tests will only run on history files.
    46 # $FILETYPE = "his avg rst dia"
    47 $FILETYPES = "his rst avg dia";
    4829
    4930# Operating Systems
     
    5839# Base directory for ROMS model
    5940# modified by ./config. Can be changed manually as well.
    60 $ROMS_DIR = "/cygdrive/c/skbhate/dev/nopp/ROMS_3.0_0621";
     41$ROMS_DIR = "/cygdrive/c/skbhate/dev/nopp/ROMS_3.2_current";
    6142
    6243# Input Files Directory
    6344$ROMS_INPUT_DIR = "$ROMS_DIR/ROMS/External";
    6445
    65 
    6646# ROMS output_dir. (*.nc, *.out files)
    67 # by default it's ROMS_DIR, but if user configure ROMS for
    68 # different output dir, then this variable needs
    69 # to reflect that change.
    7047$ROMS_OUTPUT_DIR = "$ROMS_DIR";
    7148
    72 # List all application for regression test in
    73 # this file.
    74 $REGRESS_FILE = "$DATA_DIR/regression.tests";
    75 
    76 #Makefile
    77 $MAKE_FILE = "$ROMS_DIR/makefile";
     49# XML Jargon
     50$REGRESS_XMLSCHEMA = "$DATA_DIR/metadata/schema/regressionCSTMSchema.xsd";
     51$NAMESPACE = "http://www.roms-cstm.org";
     52$NSPREFIX  = "cstm";
    7853
    7954#ROMS  macros
     
    8863$HEADER_DIR = "MY_HEADER_DIR";
    8964$ANALYTICAL_DIR = "MY_ANALYTICAL_DIR";
    90 
     65$COMPILER = "FORT";
     66$CPP_FLAG = "MY_CPP_FLAGS";
     67$DEBUG = "USE_DEBUG";
     68$LARGE = "USE_LARGE";
     69$NETCDF4 = "USE_NETCDF4";
     70$MPI_F90 = "USE_MPIF90";
     71$NETCDF_LIB = "NETCDF_LIBDIR";
     72$NETCDF_INC = "NETCDF_INCDIR";
    9173
    9274#ROMS_SED executable
     
    9476$BIN_FILE_MPI = "oceanM";
    9577$BIN_FILE_OPENMP = "oceanO";
    96 
    97 #process info
    98 $NTILEI = "NtileI";
    99 $NTILEJ = "NtileJ";
     78$BIN_FILE_DEBUG = "oceanG";
    10079
    10180#Shells
     
    10382$CSH = "csh";
    10483
     84#PBS
     85$QSUB = "/usr/local/bin/qsub";
     86$QSTAT = "/usr/local/bin/qstat";
     87$QDEL = "usr/local/bin/qdel";
     88$PBS_SCRIPT = "$ROMS_DIR/roms_pbs.sh";
     89# Interval in seconds to poll pbs job status
     90$POLL = 120;
     91
    10592######################## Customize variables below ###############
    10693
    107 # Default ROMS shell script dir. If you are copying build.bash
    108 # to other location and would like to use the user specified
    109 # build.sh, then modify the path below. Also modify the file
    110 # name if you're running a different shell.
     94# ROMS shell script (build.bash) default.
     95#$ROMS_BUILD_FILE = "$ROMS_DIR/ROMS/Bin/build.bash";
    11196
    11297$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
     105# Errors/msgs on STDOUT. '0'-no msgs, '1' -msgs
     106$VERBOSE = 0;
     107
     108#MPIRUN ( MPI or MPICH) Configured for default on system. Change path
     109#to use the required version of mpirun.
     110
     111$MPIRUN = "";
    113112
    114113#Makefile processor
     
    120119
    1211201;
     121
    122122}}}