/[MITgcm]/MITgcm/verification/offline_exf_seaice/input.seaicetd/prepare_run
ViewVC logotype

Contents of /MITgcm/verification/offline_exf_seaice/input.seaicetd/prepare_run

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download)
Sat Jun 23 15:02:21 2007 UTC (16 years, 10 months ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint64a, checkpoint63p, checkpoint63q, checkpoint63r, checkpoint63s, checkpoint63l, checkpoint63m, checkpoint63n, checkpoint63o, checkpoint63h, checkpoint63i, checkpoint63j, checkpoint63k, checkpoint63d, checkpoint63e, checkpoint63f, checkpoint63g, checkpoint63a, checkpoint63b, checkpoint63c, checkpoint64, checkpoint60, checkpoint61, checkpoint62, checkpoint63, checkpoint59q, checkpoint59p, checkpoint59r, checkpoint59e, checkpoint59g, checkpoint59f, checkpoint59m, checkpoint59l, checkpoint59o, checkpoint59n, checkpoint59i, checkpoint59h, checkpoint59k, checkpoint59j, checkpoint62c, checkpoint62b, checkpoint62a, checkpoint62g, checkpoint62f, checkpoint62e, checkpoint62d, checkpoint62k, checkpoint62j, checkpoint62i, checkpoint62h, checkpoint62o, checkpoint62n, checkpoint62m, checkpoint62l, checkpoint62s, checkpoint62r, checkpoint62q, checkpoint62p, checkpoint62w, checkpoint62v, checkpoint62u, checkpoint62t, checkpoint62z, checkpoint62y, checkpoint62x, checkpoint61f, checkpoint61g, checkpoint61d, checkpoint61e, checkpoint61b, checkpoint61c, checkpoint61a, checkpoint61n, checkpoint61o, checkpoint61l, checkpoint61m, checkpoint61j, checkpoint61k, checkpoint61h, checkpoint61i, checkpoint61v, checkpoint61w, checkpoint61t, checkpoint61u, checkpoint61r, checkpoint61s, checkpoint61p, checkpoint61q, checkpoint61z, checkpoint61x, checkpoint61y
New verification experiment to run exf and/or seaice as stand-alone;
input is atmospheric state and SST field
o only routine in mods/ is the_main_loop
o monitor output tricked to enable testreport to probe
  exf fluxes and seaice state
results/ output to change soon to account for
1. realistic SST field
2. no interpolation in time (unique field at each timestep)
3. precision on faulks

1 #! /usr/bin/env bash
2
3 # $Header: /u/gcmpack/MITgcm/verification/global_ocean.90x40x15/input/prepare_run,v 1.1 2006/07/16 00:10:39 jmc Exp $
4 # $Name: $
5
6 #- in order to save disc space, take *.bin files
7 #- from this dir:
8 fromDir="../../lab_sea/input"
9
10 fileList=`( cd $fromDir ; echo *79 )`
11
12 #echo 'fileList=' $fileList
13
14 #- and do a symbolic link in the current directory
15 # (if the file does not already exist)
16 if test -d $fromDir ; then
17 lnkList='files:'
18 for xx in $fileList
19 do
20 if test -r ${fromDir}/$xx ; then
21 if test ! -r $xx ; then
22 lnkList=${lnkList}" "$xx
23 ln -sf ${fromDir}/$xx .
24 fi
25 fi
26 done
27 echo ' link' $lnkList "from dir:" $fromDir
28 else
29 echo " Error:" $fromDir "not a directory"
30 fi

  ViewVC Help
Powered by ViewVC 1.1.22