/[MITgcm]/MITgcm/verification/lab_sea/input_ad/prepare_run
ViewVC logotype

Contents of /MITgcm/verification/lab_sea/input_ad/prepare_run

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


Revision 1.1 - (show annotations) (download)
Fri Dec 15 18:12:00 2006 UTC (17 years, 3 months ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint64i, checkpoint64h, checkpoint64j, checkpoint64a, checkpoint64c, checkpoint64b, checkpoint64e, checkpoint64d, checkpoint64g, checkpoint64f, checkpoint58u_post, checkpoint58w_post, checkpoint63p, checkpoint63q, checkpoint63r, checkpoint63s, checkpoint63l, checkpoint63m, checkpoint63n, checkpoint63o, checkpoint63h, checkpoint63i, checkpoint63j, checkpoint63k, checkpoint63d, checkpoint63e, checkpoint63f, checkpoint63g, checkpoint63a, checkpoint63b, checkpoint63c, checkpoint64, checkpoint60, checkpoint61, checkpoint62, checkpoint63, checkpoint58x_post, checkpoint58t_post, checkpoint59q, checkpoint59p, checkpoint59r, checkpoint59e, checkpoint59d, checkpoint59g, checkpoint59f, checkpoint59a, checkpoint59c, checkpoint59b, checkpoint59m, checkpoint59l, checkpoint59o, checkpoint59n, checkpoint59i, checkpoint59h, checkpoint59k, checkpoint59j, checkpoint59, 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, checkpoint58y_post, checkpoint58v_post, 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
Initial check-in of lab_sea adjoint
(very similar to natl_box_adjoint/code_seaice)
* used C-grid and EVP solver
* used KPP, GM/Redi
* uses inAdExact=.TRUE.
* gradient checks fail for both ADM and TLM
  due to sensitive snow melt code in seaice_grwoth (look for "JZ")
  f.d. gradients actually seem more problematic than ADM, TLM gradients;
  issue is related to forward mismatch between g77 an ifort

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 *.1979 files
7 #- from this dir:
8 fromDir="../input"
9
10 fileList=`( cd $fromDir ; echo *1979 )`
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