Ignore:
Timestamp:
Aug 2, 2024, 2:12:03 PM (7 weeks ago)
Author:
abarral
Message:

Add missing klon on strataer_emiss_mod.F90
Correct various missing explicit declarations
Replace tabs by spaces (tabs are not part of the fortran charset)
Continue cleaning modules
Removed unused arguments and variables

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/ecrad.v1.5.1/radiation_monochromatic.F90

    r4489 r5158  
    164164    integer :: jlev
    165165
    166     do jlev = 1,nlev
     166    DO jlev = 1,nlev
    167167      ! The fraction of the total optical depth in the current layer
    168168      ! is proportional to the fraction of the mass of the atmosphere
     
    192192             &  = StefanBoltzmann * single_level%skin_temperature(istartcol:iendcol)**4 &
    193193             &  * single_level%lw_emissivity(istartcol:iendcol,1)
    194         do jlev = 1,nlev+1
     194        DO jlev = 1,nlev+1
    195195          planck_hl(1,jlev,istartcol:iendcol) = StefanBoltzmann * thermodynamics%temperature_hl(istartcol:iendcol,jlev)**4
    196196        end do
     
    200200             &             single_level%skin_temperature(istartcol:iendcol)) &
    201201             &  * single_level%lw_emissivity(istartcol:iendcol,1)
    202         do jlev = 1,nlev+1
     202        DO jlev = 1,nlev+1
    203203          planck_hl(1,jlev,istartcol:iendcol) = Pi*planck_function(config%mono_lw_wavelength, &
    204204               &             thermodynamics%temperature_hl(istartcol:iendcol,jlev))
     
    261261    ! Convert cloud mixing ratio into liquid and ice water path
    262262    ! in each layer
    263     do jlev = 1, nlev
    264       do jcol = istartcol, iendcol
     263    DO jlev = 1, nlev
     264      DO jcol = istartcol, iendcol
    265265        ! Factor to convert from gridbox-mean mass mixing ratio to
    266266        ! in-cloud water path involves the pressure difference in
     
    288288
    289289    if (config%iverbose >= 4) then
    290       do jcol = istartcol,iendcol
     290      DO jcol = istartcol,iendcol
    291291        write(*,'(a,i0,a,f7.3,a,f7.3)') 'Profile ', jcol, ': shortwave optical depth = ', &
    292292             &  sum(od_sw_cloud(1,:,jcol)*cloud%fraction(jcol,:)), &
Note: See TracChangeset for help on using the changeset viewer.