/[MITgcm]/MITgcm/pkg/ecco/cost_sph.h
ViewVC logotype

Contents of /MITgcm/pkg/ecco/cost_sph.h

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


Revision 1.1 - (show annotations) (download)
Thu Nov 6 22:10:08 2003 UTC (20 years, 7 months ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint54f_post, checkpoint55j_post, checkpoint56b_post, checkpoint55h_post, checkpoint55g_post, checkpoint53f_post, eckpoint57e_pre, checkpoint55c_post, checkpoint53b_pre, checkpoint57d_post, checkpoint52e_post, checkpoint55f_post, checkpoint52c_post, checkpoint57c_post, checkpoint54a_post, checkpoint52j_pre, checkpoint52l_post, checkpoint52k_post, checkpoint52i_pre, checkpoint53b_post, checkpoint52l_pre, checkpoint52a_pre, checkpoint52b_post, branch-netcdf, checkpoint52e_pre, checkpoint57a_pre, checkpoint54, checkpoint57, checkpoint56, checkpoint52, checkpoint52n_post, checkpoint53, checkpoint52a_post, checkpoint53c_post, ecco_c52_e35, checkpoint57g_pre, checkpoint54b_post, checkpoint54a_pre, checkpoint52f_pre, checkpoint57f_post, checkpoint53d_pre, hrcube_1, checkpoint55e_post, checkpoint57e_post, checkpoint54c_post, checkpoint54d_post, checkpoint52i_post, checkpoint53g_post, checkpoint52f_post, hrcube_3, checkpoint56c_post, checkpoint54e_post, checkpoint57b_post, checkpoint55b_post, checkpoint52d_pre, checkpoint52j_post, checkpoint55i_post, checkpoint53d_post, checkpoint57f_pre, hrcube4, checkpoint55d_pre, checkpoint52b_pre, checkpoint52d_post, checkpoint52m_post, checkpoint57g_post, checkpoint51u_post, checkpoint52h_pre, checkpoint55, checkpoint53a_post, checkpoint55a_post, checkpoint57c_pre, hrcube_2, hrcube5, checkpoint56a_post, checkpoint57a_post, checkpoint55d_post
Branch point for: netcdf-sm0
File MIME type: text/plain
o merging from ecco-branch
o pkg/ecco now containes ecco-specific part of cost function
o top level routines the_main_loop, forward_step
  supersede those in model/src/
  previous input data.cost now in data.ecco
  (new namelist ecco_cost_nml)

1
2 c ==================================================================
3 c HEADER SPHERE
4 c ==================================================================
5 c
6 c o Parameters for spherical harmonic analysis of sea surface height
7 c field.
8 c Assumes regular grid with 2 degree meridional spacing!
9 c o TODO: interpolate model grid to regular grid
10 c
11 c started: Ralf Giering Jul-1996
12 c
13 c changed: Christian Eckert eckert@mit.edu 29-Feb-2000
14 c
15 c changed: Ralf Giering Ralf.Giering@FastOpt.de 12-Jun-2001
16 c
17 c ==================================================================
18 c HEADER SPHERE
19 c ==================================================================
20
21
22 c Dimensions in spherical harmonic space.
23 c =======================================
24 c
25 c lshcmax - maximal degree l of spherical harmonics to be
26 c projected on in a spherical harmonic analysis.
27 c ncshc - number of spherical harmonics coefficients correspond-
28 c ing to lshmax.
29 c lonshc - zonal number of grid points of regular grid
30 c latshc - meridional number of grid points of regular grid
31 c dthetashc - zonal grid spacing
32 c dphishc - meridional grid spacing
33
34 integer lshcmax
35 parameter( lshcmax = 70 )
36
37 integer ncshc
38 parameter( ncshc = (lshcmax+1)*(lshcmax+1) )
39
40 _RL dthetashc
41 parameter( dthetashc = 2. )
42
43 _RL dphishc
44 parameter( dphishc = 2. )
45
46 integer lonshc
47 parameter( lonshc = Nx )
48
49 integer latshc
50 parameter( latshc = 180.0/dphishc )
51
52 c ==================================================================
53 c END OF HEADER SPHERE
54 c ==================================================================
55
56

  ViewVC Help
Powered by ViewVC 1.1.22