[2218] | 1 | module coefpoly_m |
---|
[524] | 2 | |
---|
[2218] | 3 | IMPLICIT NONE |
---|
[524] | 4 | |
---|
[2218] | 5 | contains |
---|
[524] | 6 | |
---|
[2218] | 7 | SUBROUTINE coefpoly(xf1, xf2, xprim1, xprim2, xtild1, xtild2, a0, a1, a2, a3) |
---|
[524] | 8 | |
---|
[2218] | 9 | ! From LMDZ4/libf/dyn3d/coefpoly.F, version 1.1.1.1 2004/05/19 12:53:05 |
---|
[524] | 10 | |
---|
[2218] | 11 | ! Author: P. Le Van |
---|
[524] | 12 | |
---|
[2218] | 13 | ! Calcul des coefficients a0, a1, a2, a3 du polynôme de degré 3 qui |
---|
| 14 | ! satisfait aux 4 équations suivantes : |
---|
[524] | 15 | |
---|
[2218] | 16 | ! a0 + a1 * xtild1 + a2 * xtild1**2 + a3 * xtild1**3 = Xf1 |
---|
| 17 | ! a0 + a1 * xtild2 + a2 * xtild2**2 + a3 * xtild2**3 = Xf2 |
---|
| 18 | ! a1 + 2. * a2 * xtild1 + 3. * a3 * xtild1**2 = Xprim1 |
---|
| 19 | ! a1 + 2. * a2 * xtild2 + 3. * a3 * xtild2**2 = Xprim2 |
---|
[524] | 20 | |
---|
[2218] | 21 | ! (passe par les points (Xf(it), xtild(it)) et (Xf(it + 1), |
---|
| 22 | ! xtild(it + 1)) |
---|
[524] | 23 | |
---|
[2218] | 24 | ! On en revient à resoudre un système de 4 équations à 4 inconnues |
---|
| 25 | ! a0, a1, a2, a3. |
---|
| 26 | |
---|
[2228] | 27 | use nrtype, only: k8 |
---|
[2218] | 28 | |
---|
[2228] | 29 | REAL(K8), intent(in):: xf1, xf2, xprim1, xprim2, xtild1, xtild2 |
---|
| 30 | REAL(K8), intent(out):: a0, a1, a2, a3 |
---|
| 31 | |
---|
[2218] | 32 | ! Local: |
---|
[2228] | 33 | REAL(K8) xtil1car, xtil2car, derr, x1x2car |
---|
[2218] | 34 | |
---|
| 35 | !------------------------------------------------------------ |
---|
| 36 | |
---|
| 37 | xtil1car = xtild1 * xtild1 |
---|
| 38 | xtil2car = xtild2 * xtild2 |
---|
| 39 | |
---|
| 40 | derr = 2. * (xf2-xf1)/(xtild1-xtild2) |
---|
| 41 | |
---|
| 42 | x1x2car = (xtild1-xtild2) * (xtild1-xtild2) |
---|
| 43 | |
---|
| 44 | a3 = (derr+xprim1+xprim2)/x1x2car |
---|
| 45 | a2 = (xprim1-xprim2+3. * a3 * (xtil2car-xtil1car))/(2. * (xtild1-xtild2)) |
---|
| 46 | |
---|
| 47 | a1 = xprim1 - 3. * a3 * xtil1car - 2. * a2 * xtild1 |
---|
| 48 | a0 = xf1 - a3 * xtild1 * xtil1car - a2 * xtil1car - a1 * xtild1 |
---|
| 49 | |
---|
| 50 | END SUBROUTINE coefpoly |
---|
| 51 | |
---|
| 52 | end module coefpoly_m |
---|