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

    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 .
     
    26622652        return
    26632653        end
    2664 !===============================================================
    2665       function ismin(n,sx,incx)
    2666 
    2667       implicit none
    2668       integer n,i,incx,ismin,ix
    2669       real sx((n-1)*incx+1),sxmin
    2670 
    2671       ix=1
    2672       ismin=1
    2673       sxmin=sx(1)
    2674       do i=1,n-1
    2675          ix=ix+incx
    2676          if(sx(ix).lt.sxmin) then
    2677              sxmin=sx(ix)
    2678              ismin=i+1
    2679          endif
    2680       enddo
    2681 
    2682       return
    2683       end
    2684 
    2685 !===============================================================
    2686       function ismax(n,sx,incx)
    2687 
    2688       implicit none
    2689       integer n,i,incx,ismax,ix
    2690       real sx((n-1)*incx+1),sxmax
    2691 
    2692       ix=1
    2693       ismax=1
    2694       sxmax=sx(1)
    2695       do i=1,n-1
    2696          ix=ix+incx
    2697          if(sx(ix).gt.sxmax) then
    2698              sxmax=sx(ix)
    2699              ismax=i+1
    2700          endif
    2701       enddo
    2702 
    2703       return
    2704       end
    2705 
     2654
Note: See TracChangeset for help on using the changeset viewer.