123456789101112131415161718192021222324 |
- #!/bin/bash
- # This script creates netcdf files used by sparring to drive LPJG offline from raw IFS output.
- #
- # Created By Klaus Wyser, some modifications by Etienne Tourigny
- #set -xuve
- # ==============================================================================
- # set these variables before calling extract_daily_forcing_ifs()
- #expname=a0l3; npts=88838
- #expname=AHIL; npts=35718
- #y1=1990 ; y2=1990 ; y0=1990
- #srcdir=/gpfs/scratch/bsc32/bsc32051/lpjg/a0l3/in/output/ifs
- #outdir=/gpfs/scratch/bsc32/bsc32051/lpjg/a0l3/out
- #tmpdir=$SNIC_TMP
- #grib_filter=grib_filter
- # ==============================================================================
- # script moved to liblsm.sh, uncomment these lines to run
- #source ../../../runtime/classic/liblsm.sh
- #extract_daily_forcing_ifs
|