1 |
jmc |
1.4 |
C $Header: /u/gcmpack/MITgcm_contrib/verification_other/atm_gray/README,v 1.3 2013/07/24 00:55:18 jmc Exp $ |
2 |
jmc |
1.1 |
C $Name: $ |
3 |
|
|
|
4 |
|
|
MITgcm_contrib/verification_other/atm_gray/ |
5 |
|
|
|
6 |
jmc |
1.3 |
Provide source code and input files for 3 simple sep-up, |
7 |
jmc |
1.2 |
using gray atmospheric physics (O'Gorman and Schneider, JCl, 2008) |
8 |
jmc |
1.3 |
plugged in MITgcm dynamical core (see package "atm_phys"). |
9 |
jmc |
1.1 |
|
10 |
jmc |
1.2 |
Notes: Initially (before addition of pkg/atm_phys on 2013/05/08) was using |
11 |
|
|
modified (and original) "mypackage" src code and atmospheric gray physics |
12 |
|
|
code in dir atm_gray/code_gray ; this has now been replaced by pkg/atm_phys. |
13 |
jmc |
1.1 |
|
14 |
jmc |
1.3 |
1) standard cubed-sphere set-up (6 faces 32x32, 26 levels, non uniform deltaP) |
15 |
|
|
atm_gray/code/ : specific code |
16 |
jmc |
1.4 |
primary set-up: |
17 |
|
|
uses 10m mixed layer depth with evolving SST (including a Q-flux) |
18 |
|
|
+ damping of stratospheric winds ; starts @ t= 1.yr from pickup files. |
19 |
jmc |
1.3 |
atm_gray/input/ : input files (+ uses script "prepare_run" in input) |
20 |
|
|
atm_gray/results/output.txt : standard output of a short reference run |
21 |
jmc |
1.4 |
secondary set-up (using same executable): |
22 |
|
|
uses fixed SST (APE) and improved radiation code from Ruth Geen. |
23 |
|
|
atm_gray/inputu.ape/ : specific input files (remaining files from dir input) |
24 |
|
|
atm_gray/results/output.ape.txt : secondary output of a short reference run |
25 |
jmc |
1.3 |
|
26 |
|
|
2) simplified cubed-sphere set-up (6 faces 32x32, 25 levels, deltaP = 40.mb) |
27 |
|
|
with fixed (prescribed) SST. |
28 |
jmc |
1.1 |
atm_gray/code_cs/ : specific code |
29 |
|
|
atm_gray/inp_cs/ : input files (+ uses script "prepare_run" in inp_cs) |
30 |
|
|
atm_gray/results/output.cs.txt : standard output of a short reference run |
31 |
|
|
|
32 |
jmc |
1.3 |
3) lat-lon grid set-up (128x64 horiz grid, 25 levels |
33 |
|
|
<-> 2.8 x 2.8 degree, deltaP = 40.mb) |
34 |
jmc |
1.1 |
atm_gray/code_ll/ : specific code |
35 |
|
|
atm_gray/inp_ll/ : input files |
36 |
|
|
atm_gray/results/output.ll.txt : standard output of a short reference run |
37 |
|
|
|
38 |
|
|
-------------- |
39 |
|
|
Instructions: |
40 |
|
|
-------------- |
41 |
|
|
Download MITgcm (including verification experiments) from MITgcm repository |
42 |
|
|
<my_dir_space> cvs co -P -d MITgcm_current MITgcm |
43 |
|
|
and download "atm_gray" set-up from MITgcm_contrib repository, |
44 |
|
|
a) either directly in dir verification |
45 |
|
|
<my_dir_space> cd MITgcm_current/verification |
46 |
|
|
<verification> cvs co -P -d atm_gray MITgcm_contrib/verification_other/atm_gray |
47 |
|
|
or b) in a similar level in the directory tree, e.g., in verification_other in MITgcm_current: |
48 |
|
|
<my_dir_space> cd MITgcm_current |
49 |
|
|
<MITgcm_current> mkdir verification_other ; cd verification_other |
50 |
|
|
<verification_other> cvs co -P -d atm_gray MITgcm_contrib/verification_other/atm_gray |
51 |
|
|
|
52 |
jmc |
1.3 |
to built and run the 1rst (standard) CS-32 set-up: |
53 |
|
|
> cd atm_gray/build |
54 |
|
|
> (if done after a previous built, do "make Clean" first) |
55 |
|
|
> ../../../tools/genmake2 -mods ../code -of ../../../tools/build_options/[Selected-Option-File] |
56 |
|
|
> make depend |
57 |
|
|
> make |
58 |
|
|
> cd ../run |
59 |
|
|
> (if done after a previous run, clean-up all files: /bin/rm -f * ) |
60 |
|
|
> ln -s ../input/* . |
61 |
|
|
> ../input/prepare_run |
62 |
|
|
> ln -s ../build/mitgcmuv . |
63 |
|
|
> mitgcmuv >& output.txt |
64 |
|
|
and output.txt can be compared with atm_gray/results/output.txt |
65 |
|
|
|
66 |
|
|
to built and run the 2nd (simplified) CS-32 set-up: |
67 |
jmc |
1.1 |
> cd atm_gray/build |
68 |
|
|
> (if done after a previous built, do "make Clean" first) |
69 |
|
|
> ../../../tools/genmake2 -mods ../code_cs -of ../../../tools/build_options/[Selected-Option-File] |
70 |
|
|
> make depend |
71 |
|
|
> make |
72 |
|
|
> cd ../run |
73 |
|
|
> (if done after a previous run, clean-up all files: /bin/rm -f * ) |
74 |
|
|
> ln -s ../inp_cs/* . |
75 |
|
|
> ../inp_cs/prepare_run |
76 |
|
|
> ln -s ../build/mitgcmuv . |
77 |
|
|
> mitgcmuv >& output.txt |
78 |
|
|
and output.txt can be compared with atm_gray/results/output.cs.txt |
79 |
|
|
|
80 |
jmc |
1.3 |
to built and run the 3rd, Lat-Lon set-up: |
81 |
jmc |
1.1 |
> cd atm_gray/build |
82 |
|
|
> (if done after a previous built, do "make Clean" first) |
83 |
|
|
> ../../../tools/genmake2 -mods ../code_ll -of ../../../tools/build_options/[Selected-Option-File] |
84 |
|
|
> make depend |
85 |
|
|
> make |
86 |
|
|
> cd ../run |
87 |
|
|
> (if done after a previous run, clean-up all files: /bin/rm -f * ) |
88 |
|
|
> ln -s ../inp_ll/* . |
89 |
|
|
> ln -s ../build/mitgcmuv . |
90 |
|
|
> mitgcmuv >& output.txt |
91 |
|
|
and output.txt can be compared with atm_gray/results/output.ll.txt |
92 |
|
|
|
93 |
|
|
-------------- |