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 10381 for utils/tools/NESTING/src/agrif_create_data.f90 – NEMO

Ignore:
Timestamp:
2018-12-11T21:00:08+01:00 (5 years ago)
Author:
clem
Message:

attempt to correct several bugs in the NESTING tools. With this version, domcfg.nc file should be written correctly and the partial steps should be taken into account.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • utils/tools/NESTING/src/agrif_create_data.f90

    r10025 r10381  
    3737  ! Interpolate U grid  data 
    3838  ji = 1 
    39   DO WHILE( TRIM(U_Files(ji)) .NE. '/NULL' ) 
     39  DO WHILE( TRIM(U_Files(ji)) /= '' ) 
    4040     PRINT *,'Grid U forcing files = ',u_files(ji) 
    4141     !         
     
    4848  ! Interpolate V grid  data 
    4949  ji = 1 
    50   DO WHILE( TRIM(V_Files(ji)) .NE. '/NULL' ) 
     50  DO WHILE( TRIM(V_Files(ji)) /= '' ) 
    5151     PRINT *,'Grid V forcing files = ',v_files(ji) 
    5252     !         
     
    5858  ! Interpolate flux data 
    5959  ji = 1 
    60   DO WHILE( TRIM(Flx_Files(ji)) .NE. '/NULL' ) 
     60  DO WHILE( TRIM(Flx_Files(ji)) /= '' ) 
    6161     PRINT *,'flxfiles = ',flx_files(ji) 
    6262     !         
Note: See TracChangeset for help on using the changeset viewer.