Ignore:
Timestamp:
Jul 18, 2013, 10:20:28 AM (11 years ago)
Author:
Ehouarn Millour
Message:

Version testing basee sur la r1794


Testing release based on r1794

Location:
LMDZ5/branches/testing
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/branches/testing

  • LMDZ5/branches/testing/libf/phy1d/1DUTILS.h_with_writelim_old

    r1707 r1795  
    125125       ok_flux_surf = .FALSE.
    126126       CALL getin('ok_flux_surf',ok_flux_surf)
     127
     128!Config  Key  = ok_old_disvert
     129!Config  Desc = utilisation de l ancien programme disvert0 (dans 1DUTILS.h)
     130!Config  Def  = false
     131!Config  Help = utilisation de l ancien programme disvert0 (dans 1DUTILS.h)
     132       ok_old_disvert = .FALSE.
     133       CALL getin('ok_old_disvert',ok_old_disvert)
    127134
    128135!Config  Key  = time_ini
     
    703710      RETURN
    704711      END
    705       subroutine scopy(n,sx,incx,sy,incy)
    706 !
    707       IMPLICIT NONE
    708 !
    709       integer n,incx,incy,ix,iy,i
    710       real sx((n-1)*incx+1),sy((n-1)*incy+1)
    711 !
    712       iy=1
    713       ix=1
    714       do 10 i=1,n
    715          sy(iy)=sx(ix)
    716          ix=ix+incx
    717          iy=iy+incy
    718 10    continue
    719 !
    720       return
    721       end
    722712      subroutine wrgradsfi(if,nl,field,name,titlevar)
    723713      implicit none
     
    10791069 
    10801070!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    1081       SUBROUTINE disvert(pa,preff,ap,bp,dpres,presnivs,nivsigs,nivsig)
     1071      SUBROUTINE disvert0(pa,preff,ap,bp,dpres,presnivs,nivsigs,nivsig)
    10821072 
    10831073!    Auteur :  P. Le Van .
     
    26042594        end
    26052595
    2606 !===============================================================
    2607       function ismin(n,sx,incx)
    2608 
    2609       implicit none
    2610       integer n,i,incx,ismin,ix
    2611       real sx((n-1)*incx+1),sxmin
    2612 
    2613       ix=1
    2614       ismin=1
    2615       sxmin=sx(1)
    2616       do i=1,n-1
    2617          ix=ix+incx
    2618          if(sx(ix).lt.sxmin) then
    2619              sxmin=sx(ix)
    2620              ismin=i+1
    2621          endif
    2622       enddo
    2623 
    2624       return
    2625       end
    2626 
    2627 !===============================================================
    2628       function ismax(n,sx,incx)
    2629 
    2630       implicit none
    2631       integer n,i,incx,ismax,ix
    2632       real sx((n-1)*incx+1),sxmax
    2633 
    2634       ix=1
    2635       ismax=1
    2636       sxmax=sx(1)
    2637       do i=1,n-1
    2638          ix=ix+incx
    2639          if(sx(ix).gt.sxmax) then
    2640              sxmax=sx(ix)
    2641              ismax=i+1
    2642          endif
    2643       enddo
    2644 
    2645       return
    2646       end
    2647 
     2596
Note: See TracChangeset for help on using the changeset viewer.