- Timestamp:
- Jul 18, 2013, 10:20:28 AM (11 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_old
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 . … … 2604 2594 end 2605 2595 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.