#!/bin/bash if [ $1 == "" ] then echo "Usage postgui_checks REGIONXYZ "; exit; fi echo "MAX_DOM in wrf.nl should equal NUM_DOMAINS in wrfsi.nl and should be only 2, not 3 for a windowed run." grep -i MAX_DOM $BASEDIR/WRF/wrfsi/domains/$1/static/wrf.nl grep -i NUM_DOMAINS $BASEDIR/WRF/wrfsi/domains/$1/static/wrfsi.nl #grep -i NUM_DOMAINS $BASEDIR/WRF/wrfsi/domains/$1-WINDOW/static/wrfsi.nl echo " " echo " " echo " NUM_ACTIVE_SUBNETS Must be 1 (even for a windowed run)" grep -i NUM_ACTIVE_SUBNESTS $BASEDIR/WRF/wrfsi/domains/$1/static/wrfsi.nl grep -i NUM_ACTIVE_SUBNESTS $BASEDIR/WRF/wrfsi/domains/$1-WINDOW/static/wrfsi.nl echo "deltas should be the same precision in both files" grep -i moad_delta $BASEDIR/WRF/wrfsi/domains/$1/static/wrfsi.nl grep -i moad_delta $BASEDIR/WRF/wrfsi/domains/$1-WINDOW/static/wrfsi.nl egrep -i 'dx| dy ' $BASEDIR/WRF/wrfsi/domains/$1/static/wrf.nl echo "RUN_HOURS should be = 0" grep RUN_HOURS $BASEDIR/WRF/wrfsi/domains/$1/static/wrf.nl echo " " #$BASEDIR/WRF/wrfsi/domains/$1/static/wrfsi.nl #$BASEDIR/WRF/wrfsi/domains/$1/static/wrfsi.nl echo " " echo "SPECIFIED should be = .true.,.false.,.false.," grep SPECIFIED $BASEDIR/WRF/wrfsi/domains/$1/static/wrf.nl echo " " echo " "