Ignore:
Timestamp:
Jul 23, 2024, 3:29:36 PM (8 weeks ago)
Author:
abarral
Message:

Handle CPP_INLANDSIS in lmdz_cppkeys_wrapper.F90
Remove obsolete key wrgrads_thermcell, _ADV_HALO, _ADV_HALLO, isminmax
Remove redundant uses of CPPKEY_INCA (thanks acozic)
Remove obsolete misc/write_field.F90
Remove unused ioipsl_* wrappers
Remove calls to WriteField_u with wrong signature
Convert .F -> .[fF]90
(lint) uppercase fortran operators
[note: 1d and iso still broken - working on it]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/lmdz_thermcell_closure.F90

    r5099 r5103  
    3636
    3737!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    38 !print*,'THERMCELL CLOSURE 26E'
     38!PRINT*,'THERMCELL CLOSURE 26E'
    3939
    4040alim_star2(:)=0.
     
    4444! Indice vertical max (max de lalim) atteint par les thermiques sur le domaine
    4545llmax=1
    46 do ig=1,ngrid
     46DO ig=1,ngrid
    4747   if (lalim(ig)>llmax) llmax=lalim(ig)
    48 enddo
     48END DO
    4949
    5050
    5151! Calcul des integrales sur la verticale de alim_star et de
    5252!   alim_star^2/(rho dz)
    53 do k=1,llmax-1
     53DO k=1,llmax-1
    5454   do ig=1,ngrid
    5555      if (k<lalim(ig)) then
     
    5959      endif
    6060   enddo
    61 enddo
     61END DO
    6262
    6363
    64 do ig=1,ngrid
     64DO ig=1,ngrid
    6565   if (alim_star2(ig)>1.e-10) then
    6666      f(ig)=wmax(ig)*alim_star_tot(ig)/  &
    6767&     (max(500.,zmax(ig))*r_aspect*alim_star2(ig))
    6868   endif
    69 enddo
     69END DO
    7070
    7171
Note: See TracChangeset for help on using the changeset viewer.