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 14831 for NEMO – NEMO

Changeset 14831 for NEMO


Ignore:
Timestamp:
2021-05-11T09:51:03+02:00 (3 years ago)
Author:
sparonuz
Message:

Variables zFV,zFU were sometimes spelled zfV,zfU

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2021/dev_r14116_HPC-10_mcastril_Mixed_Precision_implementation/src/ICE/icedyn_rhg_vp.F90

    r14644 r14831  
    14381438         DO jj = 2, jpj - 1 
    14391439            DO ji = 2, jpi - 1 
    1440                zfU(ji,jj) = 0.5_wp * ( ( zs1(ji+1,jj) - zs1(ji,jj) ) * e2u(ji,jj)                                             & 
     1440               zFU(ji,jj) = 0.5_wp * ( ( zs1(ji+1,jj) - zs1(ji,jj) ) * e2u(ji,jj)                                             & 
    14411441                  &                  + ( zs2(ji+1,jj) * e2t(ji+1,jj) * e2t(ji+1,jj) - zs2(ji,jj) * e2t(ji,jj) * e2t(ji,jj)    & 
    14421442                  &                    ) * r1_e2u(ji,jj)                                                                      & 
     
    14441444                  &                    ) * 2._wp * r1_e1u(ji,jj)                                                              & 
    14451445                  &                  ) * r1_e1e2u(ji,jj) 
    1446                zfV(ji,jj) = 0.5_wp * ( ( zs1(ji,jj+1) - zs1(ji,jj) ) * e1v(ji,jj)                                             & 
     1446               zFV(ji,jj) = 0.5_wp * ( ( zs1(ji,jj+1) - zs1(ji,jj) ) * e1v(ji,jj)                                             & 
    14471447                  &                  - ( zs2(ji,jj+1) * e1t(ji,jj+1) * e1t(ji,jj+1) - zs2(ji,jj) * e1t(ji,jj) * e1t(ji,jj)    & 
    14481448                  &                    ) * r1_e1v(ji,jj)                                                                      & 
     
    14531453         END DO 
    14541454             
    1455          CALL lbc_lnk( 'icedyn_rhg_vp', zfU, 'U', -1._wp, zfV, 'V', -1._wp ) 
    1456           
    1457          CALL iom_put( 'intstrx' , zfU   * zmsk00 )   ! Internal force term in force balance (x) 
    1458          CALL iom_put( 'intstry' , zfV   * zmsk00 )   ! Internal force term in force balance (y) 
     1455         CALL lbc_lnk( 'icedyn_rhg_vp', zFU, 'U', -1._wp, zFV, 'V', -1._wp ) 
     1456          
     1457         CALL iom_put( 'intstrx' , zFU   * zmsk00 )   ! Internal force term in force balance (x) 
     1458         CALL iom_put( 'intstry' , zFV   * zmsk00 )   ! Internal force term in force balance (y) 
    14591459          
    14601460      ENDIF 
Note: See TracChangeset for help on using the changeset viewer.