[1992] | 1 | SUBROUTINE solarlong(pday, psollong, pdist_sol) |
---|
[1201] | 2 | |
---|
[1992] | 3 | USE ioipsl |
---|
[2311] | 4 | USE print_control_mod, ONLY: lunout |
---|
[1201] | 5 | |
---|
[1992] | 6 | IMPLICIT NONE |
---|
[1201] | 7 | |
---|
[1992] | 8 | ! ======================================================================= |
---|
[1201] | 9 | |
---|
[1992] | 10 | ! Objet: |
---|
| 11 | ! ------ |
---|
[1201] | 12 | |
---|
[1992] | 13 | ! Calcul de la distance soleil-planete et de la declinaison |
---|
| 14 | ! en fonction du jour de l'annee. |
---|
[1201] | 15 | |
---|
| 16 | |
---|
[1992] | 17 | ! Methode: |
---|
| 18 | ! -------- |
---|
[1201] | 19 | |
---|
[1992] | 20 | ! Calcul complet de l'elipse |
---|
[1201] | 21 | |
---|
[1992] | 22 | ! Interface: |
---|
| 23 | ! ---------- |
---|
[1201] | 24 | |
---|
[1992] | 25 | ! Uncommon comprenant les parametres orbitaux. |
---|
[1201] | 26 | |
---|
[1992] | 27 | ! Arguments: |
---|
| 28 | ! ---------- |
---|
[1201] | 29 | |
---|
[1992] | 30 | ! Input: |
---|
| 31 | ! ------ |
---|
| 32 | ! pday jour de l'annee (le jour 0 correspondant a l'equinoxe) |
---|
| 33 | ! lwrite clef logique pour sorties de controle |
---|
[1201] | 34 | |
---|
[1992] | 35 | ! Output: |
---|
| 36 | ! ------- |
---|
| 37 | ! pdist_sol distance entre le soleil et la planete |
---|
| 38 | ! ( en unite astronomique pour utiliser la constante |
---|
| 39 | ! solaire terrestre 1370 Wm-2 ) |
---|
| 40 | ! pdecli declinaison ( en radians ) |
---|
[1201] | 41 | |
---|
[1992] | 42 | ! ======================================================================= |
---|
| 43 | ! ----------------------------------------------------------------------- |
---|
| 44 | ! Declarations: |
---|
| 45 | ! ------------- |
---|
[1201] | 46 | |
---|
[1992] | 47 | include "planete.h" |
---|
| 48 | include "YOMCST.h" |
---|
[1201] | 49 | |
---|
[1992] | 50 | ! arguments: |
---|
| 51 | ! ---------- |
---|
[1201] | 52 | |
---|
[1992] | 53 | REAL pday, pdist_sol, pdecli, psollong |
---|
| 54 | LOGICAL lwrite |
---|
[1201] | 55 | |
---|
[1992] | 56 | ! Local: |
---|
| 57 | ! ------ |
---|
[1201] | 58 | |
---|
[1992] | 59 | REAL zanom, xref, zx0, zdx, zteta, zz, pi |
---|
| 60 | INTEGER iter |
---|
| 61 | REAL :: pyear_day, pperi_day |
---|
| 62 | REAL :: jd_eq, jd_peri |
---|
| 63 | LOGICAL, SAVE :: first = .TRUE. |
---|
| 64 | !$OMP THREADPRIVATE(first) |
---|
[1201] | 65 | |
---|
[1992] | 66 | ! ----------------------------------------------------------------------- |
---|
| 67 | ! calcul de l'angle polaire et de la distance au soleil : |
---|
| 68 | ! ------------------------------------------------------- |
---|
[1201] | 69 | |
---|
[1992] | 70 | ! Initialisation eventuelle: |
---|
| 71 | IF (first) THEN |
---|
| 72 | CALL ioget_calendar(pyear_day) |
---|
| 73 | CALL ymds2ju(2000, 3, 21, 0., jd_eq) |
---|
| 74 | CALL ymds2ju(2001, 1, 4, 0., jd_peri) |
---|
| 75 | pperi_day = jd_peri - jd_eq |
---|
| 76 | pperi_day = r_peri + 180. |
---|
| 77 | WRITE (lunout, *) ' Number of days in a year = ', pyear_day |
---|
| 78 | ! call iniorbit(249.22,206.66,669.,485.,25.2) |
---|
| 79 | CALL iniorbit(152.59, 146.61, pyear_day, pperi_day, r_incl) |
---|
| 80 | first = .FALSE. |
---|
| 81 | END IF |
---|
[1201] | 82 | |
---|
[1992] | 83 | ! calcul de l'zanomalie moyenne |
---|
[1201] | 84 | |
---|
[1992] | 85 | zz = (pday-peri_day)/year_day |
---|
| 86 | pi = 2.*asin(1.) |
---|
| 87 | zanom = 2.*pi*(zz-nint(zz)) |
---|
| 88 | xref = abs(zanom) |
---|
| 89 | |
---|
| 90 | ! resolution de l'equation horaire zx0 - e * sin (zx0) = xref |
---|
| 91 | ! methode de Newton |
---|
| 92 | |
---|
| 93 | ! zx0=xref+e_elips*sin(xref) |
---|
| 94 | zx0 = xref + r_ecc*sin(xref) |
---|
| 95 | DO iter = 1, 10 |
---|
| 96 | ! zdx=-(zx0-e_elips*sin(zx0)-xref)/(1.-e_elips*cos(zx0)) |
---|
| 97 | zdx = -(zx0-r_ecc*sin(zx0)-xref)/(1.-r_ecc*cos(zx0)) |
---|
| 98 | IF (abs(zdx)<=(1.E-7)) GO TO 120 |
---|
| 99 | zx0 = zx0 + zdx |
---|
| 100 | END DO |
---|
| 101 | 120 CONTINUE |
---|
| 102 | zx0 = zx0 + zdx |
---|
| 103 | IF (zanom<0.) zx0 = -zx0 |
---|
| 104 | |
---|
| 105 | ! zteta est la longitude solaire |
---|
| 106 | |
---|
| 107 | ! zteta=2.*atan(sqrt((1.+e_elips)/(1.-e_elips))*tan(zx0/2.)) |
---|
| 108 | zteta = 2.*atan(sqrt((1.+r_ecc)/(1.-r_ecc))*tan(zx0/2.)) |
---|
| 109 | |
---|
| 110 | psollong = zteta - timeperi |
---|
| 111 | |
---|
| 112 | IF (psollong<0.) psollong = psollong + 2.*pi |
---|
| 113 | IF (psollong>2.*pi) psollong = psollong - 2.*pi |
---|
| 114 | |
---|
| 115 | psollong = psollong*180./pi |
---|
| 116 | |
---|
| 117 | ! distance soleil |
---|
| 118 | |
---|
| 119 | pdist_sol = (1-r_ecc*r_ecc)/(1+r_ecc*cos(pi/180.*(psollong- & |
---|
| 120 | (r_peri+180.0)))) |
---|
| 121 | ! pdist_sol = (1-e_elips*e_elips) |
---|
| 122 | ! & /(1+e_elips*COS(pi/180.*(psollong-(R_peri+180.0)))) |
---|
| 123 | ! ----------------------------------------------------------------------- |
---|
| 124 | ! sorties eventuelles: |
---|
| 125 | ! --------------------- |
---|
| 126 | |
---|
| 127 | ! IF (lwrite) THEN |
---|
| 128 | ! PRINT*,'jour de l"annee :',pday |
---|
| 129 | ! PRINT*,'distance au soleil (en unite astronomique) :',pdist_sol |
---|
| 130 | ! PRINT*,'declinaison (en degres) :',pdecli*180./pi |
---|
| 131 | ! ENDIF |
---|
| 132 | |
---|
| 133 | RETURN |
---|
| 134 | END SUBROUTINE solarlong |
---|