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 6579 for branches/2016/dev_r6409_SIMPLIF_2_usrdef/NEMOGCM/NEMO/OPA_SRC/DOM/domhgr.F90 – NEMO

Ignore:
Timestamp:
2016-05-19T16:12:37+02:00 (8 years ago)
Author:
flavoni
Message:

add module for istate in usr_def module , see ticket #1692

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2016/dev_r6409_SIMPLIF_2_usrdef/NEMOGCM/NEMO/OPA_SRC/DOM/domhgr.F90

    r6484 r6579  
    290290            ! 
    291291            IF( ie1e2u_v == 0 ) THEN   ! e1e2u and e1e2v have not been read: compute them 
    292                !                          ! e2u and e1v does not include a 
    293                !                          reduction in some strait: apply reduction 
     292               !                       ! e2u and e1v does not include a reduction in some strait: apply reduction 
    294293               e1e2u (:,:) = e1u(:,:) * e2u(:,:) 
    295294               e1e2v (:,:) = e1v(:,:) * e2v(:,:) 
     
    301300            &                 gphit  , gphiu , gphiv , gphif ,    & 
    302301            &                 e1t    , e1u   , e1v   , e1f   ,    & 
    303             &                 e2t    , e2u   , e2v   , e2f   ,    &  
     302            &                 e2t    , e2u   , e2v   , e2f   ,    & 
    304303            &                 ie1e2u_v  ) 
    305304         ! 
     
    331330      e2_e1u(:,:) = e2u(:,:) / e1u(:,:) 
    332331      e1_e2v(:,:) = e1v(:,:) / e2v(:,:) 
    333  
    334       IF( lwp .AND. nn_print >=1 .AND. .NOT.ln_rstart ) THEN      ! Control print : Grid informations (if not restart) 
    335          WRITE(numout,*) 
    336          WRITE(numout,*) '          longitude and e1 scale factors' 
    337          WRITE(numout,*) '          ------------------------------' 
    338          WRITE(numout,9300) ( ji, glamt(ji,1), glamu(ji,1),   & 
    339             glamv(ji,1), glamf(ji,1),   & 
    340             e1t(ji,1), e1u(ji,1),   & 
    341             e1v(ji,1), e1f(ji,1), ji = 1, jpi,10) 
    342 9300     FORMAT( 1x, i4, f8.2,1x, f8.2,1x, f8.2,1x, f8.2, 1x,    & 
    343             f19.10, 1x, f19.10, 1x, f19.10, 1x, f19.10 ) 
    344             ! 
    345          WRITE(numout,*) 
    346          WRITE(numout,*) '          latitude and e2 scale factors' 
    347          WRITE(numout,*) '          -----------------------------' 
    348          WRITE(numout,9300) ( jj, gphit(1,jj), gphiu(1,jj),   & 
    349             &                     gphiv(1,jj), gphif(1,jj),   & 
    350             &                     e2t  (1,jj), e2u  (1,jj),   & 
    351             &                     e2v  (1,jj), e2f  (1,jj), jj = 1, jpj, 10 ) 
    352       ENDIF 
    353332 
    354333 
Note: See TracChangeset for help on using the changeset viewer.