Parent Directory
|
Revision Log
|
Revision Graph
This is a first sketch of a bottom boundary layer parameterization for MITgcm. The hooks to main model currently reside with pkg/mypackage and it is temporarily checked in MITgcm_contrib until it clears the App Store vetting process. Instructions on running a simple test integration in a periodic channel are in MITgcm_contrib/bbl/readme.txt and some output can be viewed using lookat_output.m in same directory.
1 | dimitri | 1.1 | C $Header: $ |
2 | C $Name: $ | ||
3 | |||
4 | #include "BBL_OPTIONS.h" | ||
5 | |||
6 | C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----| | ||
7 | CBOP 0 | ||
8 | C !ROUTINE: BBL_INIT_FIXED | ||
9 | |||
10 | C !INTERFACE: | ||
11 | SUBROUTINE MYPACKAGE_INIT_FIXED( myThid ) | ||
12 | |||
13 | C !DESCRIPTION: | ||
14 | C Initialize BBL variables that are kept fixed during the run. | ||
15 | |||
16 | C !USES: | ||
17 | IMPLICIT NONE | ||
18 | #include "EEPARAMS.h" | ||
19 | #include "SIZE.h" | ||
20 | #include "PARAMS.h" | ||
21 | |||
22 | C !INPUT/OUTPUT PARAMETERS: | ||
23 | C myThid :: my Thread Id number | ||
24 | INTEGER myThid | ||
25 | CEOP | ||
26 | |||
27 | C !LOCAL VARIABLES: | ||
28 | C === Local variables === | ||
29 | |||
30 | #ifdef ALLOW_DIAGNOSTICS | ||
31 | IF ( useDiagnostics ) THEN | ||
32 | CALL BBL_DIAGNOSTICS_INIT( myThid ) | ||
33 | ENDIF | ||
34 | #endif | ||
35 | |||
36 | RETURN | ||
37 | END |
ViewVC Help | |
Powered by ViewVC 1.1.22 |