New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
opa.F90 in tags/start/NEMO/OPA_SRC – NEMO

source: tags/start/NEMO/OPA_SRC/opa.F90 @ 328

Last change on this file since 328 was 3, checked in by opalod, 20 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.7 KB
Line 
1MODULE opa
2   !!==============================================================================
3   !!                       ***  MODULE opa   ***
4   !! Ocean system   : OPA ocean dynamics (including on-line tracers and sea-ice)
5   !!==============================================================================
6
7   !!----------------------------------------------------------------------
8   !!   opa_model      : solve ocean dynamics, tracer and/or sea-ice
9   !!   opa_flg        : initialisation of algorithm flag
10   !!----------------------------------------------------------------------
11   !! * Modules used
12   USE dom_oce         ! ocean space domain variables
13   USE oce             ! dynamics and tracers variables
14   USE daymod          ! calendar
15   USE in_out_manager  ! I/O manager
16   USE lib_mpp         ! distributed memory computing
17
18   USE domcfg          ! domain configuration               (dom_cfg routine)
19   USE mppini          ! shared/distributed memory setting (mpp_init routine)
20   USE domain          ! domain initialization             (dom_init routine)
21   USE obc_par         ! open boundary cond. parameters
22   USE obcini          ! open boundary cond. initialization (obc_ini routine)
23   USE solver          ! solver initialization          (solver_init routine)
24   USE istate          ! initial state setting          (istate_init routine)
25   USE eosbn2          ! equation of state            (eos bn2 routine)
26   USE zpshde          ! partial step: hor. derivative (zps_hde routine)
27
28   ! ocean physics
29   USE traqsr          ! solar radiation penetration   (tra_qsr_init routine)
30   USE ldfdyn          ! lateral viscosity setting      (ldfdyn_init routine)
31   USE ldftra          ! lateral diffusivity setting    (ldftra_init routine)
32   USE zdfini
33!!!USE zdf_oce         ! ocean vertical physics            (zdf_init routine)
34
35   USE phycst          ! physical constant                  (par_cst routine)
36   USE iceini          ! initialization of sea-ice         (ice_init routine)
37   USE cpl             ! coupled ocean/atmos.              (cpl_init routine)
38   USE ocfzpt          ! ocean freezing point              (oc_fz_pt routine)
39   USE trddyn          ! ocean momentum trends         (trd_dyn_init routine)
40   USE trdtra          ! ocean active tracer trends    (trd_tra_init routine)
41   USE trdmld          ! ocean active tracer mixed layer trend ???
42   USE flxfwb          !
43
44   USE ptr             ! poleward transports           (dia_ptr_init routine)
45
46   USE step            ! OPA time-stepping                  (stp     routine)
47
48   IMPLICIT NONE
49   PRIVATE
50
51   !! * Routine accessibility
52   PUBLIC opa_model      ! called by model.F90
53   !!----------------------------------------------------------------------
54   !!  OPA 9.0 , LODYC-IPSL (2003)
55   !!----------------------------------------------------------------------
56
57CONTAINS
58
59   SUBROUTINE opa_model
60      !!----------------------------------------------------------------------
61      !!                     ***  ROUTINE opa  ***
62      !!
63      !! ** Purpose :   opa solves the primitive equations on an orthogonal
64      !!      curvilinear mesh on the sphere.
65      !!
66      !! ** Method  : - model general initialization
67      !!              - launch the time-stepping (stp routine)
68      !!
69      !! References :
70      !!      Madec, Delecluse,Imbard, and Levy, 1997: reference manual.
71      !!              internal report, IPSL.
72      !!
73      !! History :
74      !!   4.0  !  90-10  (C. Levy, G. Madec)  Original code
75      !!   7.0  !  91-11  (M. Imbard, C. Levy, G. Madec)
76      !!   7.1  !  93-03  (M. Imbard, C. Levy, G. Madec, O. Marti,
77      !!                   M. Guyon, A. Lazar, P. Delecluse, C. Perigaud,
78      !!                   G. Caniaux, B. Colot, C. Maes ) release 7.1
79      !!        !  92-06  (L.Terray) coupling implementation
80      !!        !  93-11  (M.A. Filiberti) IGLOO sea-ice
81      !!   8.0  !  96-03  (M. Imbard, C. Levy, G. Madec, O. Marti,
82      !!                   M. Guyon, A. Lazar, P. Delecluse, L.Terray,
83      !!                   M.A. Filiberti, J. Vialar, A.M. Treguier,
84      !!                   M. Levy)  release 8.0
85      !!   8.1  !  97-06  (M. Imbard, G. Madec)
86      !!   8.2  !  99-11  (M. Imbard, H. Goosse)  LIM sea-ice model
87      !!        !  99-12  (V. Thierry, A-M. Treguier, M. Imbard, M-A. Foujols)  OPEN-MP
88      !!        !  00-07  (J-M Molines, M. Imbard)  Open Boundary Conditions  (CLIPPER)
89      !!   9.0  !  02-08  (G. Madec)  F90: Free form and modules
90      !!----------------------------------------------------------------------
91      !! * Local declarations
92      INTEGER ::   istp       ! time step index
93#if defined key_coupled
94      INTEGER ::   itro, istp0        ! ???
95#endif
96      CHARACTER (len=64) ::        &
97         cform_aaa="( /, 'AAAAAAAA', / ) "     ! flag for output listing
98      !!----------------------------------------------------------------------
99     
100     
101      ! Initializations
102      ! ===============
103     
104      ! open listing and namelist units
105      IF ( numout /= 0 .AND. numout /= 6 ) THEN
106         OPEN( UNIT=numout, FILE='ocean.output', FORM='FORMATTED' )
107      ENDIF
108#if defined key_mpp
109      OPEN( UNIT=nummpp, FILE='mpp.output', FORM='FORMATTED' )
110#endif
111
112
113      ! Nodes selection
114      narea = mynode()
115      narea = narea + 1    ! mynode return the rank of proc (0 --> jpnij -1 )
116      lwp   = narea == 1
117
118      OPEN( UNIT=numnam, FILE='namelist', FORM='FORMATTED', STATUS='OLD' )
119
120      IF(lwp) THEN
121         WRITE(numout,*)
122         WRITE(numout,*) '                 L O D Y C - I P S L'
123         WRITE(numout,*) '                     O P A model'
124         WRITE(numout,*) '            Ocean General Circulation Model'
125         WRITE(numout,*) '               version OPA 9.0  (2003)'
126         WRITE(numout,*)
127      ENDIF
128
129      !                                     ! ============================== !
130      !                                     !  Model general initialization  !
131      !                                     ! ============================== !
132
133      IF(lwp) WRITE(numout,cform_aaa)       ! Flag AAAAAAA
134
135                                            ! Domain decomposition
136      IF( jpni*jpnj == jpnij ) THEN
137         CALL mpp_init                          ! standard cutting out
138      ELSE
139         CALL mpp_init2                         ! eliminate land processors
140      ENDIF
141     
142      CALL phy_cst                          ! Physical constants
143
144      CALL dom_cfg                          ! Domain configuration
145     
146      CALL dom_init                         ! Domain
147
148      IF( lk_obc    )   CALL obc_init        ! Open boundaries
149
150      CALL solver_init                      ! Elliptic solver
151
152      CALL day( nit000 )                    ! Calendar
153
154      CALL istate_init                      ! ocean initial state (Dynamics and tracers)
155!!add
156                       CALL eos( tb, sb, rhd, rhop )        ! before potential and in situ densities
157
158                       CALL bn2( tb, sb, rn2 )              ! before Brunt-Vaisala frequency
159
160      IF( lk_zps    )   CALL zps_hde( nit000, tb, sb, rhd,  &  ! Partial steps: before Horizontal DErivative
161                                          gtu, gsu, gru, &  ! of t, s, rd at the bottom ocean level
162                                          gtv, gsv, grv )
163
164!!add
165
166      CALL oc_fz_pt                         ! Surface freezing point
167
168#if defined key_ice_lim
169      CALL ice_init                         ! Sea ice model
170#endif
171
172#if defined key_passivetrc
173      CALL initrc                           ! Passive tracers
174#endif
175
176      !                                     ! Ocean physics
177
178      CALL tra_qsr_init                         ! Salor radiation penetration
179
180      CALL ldf_dyn_init                         ! Lateral ocean momentum physics
181
182      CALL ldf_tra_init                         ! Lateral ocean tracer physics
183
184      CALL zdf_init                             ! Vertical ocean physics
185
186      !                                     ! Ocean trends
187      IF( lk_trddyn )   CALL trd_dyn_init        ! momentum     
188      IF( lk_trdtra .OR. lk_trdmld )   &
189         &             CALL trd_tra_init        ! active tracers
190#if defined key_coupled
191      itro  = nitend - nit000 + 1           ! Coupled
192      istp0 = NINT( rdt )
193      CALL cpl_init( itro, nexco, istp0 )   ! Signal processing and process id exchange
194#endif
195
196      CALL flx_fwb_init                     ! FreshWater Budget correction
197
198#if defined key_diaptr
199      CALL dia_ptr_init                     ! Poleward TRansports
200#endif
201
202      !                                     ! =============== !
203      !                                     !  time stepping  !
204      !                                     ! =============== !
205
206      IF(lwp) WRITE(numout,cform_aaa)       ! Flag AAAAAAA
207
208      istp = nit000
209      DO WHILE ( istp <= nitend .AND. nstop == 0 )
210         CALL stp( istp )
211         istp = istp + 1
212      END DO
213      !                                     ! ========= !
214      !                                     !  Job end  !
215      !                                     ! ========= !
216
217      IF(lwp) WRITE(numout,cform_aaa)       ! Flag AAAAAAA
218
219      IF( nstop /= 0 ) THEN                 ! error print
220      IF(lwp) WRITE(numout,cform_err)
221      IF(lwp) WRITE(numout,*) nstop, ' error have been found' 
222      ENDIF
223
224#if defined key_mpp
225      CALL mppstop                          ! Close all files (mpp)
226#endif
227
228   END SUBROUTINE opa_model
229
230   SUBROUTINE opa_flg
231      !!----------------------------------------------------------------------
232      !!                     ***  ROUTINE opa  ***
233      !!
234      !! ** Purpose :   Initialize logical flags that control the choice of
235      !!      some algorithm or control print
236      !!
237      !! ** Method  :    Read in namilist namflg logical flags
238      !!
239      !! History :
240      !!   9.0  !  03-11  (G. Madec)  Original code
241      !!----------------------------------------------------------------------
242      !! * Local declarations
243
244      NAMELIST/namflg/ ln_dynhpg_imp
245      !!----------------------------------------------------------------------
246
247      ! Read Namelist namflg : algorithm FLaG
248      ! --------------------
249      REWIND ( numnam )
250      READ   ( numnam, namflg )
251
252      ! Parameter control and print
253      ! ---------------------------
254      ! Control print
255      IF(lwp) THEN
256         WRITE(numout,*)
257         WRITE(numout,*) 'opa_flg : algorithm flag initialization'
258         WRITE(numout,*) '~~~~~~~'
259         WRITE(numout,*) '          Namelist namflg : set algorithm flags'
260         WRITE(numout,*)
261         WRITE(numout,*) '             centered (F) or semi-implicit (T)   ln_dynhpg_imp = ', ln_dynhpg_imp
262         WRITE(numout,*) '             hydrostatic pressure gradient'
263      ENDIF
264
265   END SUBROUTINE opa_flg
266
267   !!======================================================================
268END MODULE opa
Note: See TracBrowser for help on using the repository browser.