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

Annotation of /MITgcm/verification/cpl_aim+ocn/input_ocn/prepare_run

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


Revision 1.1 - (hide annotations) (download)
Mon Jul 17 01:27:30 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');
 use standard script "prepare_run" (to replace IMPORT_INPUT_FILES)

1 jmc 1.1 #! /bin/sh
2    
3     #-- Import input files from experiment global_ocean.cs32x15
4     #-- Import grid-files from experiment tutorial_held_suarez_cs
5     # this reduce the disk space required when downloading this set-up
6    
7     dirOcn=`pwd`
8     impDir='../../global_ocean.cs32x15/input'
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 $dirOcn/$xx
17     then echo 'file' $xx ' already exists'
18     else echo ' cp ' $xx
19     cp -p -i $xx $dirOcn
20     fi
21     done
22     echo ''
23    
24     cd $dirOcn
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 $dirOcn/$xx
35     then echo 'file' $xx ' already exists'
36     else echo ' cp ' $xx
37     cp -p -i $xx $dirOcn
38     fi
39     done
40     echo ''
41    
42     cd $dirOcn

  ViewVC Help
Powered by ViewVC 1.1.22