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 11355 for NEMO/branches/UKMO/NEMO_4.0_GO8_coupled_iodef/src/ICE/icethd.F90 – NEMO

Ignore:
Timestamp:
2019-07-26T11:32:13+02:00 (5 years ago)
Author:
dancopsey
Message:

Add lots of print statements printing out values of files throughout the ocean_ice timestep.. New output will be in files crash_stats_419.out and crash_stats_68.out.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/UKMO/NEMO_4.0_GO8_coupled_iodef/src/ICE/icethd.F90

    r11082 r11355  
    329329      ! 
    330330      INTEGER ::   jk   ! dummy loop indices 
     331      INTEGER ::   jn , jid, jjd 
    331332      !!----------------------------------------------------------------------- 
    332333      ! 
     
    335336      CASE( 1 )            !==  from 2D to 1D  ==! 
    336337         !                 !---------------------! 
     338 
     339         DO jn = 1, npti 
     340           jid        = MOD( nptidx(jn) - 1 , jpi ) + 1 
     341           jjd        =    ( nptidx(jn) - 1 ) / jpi + 1 
     342           IF( jn == 54 ) THEN 
     343             IF( narea == 68) THEN 
     344               WRITE(968,*) 'in ice_thd_1d2d: ice_cat=',kl 
     345               WRITE(968,*) 'in ice_thd_1d2d: jid, jjd for point 54 is ',jid,jjd 
     346               WRITE(968,*) 'a_i for this point = ',a_i(jid,jjd) 
     347             END IF 
     348           END IF 
     349         END DO 
     350 
    337351         CALL tab_2d_1d( npti, nptidx(1:npti), at_i_1d(1:npti), at_i             ) 
    338352         CALL tab_2d_1d( npti, nptidx(1:npti), a_i_1d (1:npti), a_i (:,:,kl)     ) 
Note: See TracChangeset for help on using the changeset viewer.