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

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

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


Revision 1.16 - (hide annotations) (download)
Sun Nov 5 18:36:06 2006 UTC (17 years, 7 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 edhill 1.16 C $Header: /u/gcmpack/MITgcm/pkg/mnc/MNC_PARAMS.h,v 1.15 2006/02/24 20:39:10 edhill Exp $
2 edhill 1.1 C $Name: $
3     C
4    
5     CBOP
6 edhill 1.3 C !ROUTINE: MNC_PARAMS.h
7 edhill 1.1 C !INTERFACE:
8 edhill 1.3 C #include MNC_PARAMS.h
9 edhill 1.1
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 edhill 1.4
20 edhill 1.1 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 edhill 1.4 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 edhill 1.9 C mnc_outdir_num :: use a seq. number within the output dir name
31 edhill 1.10 C mnc_use_name_ni0 :: use nIter0 in all the file names
32 edhill 1.4 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 jmc 1.14 C writegrid_mnc :: use mnc to write model-grid arrays to file
37 edhill 1.6 C readgrid_mnc :: read INI_CURVILINEAR_GRID() info using mnc
38 edhill 1.4
39     COMMON /PARM_MNC_L/
40     & mnc_use_indir, mnc_use_outdir, mnc_outdir_date,
41 edhill 1.10 & mnc_outdir_num, mnc_use_name_ni0, mnc_echo_gvtypes,
42 edhill 1.4 & pickup_write_mnc, pickup_read_mnc,
43 edhill 1.6 & timeave_mnc, snapshot_mnc, monitor_mnc, autodiff_mnc,
44 edhill 1.16 & writegrid_mnc, readgrid_mnc,
45     & mnc_read_bathy, mnc_read_salt, mnc_read_theta
46 edhill 1.4 LOGICAL
47     & mnc_use_indir, mnc_use_outdir, mnc_outdir_date,
48 edhill 1.10 & mnc_outdir_num, mnc_use_name_ni0, mnc_echo_gvtypes,
49 edhill 1.4 & pickup_write_mnc, pickup_read_mnc,
50 edhill 1.6 & timeave_mnc, snapshot_mnc, monitor_mnc, autodiff_mnc,
51 edhill 1.16 & writegrid_mnc, readgrid_mnc,
52     & mnc_read_bathy, mnc_read_salt, mnc_read_theta
53 edhill 1.1
54 edhill 1.11 C === PARM_MNC_I Common Block ===
55     C mnc_curr_iter :: current iter for file names
56    
57     COMMON /PARM_MNC_I/
58 edhill 1.15 & mnc_def_imv, mnc_curr_iter
59     INTEGER mnc_def_imv(2)
60 edhill 1.11 INTEGER mnc_curr_iter
61    
62 edhill 1.15 C === PARM_MNC_R8 Common Block ===
63 edhill 1.5 C mnc_max_fsize :: maximum file size
64    
65 edhill 1.15 COMMON /PARM_MNC_R8/
66     & mnc_def_dmv,
67 edhill 1.13 & mnc_max_fsize, mnc_filefreq
68 edhill 1.15 REAL*8 mnc_def_dmv(2)
69 edhill 1.5 REAL*8 mnc_max_fsize
70 edhill 1.13 REAL*8 mnc_filefreq
71 edhill 1.5
72 edhill 1.15 C === PARM_MNC_R8 Common Block ===
73     COMMON /PARM_MNC_R4/
74     & mnc_def_rmv
75     REAL*4 mnc_def_rmv(2)
76    
77 edhill 1.1 CEH3 ;;; Local Variables: ***
78     CEH3 ;;; mode:fortran ***
79     CEH3 ;;; End: ***

  ViewVC Help
Powered by ViewVC 1.1.22