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 869 for trunk/NEMO/LIM_SRC_3/limthd.F90 – NEMO

Ignore:
Timestamp:
2008-03-26T10:21:54+01:00 (16 years ago)
Author:
rblod
Message:

Parallelisation of LIM3. This commit seems to ensure the reproducibility mono/mpp. See ticket #77.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/LIM_SRC_3/limthd.F90

    r867 r869  
    3030   USE limvar 
    3131   USE prtctl          ! Print control 
     32   USE lib_mpp 
    3233 
    3334   IMPLICIT NONE 
     
    116117      WRITE(numout,*) '~~~~~~' 
    117118 
     119      IF( numit == nstart  )   CALL lim_thd_sal_init  ! Initialization (first time-step only) 
    118120!------------------------------------------------------------------------------! 
    119121! 1) Initialization of diagnostic variables                                    ! 
     
    180182      ! 1.4) Compute global heat content 
    181183      !----------------------------------- 
    182       qt_i_in(:,:)  = 0.0 
    183       qt_s_in(:,:)  = 0.0 
    184       qt_i_fin(:,:)  = 0.0 
    185       qt_s_fin(:,:)  = 0.0 
    186       sum_fluxq(:,:) = 0.0 
    187       fatm(:,:) = 0.0 
     184      qt_i_in(:,:)  = 0.e0 
     185      qt_s_in(:,:)  = 0.e0 
     186      qt_i_fin(:,:)  = 0.e0 
     187      qt_s_fin(:,:)  = 0.e0 
     188      sum_fluxq(:,:) = 0.e0 
     189      fatm(:,:) = 0.e0 
    188190 
    189191! 2) Partial computation of forcing for the thermodynamic sea ice model.      ! 
     
    279281!------------------------------------------------------------------------------! 
    280282 
     283         IF( lk_mpp ) CALL mpp_ini_ice(nbpb) 
     284 
    281285         IF (nbpb > 0) THEN  ! If there is no ice, do nothing. 
    282286 
     
    414418            !+++++ 
    415419 
     420         IF( lk_mpp ) CALL mpp_comm_free(ncomm_ice) !RB necessary ?? 
    416421         ENDIF ! nbpb 
    417422 
Note: See TracChangeset for help on using the changeset viewer.