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 4362 for branches/2012/dev_v3_4_STABLE_2012/NEMOGCM/NEMO/TOP_SRC/PISCES/trcnam_pisces.F90 – NEMO

Ignore:
Timestamp:
2014-01-22T10:32:46+01:00 (10 years ago)
Author:
cetlod
Message:

v3.4beta:bugfix to correct I/O format of passive tracer name, see ticket #1144

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2012/dev_v3_4_STABLE_2012/NEMOGCM/NEMO/TOP_SRC/PISCES/trcnam_pisces.F90

    r3881 r4362  
    114114         ! ------------------- 
    115115         DO jl = 1, jp_pisces_2d 
    116             WRITE(pisdia2d(jl)%sname,'("2D_",I1)') jl                      ! short name 
    117             WRITE(pisdia2d(jl)%lname,'("2D DIAGNOSTIC NUMBER ",I2)') jl    ! long name 
     116            WRITE(pisdia2d(jl)%sname,'("2D_",I2.2)') jl                      ! short name 
     117            WRITE(pisdia2d(jl)%lname,'("2D DIAGNOSTIC NUMBER ",I2.2)') jl    ! long name 
    118118            pisdia2d(jl)%units = ' '                                       ! units 
    119119         END DO 
    120120         !                                 ! 3D output arrays 
    121121         DO jl = 1, jp_pisces_3d 
    122             WRITE(pisdia3d(jl)%sname,'("3D_",I1)') jl                      ! short name 
    123             WRITE(pisdia3d(jl)%lname,'("3D DIAGNOSTIC NUMBER ",I2)') jl    ! long name 
     122            WRITE(pisdia3d(jl)%sname,'("3D_",I2.2)') jl                      ! short name 
     123            WRITE(pisdia3d(jl)%lname,'("3D DIAGNOSTIC NUMBER ",I2.2)') jl    ! long name 
    124124            pisdia3d(jl)%units = ' '                                       ! units 
    125125         END DO 
Note: See TracChangeset for help on using the changeset viewer.