/[MITgcm]/MITgcm/verification/cpl_aim+ocn/input_atm/prepare_run
ViewVC logotype

Contents of /MITgcm/verification/cpl_aim+ocn/input_atm/prepare_run

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


Revision 1.1 - (show annotations) (download)
Mon Jul 17 01:30:14 2006 UTC (17 years, 10 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint58u_post, checkpoint58w_post, checkpoint60, checkpoint61, checkpoint58r_post, checkpoint58n_post, checkpoint58x_post, checkpoint58t_post, checkpoint58q_post, checkpoint59q, checkpoint59p, checkpoint59r, checkpoint59e, checkpoint59d, checkpoint59g, checkpoint59f, checkpoint59a, checkpoint59c, checkpoint59b, checkpoint59m, checkpoint59l, checkpoint59o, checkpoint59n, checkpoint59i, checkpoint59h, checkpoint59k, checkpoint59j, checkpoint59, checkpoint58o_post, checkpoint58y_post, checkpoint58v_post, checkpoint58s_post, checkpoint61f, checkpoint61g, checkpoint61d, checkpoint61e, checkpoint61b, checkpoint61c, checkpoint58p_post, checkpoint61a, checkpoint58m_post
use standard CS-32 grid-files (horizGridFile='grid_cs32') and use
 standard script "prepare_run" (replace IMPORT_INPUT_FILES & SHARE_OCN_GRID)

1 #! /bin/sh
2
3 #-- Import input files from experiment aim.5l_cs/input.thSI
4 #-- Import grid-files from experiment tutorial_held_suarez_cs
5 # this reduce the disk space required when downloading this set-up
6
7 dirAtm=`pwd`
8 impDir='../../aim.5l_cs/input.thSI'
9
10 echo 'Import Input files from dir:' $impDir
11 cd $impDir
12
13 listF=`ls *.bin`
14 for xx in $listF
15 do
16 if test -f $dirAtm/$xx
17 then echo 'file' $xx ' already exists'
18 else echo ' cp ' $xx
19 cp -p -i $xx $dirAtm
20 fi
21 done
22 echo ''
23
24 cd $dirAtm
25
26 impDir='../../tutorial_held_suarez_cs/input'
27
28 echo 'Import Grid-files from dir:' $impDir
29 cd $impDir
30
31 listF=`ls *.face00?.bin`
32 for xx in $listF
33 do
34 if test -f $dirAtm/$xx
35 then echo 'file' $xx ' already exists'
36 else echo ' cp ' $xx
37 cp -p -i $xx $dirAtm
38 fi
39 done
40 echo ''
41
42 cd $dirAtm

  ViewVC Help
Powered by ViewVC 1.1.22