- Timestamp:
- Jul 18, 2013, 10:20:28 AM (12 years ago)
- Location:
- LMDZ5/branches/testing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/branches/testing
- Property svn:mergeinfo changed
/LMDZ5/trunk merged: 1747-1749,1751,1753-1767,1769,1771-1772,1774-1776,1778-1794
- Property svn:mergeinfo changed
-
LMDZ5/branches/testing/libf/phy1d/1DUTILS.h_with_writelim
r1707 r1795 125 125 ok_flux_surf = .FALSE. 126 126 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) 127 134 128 135 !Config Key = time_ini … … 703 710 RETURN 704 711 END 705 subroutine scopy(n,sx,incx,sy,incy)706 !707 IMPLICIT NONE708 !709 integer n,incx,incy,ix,iy,i710 real sx((n-1)*incx+1),sy((n-1)*incy+1)711 !712 iy=1713 ix=1714 do 10 i=1,n715 sy(iy)=sx(ix)716 ix=ix+incx717 iy=iy+incy718 10 continue719 !720 return721 end722 712 subroutine wrgradsfi(if,nl,field,name,titlevar) 723 713 implicit none … … 1079 1069 1080 1070 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 1081 SUBROUTINE disvert (pa,preff,ap,bp,dpres,presnivs,nivsigs,nivsig)1071 SUBROUTINE disvert0(pa,preff,ap,bp,dpres,presnivs,nivsigs,nivsig) 1082 1072 1083 1073 ! Auteur : P. Le Van . … … 2662 2652 return 2663 2653 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.