Ignore:
Timestamp:
Aug 2, 2024, 2:12:03 PM (3 months 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

Location:
LMDZ6/branches/Amaury_dev/libf/dynphy_lonlat/phylmd
Files:
3 edited

Legend:

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

    r5139 r5158  
    538538    coslat0 = 0.5
    539539    phiso = phis
    540     do j = 2, jmp1 - 1
     540    DO j = 2, jmp1 - 1
    541541      PRINT*, 'avant if ', cos(rlatu(j)), coslat0
    542542      IF (cos(rlatu(j))<coslat0) THEN
     
    544544        ifiltre = (coslat0 / cos(rlatu(j)) - 1.) / 2.
    545545        wwf = 0.
    546         do i = 1, ifiltre
     546        DO i = 1, ifiltre
    547547          wwf(i) = 1.
    548548        enddo
    549549        wwf(ifiltre + 1) = (coslat0 / cos(rlatu(j)) - 1.) / 2. - ifiltre
    550         do i = 1, imp1 - 1
     550        DO i = 1, imp1 - 1
    551551          IF (masque(i, j)>0.9) THEN
    552552            ssz = phis(i, j)
    553             do ifi = 1, ifiltre + 1
     553            DO ifi = 1, ifiltre + 1
    554554              ii = i + ifi
    555555              IF (ii>imp1 - 1) ii = ii - imp1 + 1
  • LMDZ6/branches/Amaury_dev/libf/dynphy_lonlat/phylmd/iniphysiq_mod.F90

    r5137 r5158  
    102102
    103103    !!$OMP PARALLEL DEFAULT(SHARED) COPYIN(/temps/)
    104     !   Copy all threadprivate variables in temps_mod
     104    !    Copy all threadprivate variables in temps_mod
    105105    !$OMP PARALLEL DEFAULT(SHARED) COPYIN(annee_ref,day_ini,day_ref,start_time)
    106106
  • LMDZ6/branches/Amaury_dev/libf/dynphy_lonlat/phylmd/test_disvert_m.F90

    r5134 r5158  
    4444    IF (any(p(:, :llm) <= p_lay .OR. p_lay <= p(:, 2:))) THEN
    4545       ! List details and stop:
    46        do l = 1, llm
    47           do i = 1, ngrid
     46       DO l = 1, llm
     47          DO i = 1, ngrid
    4848             IF (p(i, l) <= p_lay(i, l)) THEN
    4949                print 1000, "ps = ", ps(i) / 100., "hPa, p(level ",  l, &
Note: See TracChangeset for help on using the changeset viewer.