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/UKMO/r6232_HZG_WAVE-coupling/NEMOGCM/NEMO/OPA_SRC – NEMO

source: branches/UKMO/r6232_HZG_WAVE-coupling/NEMOGCM/NEMO/OPA_SRC/step_oce.F90 @ 8503

Last change on this file since 8503 was 7481, checked in by jcastill, 7 years ago

Changes as in branches/2016/dev_INGV_UKMO_2016@7451

File size: 6.8 KB
Line 
1MODULE step_oce
2   !!======================================================================
3   !!                       ***  MODULE step_oce  ***
4   !! Ocean time-stepping : module used in both initialisation phase and time stepping
5   !!======================================================================
6   !! History :   3.3  ! 2010-08  (C. Ethe)  Original code - reorganisation of the initial phase
7   !!----------------------------------------------------------------------
8   USE oce              ! ocean dynamics and tracers variables
9   USE dom_oce          ! ocean space and time domain variables
10   USE zdf_oce          ! ocean vertical physics variables
11   USE ldftra_oce       ! ocean tracer   - trends
12   USE ldfdyn_oce       ! ocean dynamics - trends
13   USE divcur           ! hor. divergence and curl      (div & cur routines)
14   USE in_out_manager   ! I/O manager
15   USE iom              !
16   USE lbclnk
17   USE restart          ! restart
18#if defined key_iomput
19   USE xios
20#endif
21
22   USE daymod           ! calendar                         (day     routine)
23
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 sbc_oce          ! surface boundary condition: ocean
28   USE sbctide          ! Tide initialisation
29   USE sbcapr           ! surface boundary condition: ssh_ib required by bdydta
30   USE sbcwave          ! Wave intialisation
31
32   USE traqsr           ! solar radiation penetration      (tra_qsr routine)
33   USE trasbc           ! surface boundary condition       (tra_sbc routine)
34   USE trabbc           ! bottom boundary condition        (tra_bbc routine)
35   USE trabbl           ! bottom boundary layer            (tra_bbl routine)
36   USE tradmp           ! internal damping                 (tra_dmp routine)
37   USE traadv           ! advection scheme control     (tra_adv_ctl routine)
38   USE traldf           ! lateral mixing                   (tra_ldf routine)
39   !   zdfkpp           ! KPP non-local tracer fluxes      (tra_kpp routine)
40   USE trazdf           ! vertical mixing                  (tra_zdf routine)
41   USE tranxt           ! time-stepping                    (tra_nxt routine)
42   USE tranpc           ! non-penetrative convection       (tra_npc routine)
43
44   USE eosbn2           ! equation of state                (eos_bn2 routine)
45
46   USE dynadv           ! advection                        (dyn_adv routine)
47   USE dynbfr           ! Bottom friction terms            (dyn_bfr routine)
48   USE dynvor           ! vorticity term                   (dyn_vor routine)
49   USE dynhpg           ! hydrostatic pressure grad.       (dyn_hpg routine)
50   USE dynldf           ! lateral momentum diffusion       (dyn_ldf routine)
51   USE dynzdf           ! vertical diffusion               (dyn_zdf routine)
52   USE dynspg_oce       ! surface pressure gradient        (dyn_spg routine)
53   USE dynspg           ! surface pressure gradient        (dyn_spg routine)
54   USE dynnept          ! simp. form of Neptune effect(dyn_nept_cor routine)
55
56   USE dynnxt           ! time-stepping                    (dyn_nxt routine)
57
58   USE stopar           ! Stochastic parametrization       (sto_par routine)
59   USE stopts 
60
61   USE bdy_par          ! for lk_bdy
62   USE bdy_oce          ! for dmp logical
63   USE bdydta           ! open boundary condition data     (bdy_dta routine)
64   USE bdytra           ! bdy cond. for tracers            (bdy_tra routine)
65   USE bdydyn3d         ! bdy cond. for baroclinic vel.  (bdy_dyn3d routine)
66
67   USE sshwzv           ! vertical velocity and ssh        (ssh_nxt routine)
68   !                                                       (ssh_swp routine)
69   !                                                       (wzv     routine)
70   USE domvvl           ! variable vertical scale factors  (dom_vvl_sf_nxt routine)
71   !                                                       (dom_vvl_sf_swp routine)
72
73   USE ldfslp           ! iso-neutral slopes               (ldf_slp routine)
74   USE ldfeiv           ! eddy induced velocity coef.      (ldf_eiv routine)
75   USE ldftra_smag      ! Smagirinsky diffusion            (ldftra_smag routine)
76   USE ldfdyn_smag      ! Smagorinsky viscosity            (ldfdyn_smag routine)
77
78   USE zdftmx           ! tide-induced vertical mixing     (zdf_tmx routine)
79   USE zdfbfr           ! bottom friction                  (zdf_bfr routine)
80   USE zdftke           ! TKE vertical mixing              (zdf_tke routine)
81   USE zdfgls           ! GLS vertical mixing              (zdf_gls routine)
82   USE zdfkpp           ! KPP vertical mixing              (zdf_kpp routine)
83   USE zdfddm           ! double diffusion mixing          (zdf_ddm routine)
84   USE zdfevd           ! enhanced vertical diffusion      (zdf_evd routine)
85   USE zdfric           ! Richardson vertical mixing       (zdf_ric routine)
86   USE zdfmxl           ! Mixed-layer depth                (zdf_mxl routine)
87   USE zdfqiao          !Qiao module wave induced mixing   (zdf_qiao routine)
88
89   USE zpshde           ! partial step: hor. derivative     (zps_hde routine)
90
91   USE diawri           ! Standard run outputs             (dia_wri routine)
92   USE diaptr           ! poleward transports              (dia_ptr routine)
93   USE diadct           ! sections transports              (dia_dct routine)
94   USE diaar5           ! AR5 diagnosics                   (dia_ar5 routine)
95   USE diahth           ! thermocline depth                (dia_hth routine)
96   USE diafwb           ! freshwater budget                (dia_fwb routine)
97   USE diahsb           ! heat, salt and volume budgets    (dia_hsb routine)
98   USE diaharm
99   USE flo_oce          ! floats variables
100   USE floats           ! floats computation               (flo_stp routine)
101
102   USE crsfld           ! Standard output on coarse grid   (crs_fld routine)
103
104   USE asminc           ! assimilation increments      (tra_asm_inc routine)
105   !                                                   (dyn_asm_inc routine)
106   USE asmbkg
107   USE stpctl           ! time stepping control            (stp_ctl routine)
108   USE prtctl           ! Print control                    (prt_ctl routine)
109
110   USE diaobs           ! Observation operator
111
112   USE timing           ! Timing
113
114#if defined key_agrif
115   USE agrif_opa_sponge ! Momemtum and tracers sponges
116   USE agrif_opa_update ! Update (2-way nesting)
117#endif
118#if defined key_top
119   USE trcstp           ! passive tracer time-stepping      (trc_stp routine)
120#endif
121   !!----------------------------------------------------------------------
122   !! NEMO/OPA 3.3 , NEMO Consortium (2010)
123   !! $Id$
124   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt)
125   !!======================================================================
126END MODULE step_oce
Note: See TracBrowser for help on using the repository browser.