/[lmdze]/trunk/dyn3d/invert_zoom_x.f
ViewVC logotype

Diff of /trunk/dyn3d/invert_zoom_x.f

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/Sources/dyn3d/invert_zoom_x.f revision 148 by guez, Wed Jun 17 16:40:24 2015 UTC trunk/dyn3d/invert_zoom_x.f revision 255 by guez, Tue Mar 6 13:39:57 2018 UTC
# Line 3  module invert_zoom_x_m Line 3  module invert_zoom_x_m
3    implicit none    implicit none
4    
5    INTEGER, PARAMETER:: nmax = 30000    INTEGER, PARAMETER:: nmax = 30000
6      DOUBLE PRECISION abs_y
7    
8      private abs_y, funcd
9    
10  contains  contains
11    
12    subroutine invert_zoom_x(xf, xtild, G, xlon, xprim, xuv)    subroutine invert_zoom_x(beta, xf, xtild, G, xlon, xprim, xuv)
13    
14      use coefpoly_m, only: coefpoly      use coefpoly_m, only: coefpoly, a1, a2, a3
15      USE dimens_m, ONLY: iim      USE dimens_m, ONLY: iim
16      use dynetat0_m, only: clon      use dynetat0_m, only: clon, grossismx
17      use nr_util, only: pi_d, twopi_d      use nr_util, only: pi_d, twopi_d
18      use numer_rec_95, only: hunt      use numer_rec_95, only: hunt, rtsafe
19    
20      DOUBLE PRECISION, intent(in):: Xf(0:), xtild(0:), G(0:) ! (0:nmax)      DOUBLE PRECISION, intent(in):: beta, Xf(0:), xtild(0:), G(0:) ! (0:nmax)
21    
22      real, intent(out):: xlon(:), xprim(:) ! (iim)      real, intent(out):: xlon(:), xprim(:) ! (iim)
23    
# Line 24  contains Line 27  contains
27      ! 0.5 si calcul aux points U      ! 0.5 si calcul aux points U
28    
29      ! Local:      ! Local:
30      DOUBLE PRECISION Y, abs_y, a0, a1, a2, a3      DOUBLE PRECISION Y
31      integer i, it, iter      DOUBLE PRECISION h ! step of the uniform grid
32      real, parameter:: my_eps = 1e-6      integer i, it
33    
34      real xo1, Xf1      DOUBLE PRECISION xvrai(iim), Gvrai(iim)
35      real xvrai(iim), Gvrai(iim)      ! intermediary variables because xlon and xprim are single precision
     ! intermediary variables because xlon and xprim are simple precision  
36    
37      !------------------------------------------------------------------      !------------------------------------------------------------------
38    
39        print *, "Call sequence information: invert_zoom_x"
40      it = 0 ! initial guess      it = 0 ! initial guess
41        h = twopi_d / iim
42    
43      DO i = 1, iim      DO i = 1, iim
44         Y = - pi_d + (i + xuv - 0.75d0) * twopi_d / iim         Y = - pi_d + (i + xuv - 0.75d0) * h
45         ! - pi <= y < pi         ! - pi <= y < pi
46         abs_y = abs(y)         abs_y = abs(y)
47    
48         call hunt(xf, abs_y, it, my_lbound = 0)         ! Distinguish boundaries in order to avoid roundoff error.
49         ! {0 <= it <= nmax - 1}         ! funcd should be exactly equal to 0 at xtild(it) or xtild(it +
50           ! 1) and could be very small with the wrong sign so rtsafe
51         ! Calcul de xvrai(i) et Gvrai(i)         ! would fail.
52           if (abs_y == 0d0) then
53         CALL coefpoly(Xf(it), Xf(it + 1), G(it), G(it + 1), xtild(it), &            xvrai(i) = 0d0
54              xtild(it + 1), a0, a1, a2, a3)            gvrai(i) = grossismx
55         xvrai(i) = xtild(it)         else if (abs_y == pi_d) then
56         Xf1 = Xf(it)            xvrai(i) = pi_d
57         Gvrai(i) = G(it)            gvrai(i) = 2d0 * beta - grossismx
58         xo1 = xvrai(i)         else
59         iter = 1            call hunt(xf, abs_y, it, my_lbound = 0)
60              ! {0 <= it <= nmax - 1}
61         do  
62            xvrai(i) = xvrai(i) - (Xf1 - abs_y) / Gvrai(i)            ! Calcul de xvrai(i) et Gvrai(i)
63            IF (ABS(xvrai(i) - xo1) <= my_eps .or. iter == 300) exit            CALL coefpoly(Xf(it), Xf(it + 1), G(it), G(it + 1), xtild(it), &
64            xo1 = xvrai(i)                 xtild(it + 1))
65            Xf1 = a0 + xvrai(i) * (a1 + xvrai(i) * (a2 + xvrai(i) * a3))            xvrai(i) = rtsafe(funcd, xtild(it), xtild(it + 1), xacc = 1d-6)
66            Gvrai(i) = a1 + xvrai(i) * (2d0 * a2 + xvrai(i) * 3d0 * a3)            Gvrai(i) = a1 + xvrai(i) * (2d0 * a2 + xvrai(i) * 3d0 * a3)
        end DO  
   
        if (ABS(xvrai(i) - xo1) > my_eps) then  
           ! iter == 300  
           print *, 'Pas de solution.'  
           print *, i, abs_y  
           STOP 1  
67         end if         end if
68    
69         if (y < 0d0) xvrai(i) = - xvrai(i)         if (y < 0d0) xvrai(i) = - xvrai(i)
# Line 80  contains Line 77  contains
77      END DO      END DO
78    
79      xlon = xvrai + clon      xlon = xvrai + clon
80      xprim = twopi_d / (iim * Gvrai)      xprim = h / Gvrai
81    
82    end subroutine invert_zoom_x    end subroutine invert_zoom_x
83    
84      !**********************************************************************
85    
86      SUBROUTINE funcd(x, fval, fderiv)
87    
88        use coefpoly_m, only: a0, a1, a2, a3
89    
90        DOUBLE PRECISION, INTENT(IN):: x
91        DOUBLE PRECISION, INTENT(OUT):: fval, fderiv
92    
93        fval = a0 + x * (a1 + x * (a2 + x * a3)) - abs_y
94        fderiv = a1 + x * (2d0 * a2 + x * 3d0 * a3)
95    
96      END SUBROUTINE funcd
97    
98  end module invert_zoom_x_m  end module invert_zoom_x_m

Legend:
Removed from v.148  
changed lines
  Added in v.255

  ViewVC Help
Powered by ViewVC 1.1.21