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.
step_oce.F90 in branches/nemo_v3_3_beta/NEMOGCM/NEMO/OPA_SRC – NEMO

source: branches/nemo_v3_3_beta/NEMOGCM/NEMO/OPA_SRC/step_oce.F90 @ 2329

Last change on this file since 2329 was 2329, checked in by gm, 13 years ago

v3.3beta: Suppress old keys (key_diaspr, key_flx..., key_vectopt_memory) & phasing of zdfgls interface

  • Property svn:keywords set to Id
File size: 6.1 KB
Line 
1MODULE step_oce
2   !!======================================================================
3   !!                       ***  MODULE step_oce  ***
4   !! Time-stepping    : module used for the ocean time stepping
5   !!======================================================================
6   !!----------------------------------------------------------------------
7   !! NEMO/OPA 3.3 , NEMO Consortium (2010)
8   !! $Id$
9   !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt)
10   !!----------------------------------------------------------------------
11   USE oce              ! ocean dynamics and tracers variables
12   USE dom_oce          ! ocean space and time domain variables
13   USE zdf_oce          ! ocean vertical physics variables
14   USE ldftra_oce       ! ocean tracer   - trends
15   USE ldfdyn_oce       ! ocean dynamics - trends
16   USE in_out_manager   ! I/O manager
17   USE iom              !
18   USE lbclnk
19
20   USE daymod           ! calendar                         (day     routine)
21
22   USE dtatem           ! ocean temperature data           (dta_tem routine)
23   USE dtasal           ! ocean salinity    data           (dta_sal routine)
24   USE sbcmod           ! surface boundary condition       (sbc     routine)
25   USE sbcrnf           ! surface boundary condition: runoff variables
26   USE sbccpl           ! surface boundary condition: coupled formulation (call send at end of step)
27   USE cpl_oasis3, ONLY : lk_cpl
28
29   USE traqsr           ! solar radiation penetration      (tra_qsr routine)
30   USE trasbc           ! surface boundary condition       (tra_sbc routine)
31   USE trabbc           ! bottom boundary condition        (tra_bbc routine)
32   USE trabbl           ! bottom boundary layer            (tra_bbl routine)
33   USE tradmp           ! internal damping                 (tra_dmp routine)
34   USE traadv           ! advection scheme control     (tra_adv_ctl routine)
35   USE traldf           ! lateral mixing                   (tra_ldf routine)
36   USE cla              ! cross land advection             (tra_cla routine)
37   !   zdfkpp           ! KPP non-local tracer fluxes      (tra_kpp routine)
38   USE trazdf           ! vertical mixing                  (tra_zdf routine)
39   USE tranxt           ! time-stepping                    (tra_nxt routine)
40   USE tranpc           ! non-penetrative convection       (tra_npc routine)
41
42   USE eosbn2           ! equation of state                (eos_bn2 routine)
43
44   USE dynadv           ! advection                        (dyn_adv routine)
45   USE dynbfr           ! Bottom friction terms            (dyn_bfr routine)
46   USE dynvor           ! vorticity term                   (dyn_vor routine)
47   USE dynhpg           ! hydrostatic pressure grad.       (dyn_hpg routine)
48   USE dynldf           ! lateral momentum diffusion       (dyn_ldf routine)
49   USE dynzdf           ! vertical diffusion               (dyn_zdf routine)
50   USE dynspg_oce       ! surface pressure gradient        (dyn_spg routine)
51   USE dynspg           ! surface pressure gradient        (dyn_spg routine)
52   USE dynnxt           ! time-stepping                    (dyn_nxt routine)
53
54   USE obc_par          ! open boundary condition variables
55   USE obcdta           ! open boundary condition data     (obc_dta routine)
56   USE obcrst           ! open boundary cond. restart      (obc_rst routine)
57   USE obcrad           ! open boundary cond. radiation    (obc_rad routine)
58
59   USE bdy_par          ! unstructured open boundary data variables
60   USE bdydta           ! unstructured open boundary data  (bdy_dta routine)
61
62   USE sshwzv           ! vertical velocity and ssh        (ssh_wzv routine)
63
64   USE ldfslp           ! iso-neutral slopes               (ldf_slp routine)
65   USE ldfeiv           ! eddy induced velocity coef.      (ldf_eiv routine)
66
67   USE zdftmx           ! tide-induced vertical mixing     (zdf_tmx routine)
68   USE zdfbfr           ! bottom friction                  (zdf_bfr routine)
69   USE zdftke           ! TKE vertical mixing              (zdf_tke routine)
70   USE zdfgls           ! GLS vertical mixing              (zdf_gls routine)
71   USE zdfkpp           ! KPP vertical mixing              (zdf_kpp routine)
72   USE zdfddm           ! double diffusion mixing          (zdf_ddm routine)
73   USE zdfevd           ! enhanced vertical diffusion      (zdf_evd routine)
74   USE zdfric           ! Richardson vertical mixing       (zdf_ric routine)
75   USE zdfmxl           ! Mixed-layer depth                (zdf_mxl routine)
76
77   USE zpshde           ! partial step: hor. derivative     (zps_hde routine)
78
79   USE diawri           ! Standard run outputs             (dia_wri routine)
80   USE trdicp           ! Ocean momentum/tracers trends    (trd_wri routine)
81   USE trdmld           ! mixed-layer trends               (trd_mld routine)
82   USE trdmld_rst       ! restart for mixed-layer trends
83   USE trdmod_oce       ! ocean momentum/tracers trends
84   USE trdmod           ! momentum/tracers trends   
85   USE trdvor           ! vorticity budget                 (trd_vor routine)
86   USE diagap           ! hor. mean model-data gap         (dia_gap routine)
87   USE diahdy           ! dynamic height                   (dia_hdy routine)
88   USE diaptr           ! poleward transports              (dia_ptr routine)
89   USE diaar5           ! AR5 diagnosics                   (dia_ar5 routine)
90   USE diahth           ! thermocline depth                (dia_hth routine)
91   USE diafwb           ! freshwater budget                (dia_fwb routine)
92   USE diahsb           ! heat, salt and volume budgets    (dia_hsb routine)
93   USE flo_oce          ! floats variables
94   USE floats           ! floats computation               (flo_stp routine)
95
96   USE stpctl           ! time stepping control            (stp_ctl routine)
97   USE restart          ! ocean restart                    (rst_wri routine)
98   USE prtctl           ! Print control                    (prt_ctl routine)
99
100   USE traswp           ! Swap arrays           (tra_swp, tra_unswp routine)
101
102   USE diaobs           ! Observation operator
103
104#if defined key_agrif
105   USE agrif_opa_sponge ! Momemtum and tracers sponges
106#endif
107   !!======================================================================
108END MODULE step_oce
Note: See TracBrowser for help on using the repository browser.