Ignore:
Timestamp:
Jul 22, 2024, 9:29:09 PM (4 months ago)
Author:
abarral
Message:

Replace most uses of CPP_DUST by the corresponding logical defined in lmdz_cppkeys_wrapper.F90
Convert several files from .F to .f90 to allow Dust to compile w/o rrtm/ecrad
Create lmdz_yoerad.f90
(lint) Remove "!" on otherwise empty line

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/dyn3d_common/grilles_gcm_netcdf_sub.F90

    r5088 r5099  
    1 !
     1
    22! $Id: $
    3 !
     3
    44! This subroutine creates the grilles_gcm.nc file, containing:
    55! -> longitudes and latitudes in degrees for dynamical grids u, v and scalaire,
     
    77! -> vertical levels "presnivs"
    88! -> mask (land/sea), area (grid), phis=surface geopotential height = phis/g
    9 !
     9
    1010! The subroutine is called in dynphy_lonlat/phylmd/ce0l.F90.
    1111
     
    3737  INTEGER out_latudim,out_latvdim,out_dim(2)
    3838  INTEGER out_levdim
    39   !
     39
    4040  INTEGER :: presnivs_id
    4141  INTEGER :: mask_id,area_id,phis_id
    42   !
     42
    4343  INTEGER start(2),COUNT(2)
    4444
     
    4747  REAL rlonudeg(iip1),rlonvdeg(iip1)
    4848  REAL uwnd(iip1,jjp1),vwnd(iip1,jjm),temp(iip1,jjp1)
    49   !
     49
    5050  INTEGER masque_int(iip1,jjp1)
    5151  REAL :: phis_loc(iip1,jjp1)
     
    115115  status=nf90_def_dim(ncid_out,'latv',jjm,out_latvdim)
    116116  CALL handle_err(status)
    117   !
     117
    118118  status=nf90_def_dim(ncid_out,'lev',llm,out_levdim)
    119119  CALL handle_err(status)
     
    162162  status=nf90_put_att(ncid_out,out_tempid,'units','Kelvin')
    163163  status=nf90_put_att(ncid_out,out_tempid,'long_name','scalar dynamical grid')
    164   !
     164
    165165  ! for INCA :
    166166  ! vertical levels "presnivs"
Note: See TracChangeset for help on using the changeset viewer.