1 | SUBROUTINE stellarlong(pday,pstellong) |
---|
2 | IMPLICIT NONE |
---|
3 | |
---|
4 | c======================================================================= |
---|
5 | c |
---|
6 | c Objet: |
---|
7 | c ------ |
---|
8 | c |
---|
9 | c Calcul de la distance soleil-planete et de la declinaison |
---|
10 | c en fonction du jour de l'annee. |
---|
11 | c |
---|
12 | c |
---|
13 | c Methode: |
---|
14 | c -------- |
---|
15 | c |
---|
16 | c Calcul complet de l'elipse |
---|
17 | c |
---|
18 | c Interface: |
---|
19 | c ---------- |
---|
20 | c |
---|
21 | c Uncommon comprenant les parametres orbitaux. |
---|
22 | c |
---|
23 | c Arguments: |
---|
24 | c ---------- |
---|
25 | c |
---|
26 | c Input: |
---|
27 | c ------ |
---|
28 | c pday jour de l'annee (le jour 0 correspondant a l'equinoxe) |
---|
29 | c |
---|
30 | c Output: |
---|
31 | c ------- |
---|
32 | c pdist_star distance entre le soleil et la planete |
---|
33 | c ( en unite astronomique pour utiliser la constante |
---|
34 | c solaire terrestre 1370 Wm-2 ) |
---|
35 | c pdecli declinaison ( en radians ) |
---|
36 | c |
---|
37 | c======================================================================= |
---|
38 | c----------------------------------------------------------------------- |
---|
39 | c Declarations: |
---|
40 | c ------------- |
---|
41 | |
---|
42 | #include "planete.h" |
---|
43 | #include "comcstfi.h" |
---|
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 Initialisation eventuelle: |
---|
63 | if(.not.unitastr.gt.1.e-4) then |
---|
64 | call iniorbit(249.22,206.66,669.,485.,25.2) |
---|
65 | endif |
---|
66 | |
---|
67 | c calcul de l'zanomalie moyenne |
---|
68 | |
---|
69 | zz=(pday-peri_day)/year_day |
---|
70 | pi=2.*asin(1.) |
---|
71 | zanom=2.*pi*(zz-nint(zz)) |
---|
72 | xref=abs(zanom) |
---|
73 | |
---|
74 | c resolution de l'equation horaire zx0 - e * sin (zx0) = xref |
---|
75 | c methode de Newton |
---|
76 | |
---|
77 | zx0=xref+e_elips*sin(xref) |
---|
78 | DO 110 iter=1,10 |
---|
79 | zdx=-(zx0-e_elips*sin(zx0)-xref)/(1.-e_elips*cos(zx0)) |
---|
80 | if(abs(zdx).le.(1.e-7)) goto 120 |
---|
81 | zx0=zx0+zdx |
---|
82 | 110 continue |
---|
83 | 120 continue |
---|
84 | zx0=zx0+zdx |
---|
85 | if(zanom.lt.0.) zx0=-zx0 |
---|
86 | |
---|
87 | c zteta est la longitude solaire |
---|
88 | |
---|
89 | zteta=2.*atan(sqrt((1.+e_elips)/(1.-e_elips))*tan(zx0/2.)) |
---|
90 | |
---|
91 | pstellong=zteta-timeperi |
---|
92 | |
---|
93 | IF(pstellong.LT.0.) pstellong=pstellong+2.*pi |
---|
94 | IF(pstellong.GT.2.*pi) pstellong=pstellong-2.*pi |
---|
95 | c----------------------------------------------------------------------- |
---|
96 | c sorties eventuelles: |
---|
97 | c --------------------- |
---|
98 | |
---|
99 | c IF (lwrite) THEN |
---|
100 | c PRINT*,'jour de l"annee :',pday |
---|
101 | c PRINT*,'distance au soleil (en unite astronomique) :',pdist_star |
---|
102 | c PRINT*,'declinaison (en degres) :',pdecli*180./pi |
---|
103 | c ENDIF |
---|
104 | |
---|
105 | RETURN |
---|
106 | END |
---|