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 15648 for NEMO/branches/2021/dev_r14116_HPC-10_mcastril_Mixed_Precision_implementation/src/ICE – NEMO

Ignore:
Timestamp:
2022-01-17T12:35:51+01:00 (2 years ago)
Author:
sparonuz
Message:

Updated name preprocessor function CASTWP to CASTDP

Location:
NEMO/branches/2021/dev_r14116_HPC-10_mcastril_Mixed_Precision_implementation/src/ICE
Files:
3 edited

Legend:

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

    r14644 r15648  
    706706      CALL prt_ctl_info(' - Cell values : ') 
    707707      CALL prt_ctl_info('   ~~~~~~~~~~~~~ ') 
    708       CALL prt_ctl(tab2d_1=CASTWP(e1e2t)      , clinfo1=' cell area   :') 
     708      CALL prt_ctl(tab2d_1=CASTDP(e1e2t)      , clinfo1=' cell area   :') 
    709709      CALL prt_ctl(tab2d_1=at_i       , clinfo1=' at_i        :') 
    710710      CALL prt_ctl(tab2d_1=ato_i      , clinfo1=' ato_i       :') 
  • NEMO/branches/2021/dev_r14116_HPC-10_mcastril_Mixed_Precision_implementation/src/ICE/icerst.F90

    r14644 r15648  
    330330            ! 
    331331            IF(lwp) WRITE(numout,*) '  SAS: default initialisation of ss[st]_m arrays used in ice_istate' 
    332             IF( l_useCT )  THEN    ;   sst_m(:,:) = eos_pt_from_ct( CASTWP(ts(:,:,1,jp_tem, Kmm)), CASTWP(ts(:,:,1,jp_sal, Kmm)) ) 
     332            IF( l_useCT )  THEN    ;   sst_m(:,:) = eos_pt_from_ct( CASTDP(ts(:,:,1,jp_tem, Kmm)), CASTDP(ts(:,:,1,jp_sal, Kmm)) ) 
    333333            ELSE                   ;   sst_m(:,:) = ts(:,:,1,jp_tem, Kmm) 
    334334            ENDIF 
  • NEMO/branches/2021/dev_r14116_HPC-10_mcastril_Mixed_Precision_implementation/src/ICE/icestp.F90

    r14986 r15648  
    213213      ! --- Ocean time step --- ! 
    214214      !-------------------------! 
    215       CALL ice_update_tau( kt, CASTWP(uu(:,:,1,Kbb)), CASTWP(vv(:,:,1,Kbb)) )         ! -- update surface ocean stresses 
     215      CALL ice_update_tau( kt, CASTDP(uu(:,:,1,Kbb)), CASTDP(vv(:,:,1,Kbb)) )         ! -- update surface ocean stresses 
    216216!!gm   remark, the ocean-ice stress is not saved in ice diag call above .....  find a solution!!! 
    217217      ! 
Note: See TracChangeset for help on using the changeset viewer.