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

File:
1 edited

Legend:

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

    r5099 r5158  
    9696    else
    9797       sumo = 0._wp
    98        do j=i1,i2
     98       DO j=i1,i2
    9999          deltah = abs(s(i1+1)-s(i1))
    100100          sumo = sumo + f(j)*deltah
     
    204204    end if
    205205   
    206     do i = 2, ntab
     206    DO i = 2, ntab
    207207       if ( xtab(i) <= xtab(i-1) ) then
    208208          lerror = .true.
     
    239239    ihi = ntab
    240240   
    241     do i = 1, ntab
     241    DO i = 1, ntab
    242242       if ( a <= xtab(i) ) then
    243243          exit
     
    249249    ilo = min ( ilo, ntab - 1 )
    250250   
    251     do i = 1, ntab
     251    DO i = 1, ntab
    252252       if ( xtab(i) <= b ) then
    253253          exit
     
    263263!ds    sum1 = 0.0D+00
    264264   
    265     do i = ilo, ihi
     265    DO i = ilo, ihi
    266266       
    267267       x1 = xtab(i-1)
     
    371371          ga=1._wp
    372372          m1=x-1
    373           do k=2,m1
     373          DO k=2,m1
    374374             ga=ga*k
    375375          enddo
     
    382382          m=int(z)
    383383          r=1._wp
    384           do k=1,m
     384          DO k=1,m
    385385             r=r*(z-k)
    386386          enddo
     
    390390       endif
    391391       gr=g(26)
    392        do k=25,1,-1
     392       DO k=25,1,-1
    393393          gr=gr*z+g(k)
    394394       enddo
Note: See TracChangeset for help on using the changeset viewer.