/[MITgcm]/MITgcm/pkg/ocn_compon_interf/cpl_import_external_data.F
ViewVC logotype

Contents of /MITgcm/pkg/ocn_compon_interf/cpl_import_external_data.F

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


Revision 1.4 - (show annotations) (download)
Sun Jan 3 19:26:54 2010 UTC (14 years, 5 months ago) by jmc
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, checkpoint63p, checkpoint63q, checkpoint63r, checkpoint63s, checkpoint63l, checkpoint63m, checkpoint63n, checkpoint63o, checkpoint63h, checkpoint63i, checkpoint63j, checkpoint63k, checkpoint63d, checkpoint63e, checkpoint63f, checkpoint63g, checkpoint63a, checkpoint63b, checkpoint63c, checkpoint64, checkpoint65, checkpoint63, checkpoint65p, checkpoint65j, checkpoint65k, checkpoint65h, checkpoint65i, checkpoint65n, checkpoint65o, checkpoint65l, checkpoint65m, checkpoint65b, checkpoint65c, checkpoint65a, checkpoint65f, checkpoint65g, checkpoint65d, checkpoint65e, 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
Changes since 1.3: +7 -8 lines
- rename: CPL_DIAGS.h --> CPL_TAVE.h
- use simpler (no level index) cumulative-time counter: CPL_timeAve(bi,bj)
- cumulate fields only if doing time-ave output (cpl_taveFreq > 0)

1 C $Header: /u/gcmpack/MITgcm/pkg/ocn_compon_interf/cpl_import_external_data.F,v 1.3 2009/12/25 19:43:07 jmc Exp $
2 C $Name: $
3
4 #include "CPP_OPTIONS.h"
5
6 CBOP
7 C !ROUTINE: CPL_IMPORT_EXTERNAL_DATA
8 C !INTERFACE:
9 SUBROUTINE CPL_IMPORT_EXTERNAL_DATA(
10 I myTime, myIter, myThid )
11
12 C !DESCRIPTION: \bv
13 C *==========================================================*
14 C | SUBROUTINE CPL_IMPORT_EXTERNAL_DATA
15 C | o Routine for controlling import of coupling data from
16 C | coupler layer.
17 C *==========================================================*
18 C | This version talks to the MIT Coupler. It uses the MIT
19 C | Coupler "checkpoint1" library calls.
20 C *==========================================================*
21 C \ev
22
23 C !USES
24 IMPLICIT NONE
25
26 #include "SIZE.h"
27 #include "EEPARAMS.h"
28 #include "PARAMS.h"
29 #include "CPL_PARAMS.h"
30
31 C !INPUT/OUTPUT PARAMETERS:
32 C == Routine arguments ==
33 C myTime :: Current time in simulation.
34 C myIter :: Current timestep number.
35 C myThid :: Thread number for this instance of the routine.
36 _RL myTime
37 INTEGER myIter
38 INTEGER myThid
39 CEOP
40
41 #ifdef COMPONENT_MODULE
42 C !LOCAL VARIABLES:
43
44 C- Fetch data from coupling layer. Note MIT Coupler checkpoint1
45 C does not allow asynchronous extraction of data, so ordering
46 C has to be consistent with ordering coupling layer.
47 CALL OCN_IMPORT_FIELDS ( myThid )
48
49 C- Modify forcing according to Imported fields from coupler
50 c CALL OCN_APPLY_IMPORT( myTime, myIter, myThid )
51
52 IF ( cpl_taveFreq.GT.0. _d 0 ) THEN
53 C-- note: will move this "if" inside OCN_CPL_DIAGS when other diags
54 C than time-ave are computed within OCN_CPL_DIAGS.
55 CALL OCN_CPL_DIAGS( myTime, myIter, myThid )
56 ENDIF
57
58 #endif /* COMPONENT_MODULE */
59
60 RETURN
61 END

  ViewVC Help
Powered by ViewVC 1.1.22