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 7604 for branches/2016 – NEMO

Changeset 7604 for branches/2016


Ignore:
Timestamp:
2017-01-24T16:50:54+01:00 (7 years ago)
Author:
dkuts
Message:

fixed some typos

Location:
branches/2016/dev_r6519_HPC_4/NEMOGCM/NEMO/OPA_SRC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2016/dev_r6519_HPC_4/NEMOGCM/NEMO/OPA_SRC/DIA/diafwb.F90

    r7525 r7604  
    5757      REAL(wp) :: zt, zs, zu 
    5858      REAL(wp) :: zsm0, zfwfnew 
    59       REAL(wp), DIMENSION(:,:)     ::   ztmp      ! 2D workspace 
     59      REAL(wp), DIMENSION(:,:), ALLOCATABLE     ::   ztmp      ! 2D workspace 
    6060      IF( cp_cfg == "orca" .AND. jp_cfg == 1 .OR. jp_cfg == 2 .OR. jp_cfg == 4 ) THEN 
    6161      !!---------------------------------------------------------------------- 
    6262      IF( nn_timing == 1 )   CALL timing_start('dia_fwb') 
     63 
     64      ALLOCATE(ztmp(jpi,jpj))  
    6365 
    6466      ! Mean global salinity 
  • branches/2016/dev_r6519_HPC_4/NEMOGCM/NEMO/OPA_SRC/TRA/traadv.F90

    r7525 r7604  
    100100      ! 
    101101      !                                         !==  effective transport  ==! 
    102 !$OMP PARALLEL DO schedule(static) private(jk jj, ji) 
     102!$OMP PARALLEL DO schedule(static) private(jk, jj, ji) 
    103103      DO jk = 1, jpkm1 
    104104         DO jj = 1, jpj 
Note: See TracChangeset for help on using the changeset viewer.