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.
Changeset 3294 for trunk/NEMOGCM/NEMO/OPA_SRC/SOL/solver.F90 – NEMO

Ignore:
Timestamp:
2012-01-28T17:44:18+01:00 (12 years ago)
Author:
rblod
Message:

Merge of 3.4beta into the trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMOGCM/NEMO/OPA_SRC/SOL/solver.F90

    r2715 r3294  
    2323   USE dynspg_oce      ! choice/control of key cpp for surface pressure gradient 
    2424   USE solmat          ! matrix of the solver 
    25    USE obc_oce         ! Lateral open boundary condition 
    2625   USE in_out_manager  ! I/O manager 
    2726   USE lbclnk          ! ocean lateral boundary conditions (or mpp link) 
    2827   USE lib_mpp         ! MPP library 
     28   USE timing          ! timing 
    2929 
    3030   IMPLICIT NONE 
     
    5454      NAMELIST/namsol/ nn_solv, nn_sol_arp, nn_nmin, nn_nmax, nn_nmod, rn_eps, rn_resmax, rn_sor 
    5555      !!---------------------------------------------------------------------- 
     56      ! 
     57      IF( nn_timing == 1 )  CALL timing_start('solver_init') 
     58      ! 
    5659 
    5760      IF(lwp) THEN                  !* open elliptic solver statistics file (only on the printing processors) 
     
    111114      CALL sol_mat( kt )            !* Construction of the elliptic system matrix 
    112115      ! 
     116      IF( nn_timing == 1 )  CALL timing_stop('solver_init') 
     117      ! 
    113118   END SUBROUTINE solver_init 
    114119#endif 
Note: See TracChangeset for help on using the changeset viewer.