1 | SUBROUTINE stellarlong(pday,pstellong) |
---|
2 | |
---|
3 | USE planete_mod, ONLY: year_day, peri_day, e_elips, timeperi |
---|
4 | use comcstfi_mod, only: pi |
---|
5 | IMPLICIT NONE |
---|
6 | |
---|
7 | c======================================================================= |
---|
8 | c |
---|
9 | c Objet: |
---|
10 | c ------ |
---|
11 | c |
---|
12 | c Calcul de la distance soleil-planete et de la declinaison |
---|
13 | c en fonction du jour de l'annee. |
---|
14 | c |
---|
15 | c |
---|
16 | c Methode: |
---|
17 | c -------- |
---|
18 | c |
---|
19 | c Calcul complet de l'elipse |
---|
20 | c |
---|
21 | c Interface: |
---|
22 | c ---------- |
---|
23 | c |
---|
24 | c Uncommon comprenant les parametres orbitaux. |
---|
25 | c |
---|
26 | c Arguments: |
---|
27 | c ---------- |
---|
28 | c |
---|
29 | c Input: |
---|
30 | c ------ |
---|
31 | c pday jour de l'annee (le jour 0 correspondant a l'equinoxe) |
---|
32 | c |
---|
33 | c Output: |
---|
34 | c ------- |
---|
35 | c pdist_star distance entre le soleil et la planete |
---|
36 | c ( en unite astronomique pour utiliser la constante |
---|
37 | c solaire terrestre 1370 Wm-2 ) |
---|
38 | c pdecli declinaison ( en radians ) |
---|
39 | c |
---|
40 | c======================================================================= |
---|
41 | c----------------------------------------------------------------------- |
---|
42 | c Declarations: |
---|
43 | c ------------- |
---|
44 | |
---|
45 | c arguments: |
---|
46 | c ---------- |
---|
47 | |
---|
48 | REAL pday,pdist_star,pdecli,pstellong |
---|
49 | LOGICAL lwrite |
---|
50 | |
---|
51 | c Local: |
---|
52 | c ------ |
---|
53 | |
---|
54 | REAL zanom,xref,zx0,zdx,zteta,zz |
---|
55 | INTEGER iter |
---|
56 | |
---|
57 | |
---|
58 | c----------------------------------------------------------------------- |
---|
59 | c calcul de l'angle polaire et de la distance au soleil : |
---|
60 | c ------------------------------------------------------- |
---|
61 | |
---|
62 | c calcul de l'zanomalie moyenne |
---|
63 | |
---|
64 | zz=(pday-peri_day)/year_day |
---|
65 | pi=2.*asin(1.) |
---|
66 | zanom=2.*pi*(zz-nint(zz)) |
---|
67 | xref=abs(zanom) |
---|
68 | |
---|
69 | c resolution de l'equation horaire zx0 - e * sin (zx0) = xref |
---|
70 | c methode de Newton |
---|
71 | |
---|
72 | zx0=xref+e_elips*sin(xref) |
---|
73 | DO 110 iter=1,10 |
---|
74 | zdx=-(zx0-e_elips*sin(zx0)-xref)/(1.-e_elips*cos(zx0)) |
---|
75 | if(abs(zdx).le.(1.e-7)) goto 120 |
---|
76 | zx0=zx0+zdx |
---|
77 | 110 continue |
---|
78 | 120 continue |
---|
79 | zx0=zx0+zdx |
---|
80 | if(zanom.lt.0.) zx0=-zx0 |
---|
81 | |
---|
82 | c zteta est la longitude solaire |
---|
83 | |
---|
84 | zteta=2.*atan(sqrt((1.+e_elips)/(1.-e_elips))*tan(zx0/2.)) |
---|
85 | |
---|
86 | pstellong=zteta-timeperi |
---|
87 | |
---|
88 | IF(pstellong.LT.0.) pstellong=pstellong+2.*pi |
---|
89 | IF(pstellong.GT.2.*pi) pstellong=pstellong-2.*pi |
---|
90 | c----------------------------------------------------------------------- |
---|
91 | c sorties eventuelles: |
---|
92 | c --------------------- |
---|
93 | |
---|
94 | c IF (lwrite) THEN |
---|
95 | c PRINT*,'jour de l"annee :',pday |
---|
96 | c PRINT*,'distance au soleil (en unite astronomique) :',pdist_star |
---|
97 | c PRINT*,'declinaison (en degres) :',pdecli*180./pi |
---|
98 | c ENDIF |
---|
99 | |
---|
100 | RETURN |
---|
101 | END |
---|