source: LMDZ5/trunk/libf/dyn3dmem/splint.F @ 1632

Last change on this file since 1632 was 1632, checked in by Laurent Fairhead, 13 years ago

Import initial du répertoire dyn3dmem

Attention! ceci n'est qu'une version préliminaire du code "basse mémoire":
le code contenu dans ce répertoire est basé sur la r1320 et a donc besoin
d'être mis à jour par rapport à la dynamique parallèle d'aujourd'hui.
Ce code est toutefois mis à disposition pour circonvenir à des problèmes
de mémoire que certaines configurations du modèle pourraient rencontrer.
Dans l'état, il compile et tourne sur vargas et au CCRT


Initial import of dyn3dmem

Warning! this is just a preliminary version of the memory light code:
it is based on r1320 of the code and thus needs to be updated before
it can replace the present dyn3dpar code. It is nevertheless put at your
disposal to circumvent some memory problems some LMDZ configurations may
encounter. In its present state, it will compile and run on vargas and CCRT

File size: 963 bytes
Line 
1!
2! $Header$
3!
4     
5      SUBROUTINE splint(xa,ya,y2a,n,x,y)
6     
7c
8c     Routine to compute a cubic-spline interpolated value Y given the
9c     value of X, the arrays XA, YA and the 2nd derivative array Y2A
10c     computed by SUBROUTINE SPLINE. See "Numerical Recipes" for details
11c
12     
13      IMPLICIT REAL (a-h,o-z)
14      IMPLICIT INTEGER (i-n)
15      DIMENSION xa(n),ya(n),y2a(n)
16     
17      kl0=1
18     
19      khi=n
20c means of bisection
21 1    IF(khi-kl0.gt.1) THEN
22     
23       k=(khi+kl0)/2
24     
25       IF(xa(k).gt.x) THEN
26     
27        khi=k
28     
29       ELSE
30     
31        kl0=k
32     
33       END IF
34     
35       GO TO 1
36     
37      END IF
38c KL0 and KHI now bracket the X
39      h=xa(khi)-xa(kl0)
40     
41      IF(h.eq.0.0) STOP
42      a=(xa(khi)-x)/h
43c evaluation of cubic spline polynomial
44      b=(x-xa(kl0))/h
45     
46      y=a*ya(kl0)+b*ya(khi)+((a**3-a)*y2a(kl0)+(b**3-b)*y2a(khi))*(h**2)
47     
48     ./6.
49     
50c
51     
52      RETURN
53     
54      END
55     
56
Note: See TracBrowser for help on using the repository browser.