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/2014/dev_r4642_WavesWG/NEMOGCM/NEMO/OPA_SRC – NEMO

source: branches/2014/dev_r4642_WavesWG/NEMOGCM/NEMO/OPA_SRC/step_oce.F90 @ 4644

Last change on this file since 4644 was 4644, checked in by acc, 10 years ago

Branch 2014/dev_r4642_WavesWG #1323. Import of surface wave components from the 2013/dev_ECMWF_waves branch + a few compatability changes and some mislaid documentation

  • Property svn:keywords set to Id
File size: 7.0 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 sbc_oce , ONLY: ln_stcor      ! seems to be necessary but should be included in sbcmod????
26   USE sbcrnf           ! surface boundary condition: runoff variables
27   USE sbccpl           ! surface boundary condition: coupled formulation (call send at end of step)
28   USE cpl_oasis3, ONLY : lk_cpl
29   USE sbctide          ! Tide initialisation
30
31   USE traqsr           ! solar radiation penetration      (tra_qsr routine)
32   USE trasbc           ! surface boundary condition       (tra_sbc routine)
33   USE trabbc           ! bottom boundary condition        (tra_bbc routine)
34   USE trabbl           ! bottom boundary layer            (tra_bbl routine)
35   USE tradmp           ! internal damping                 (tra_dmp routine)
36   USE traadv           ! advection scheme control     (tra_adv_ctl routine)
37   USE traldf           ! lateral mixing                   (tra_ldf routine)
38   !   zdfkpp           ! KPP non-local tracer fluxes      (tra_kpp routine)
39   USE trazdf           ! vertical mixing                  (tra_zdf routine)
40   USE tranxt           ! time-stepping                    (tra_nxt routine)
41   USE tranpc           ! non-penetrative convection       (tra_npc routine)
42
43   USE eosbn2           ! equation of state                (eos_bn2 routine)
44
45   USE dynadv           ! advection                        (dyn_adv routine)
46   USE dynbfr           ! Bottom friction terms            (dyn_bfr routine)
47   USE dynvor           ! vorticity term                   (dyn_vor routine)
48   USE dynhpg           ! hydrostatic pressure grad.       (dyn_hpg routine)
49   USE dynldf           ! lateral momentum diffusion       (dyn_ldf routine)
50   USE dynzdf           ! vertical diffusion               (dyn_zdf routine)
51   USE dynspg_oce       ! surface pressure gradient        (dyn_spg routine)
52   USE dynspg           ! surface pressure gradient        (dyn_spg routine)
53   USE dynnept          ! simp. form of Neptune effect(dyn_nept_cor routine)
54   USE dynstcor         ! Stokes-Coriolis forcing          (dyn_stcor routine)
55
56   USE dynnxt           ! time-stepping                    (dyn_nxt routine)
57
58   USE bdy_par          ! for lk_bdy
59   USE bdy_oce          ! for dmp logical
60   USE bdydta           ! open boundary condition data     (bdy_dta routine)
61   USE bdytra           ! bdy cond. for tracers            (bdy_tra routine)
62   USE bdydyn3d         ! bdy cond. for baroclinic vel.  (bdy_dyn3d routine)
63
64   USE sshwzv           ! vertical velocity and ssh        (ssh_nxt routine)
65   !                                                       (ssh_swp routine)
66   !                                                       (wzv     routine)
67   USE domvvl           ! variable vertical scale factors  (dom_vvl_sf_nxt routine)
68   !                                                       (dom_vvl_sf_swp routine)
69
70   USE ldfslp           ! iso-neutral slopes               (ldf_slp routine)
71   USE ldfeiv           ! eddy induced velocity coef.      (ldf_eiv routine)
72   USE ldftra_smag      ! Smagirinsky diffusion            (ldftra_smag routine)
73   USE ldfdyn_smag      ! Smagorinsky viscosity            (ldfdyn_smag routine)
74
75   USE zdftmx           ! tide-induced vertical mixing     (zdf_tmx routine)
76   USE zdfbfr           ! bottom friction                  (zdf_bfr routine)
77   USE zdftke           ! TKE vertical mixing              (zdf_tke routine)
78   USE zdfgls           ! GLS vertical mixing              (zdf_gls routine)
79   USE zdfkpp           ! KPP vertical mixing              (zdf_kpp routine)
80   USE zdfddm           ! double diffusion mixing          (zdf_ddm routine)
81   USE zdfevd           ! enhanced vertical diffusion      (zdf_evd routine)
82   USE zdfric           ! Richardson vertical mixing       (zdf_ric routine)
83   USE zdfmxl           ! Mixed-layer depth                (zdf_mxl routine)
84
85   USE zpshde           ! partial step: hor. derivative     (zps_hde routine)
86
87   USE diawri           ! Standard run outputs             (dia_wri routine)
88   USE trdicp           ! Ocean momentum/tracers trends    (trd_wri routine)
89   USE trdmld           ! mixed-layer trends               (trd_mld routine)
90   USE trdmld_rst       ! restart for mixed-layer trends
91   USE trdmod_oce       ! ocean momentum/tracers trends
92   USE trdmod           ! momentum/tracers trends
93   USE trdvor           ! vorticity budget                 (trd_vor routine)
94   USE diaptr           ! poleward transports              (dia_ptr routine)
95   USE diadct           ! sections transports              (dia_dct routine)
96   USE diaar5           ! AR5 diagnosics                   (dia_ar5 routine)
97   USE diahth           ! thermocline depth                (dia_hth routine)
98   USE diafwb           ! freshwater budget                (dia_fwb routine)
99   USE diahsb           ! heat, salt and volume budgets    (dia_hsb routine)
100   USE diaharm
101   USE flo_oce          ! floats variables
102   USE floats           ! floats computation               (flo_stp routine)
103
104   USE crsfld           ! Standard output on coarse grid   (crs_fld routine)
105
106   USE asminc           ! assimilation increments      (tra_asm_inc routine)
107   !                                                   (dyn_asm_inc routine)
108   USE asmbkg
109   USE stpctl           ! time stepping control            (stp_ctl routine)
110   USE prtctl           ! Print control                    (prt_ctl routine)
111
112   USE diaobs           ! Observation operator
113
114   USE timing           ! Timing
115
116#if defined key_agrif
117   USE agrif_opa_sponge ! Momemtum and tracers sponges
118#endif
119#if defined key_top
120   USE trcstp           ! passive tracer time-stepping      (trc_stp routine)
121#endif
122   !!----------------------------------------------------------------------
123   !! NEMO/OPA 3.3 , NEMO Consortium (2010)
124   !! $Id$
125   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt)
126   !!======================================================================
127END MODULE step_oce
Note: See TracBrowser for help on using the repository browser.