/[MITgcm]/MITgcm/pkg/mnc/MNC_PARAMS.h
ViewVC logotype

Contents of /MITgcm/pkg/mnc/MNC_PARAMS.h

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


Revision 1.16 - (show annotations) (download)
Sun Nov 5 18:36:06 2006 UTC (17 years, 6 months ago) by edhill
Branch: MAIN
CVS Tags: checkpoint64y, checkpoint64x, checkpoint64z, checkpoint64q, checkpoint64p, checkpoint64s, checkpoint64r, checkpoint64u, checkpoint64t, checkpoint64w, checkpoint64v, checkpoint64i, checkpoint64h, checkpoint64k, checkpoint64j, checkpoint64m, checkpoint64l, checkpoint64o, checkpoint64n, 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, checkpoint65, checkpoint60, checkpoint61, checkpoint62, checkpoint63, checkpoint58r_post, checkpoint66g, checkpoint66f, checkpoint66e, checkpoint66d, checkpoint66c, checkpoint66b, checkpoint66a, checkpoint66o, checkpoint66n, checkpoint66m, checkpoint66l, checkpoint66k, checkpoint66j, checkpoint66i, checkpoint66h, checkpoint58x_post, checkpoint58t_post, checkpoint65z, checkpoint65x, checkpoint65y, checkpoint65r, checkpoint65s, checkpoint65p, checkpoint65q, checkpoint65v, checkpoint65w, checkpoint65t, checkpoint65u, checkpoint65j, checkpoint65k, checkpoint65h, checkpoint65i, checkpoint65n, checkpoint65o, checkpoint65l, checkpoint65m, checkpoint65b, checkpoint65c, checkpoint65a, checkpoint65f, checkpoint65g, checkpoint65d, checkpoint65e, 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, checkpoint58s_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, HEAD
Changes since 1.15: +5 -3 lines
File MIME type: text/plain
add ability to read bathy, salt, and theta using MNC (off by def)
  -- and this can be readily extended to most of the other files
  in PARM05 of the main "data" namelist file

1 C $Header: /u/gcmpack/MITgcm/pkg/mnc/MNC_PARAMS.h,v 1.15 2006/02/24 20:39:10 edhill Exp $
2 C $Name: $
3 C
4
5 CBOP
6 C !ROUTINE: MNC_PARAMS.h
7 C !INTERFACE:
8 C #include MNC_PARAMS.h
9
10 C !DESCRIPTION:
11 C Header file defining model "parameters". The values from the
12 C model standard input file are stored into the variables held
13 C here. Notes describing the parameters can also be found here.
14 CEOP
15
16 C === PARM_MNC_C Common Block ===
17 C mnc_outdir_str :: name of the output directory
18 C mnc_indir_str :: name of the input directory
19
20 COMMON /PARM_MNC_C/
21 & mnc_outdir_str,
22 & mnc_indir_str
23 CHARACTER*(MAX_LEN_FNAM) mnc_outdir_str
24 CHARACTER*(MAX_LEN_FNAM) mnc_indir_str
25
26 C === PARM_MNC_L Common Block ===
27 C mnc_use_indir :: use "mnc_indir_str" as input filename prefix
28 C mnc_use_outdir :: use "mnc_outdir_str" as output filename prefix
29 C mnc_outdir_date :: use a date string within the output dir name
30 C mnc_outdir_num :: use a seq. number within the output dir name
31 C mnc_use_name_ni0 :: use nIter0 in all the file names
32 C mnc_echo_gvtypes :: echo type names (fails on many platforms)
33 C pickup_write_mnc :: use mnc to write pickups
34 C pickup_read_mnc :: use mnc to read pickups
35 C mon_write_mnc :: use mnc to write monitor output
36 C writegrid_mnc :: use mnc to write model-grid arrays to file
37 C readgrid_mnc :: read INI_CURVILINEAR_GRID() info using mnc
38
39 COMMON /PARM_MNC_L/
40 & mnc_use_indir, mnc_use_outdir, mnc_outdir_date,
41 & mnc_outdir_num, mnc_use_name_ni0, mnc_echo_gvtypes,
42 & pickup_write_mnc, pickup_read_mnc,
43 & timeave_mnc, snapshot_mnc, monitor_mnc, autodiff_mnc,
44 & writegrid_mnc, readgrid_mnc,
45 & mnc_read_bathy, mnc_read_salt, mnc_read_theta
46 LOGICAL
47 & mnc_use_indir, mnc_use_outdir, mnc_outdir_date,
48 & mnc_outdir_num, mnc_use_name_ni0, mnc_echo_gvtypes,
49 & pickup_write_mnc, pickup_read_mnc,
50 & timeave_mnc, snapshot_mnc, monitor_mnc, autodiff_mnc,
51 & writegrid_mnc, readgrid_mnc,
52 & mnc_read_bathy, mnc_read_salt, mnc_read_theta
53
54 C === PARM_MNC_I Common Block ===
55 C mnc_curr_iter :: current iter for file names
56
57 COMMON /PARM_MNC_I/
58 & mnc_def_imv, mnc_curr_iter
59 INTEGER mnc_def_imv(2)
60 INTEGER mnc_curr_iter
61
62 C === PARM_MNC_R8 Common Block ===
63 C mnc_max_fsize :: maximum file size
64
65 COMMON /PARM_MNC_R8/
66 & mnc_def_dmv,
67 & mnc_max_fsize, mnc_filefreq
68 REAL*8 mnc_def_dmv(2)
69 REAL*8 mnc_max_fsize
70 REAL*8 mnc_filefreq
71
72 C === PARM_MNC_R8 Common Block ===
73 COMMON /PARM_MNC_R4/
74 & mnc_def_rmv
75 REAL*4 mnc_def_rmv(2)
76
77 CEH3 ;;; Local Variables: ***
78 CEH3 ;;; mode:fortran ***
79 CEH3 ;;; End: ***

  ViewVC Help
Powered by ViewVC 1.1.22