[135] | 1 | SUBROUTINE iniorbit |
---|
[253] | 2 | $ (papoastr,pperiastr,pyear_day,pperi_day,pobliq) |
---|
[135] | 3 | IMPLICIT NONE |
---|
| 4 | |
---|
| 5 | c======================================================================= |
---|
| 6 | c |
---|
| 7 | c Auteur: |
---|
| 8 | c ------- |
---|
| 9 | c Frederic Hourdin 22 Fevrier 1991 |
---|
| 10 | c |
---|
| 11 | c Objet: |
---|
| 12 | c ------ |
---|
| 13 | c Initialisation du sous programme orbite qui calcule |
---|
| 14 | c a une date donnee de l'annee de duree year_day commencant |
---|
[253] | 15 | c a l'equinoxe de printemps et dont le periastre se situe |
---|
[135] | 16 | c a la date peri_day, la distance au soleil et la declinaison. |
---|
| 17 | c |
---|
| 18 | c Interface: |
---|
| 19 | c ---------- |
---|
| 20 | c - Doit etre appele avant d'utiliser orbite. |
---|
| 21 | c - initialise une partie du common planete.h |
---|
| 22 | c |
---|
| 23 | c Arguments: |
---|
| 24 | c ---------- |
---|
| 25 | c |
---|
| 26 | c Input: |
---|
| 27 | c ------ |
---|
[253] | 28 | c apoastr \ apoastron and periastron of the orbit |
---|
| 29 | c periastr / in millions of kilometres. |
---|
[135] | 30 | c |
---|
| 31 | c======================================================================= |
---|
| 32 | |
---|
| 33 | c----------------------------------------------------------------------- |
---|
| 34 | c Declarations: |
---|
| 35 | c ------------- |
---|
| 36 | |
---|
| 37 | #include "planete.h" |
---|
| 38 | #include "comcstfi.h" |
---|
| 39 | |
---|
| 40 | c Arguments: |
---|
| 41 | c ---------- |
---|
| 42 | |
---|
[253] | 43 | REAL papoastr,pperiastr,pyear_day,pperi_day,pobliq |
---|
[135] | 44 | |
---|
| 45 | c Local: |
---|
| 46 | c ------ |
---|
| 47 | |
---|
| 48 | REAL zxref,zanom,zz,zx0,zdx |
---|
| 49 | INTEGER iter |
---|
| 50 | |
---|
| 51 | c----------------------------------------------------------------------- |
---|
| 52 | |
---|
| 53 | pi=2.*asin(1.) |
---|
| 54 | |
---|
[253] | 55 | apoastr =papoastr |
---|
| 56 | periastr=pperiastr |
---|
[135] | 57 | year_day=pyear_day |
---|
| 58 | obliquit=pobliq |
---|
| 59 | peri_day=pperi_day |
---|
| 60 | |
---|
[253] | 61 | PRINT*,'Periastron in Mkm ',periastr |
---|
| 62 | PRINT*,'Apoastron in Mkm ',apoastr |
---|
| 63 | PRINT*,'Obliquity in degrees :',obliquit |
---|
[135] | 64 | unitastr=149.597927 |
---|
[253] | 65 | e_elips=(apoastr-periastr)/(periastr+apoastr) |
---|
| 66 | p_elips=0.5*(periastr+apoastr)*(1-e_elips*e_elips)/unitastr |
---|
[135] | 67 | |
---|
| 68 | print*,'e_elips',e_elips |
---|
| 69 | print*,'p_elips',p_elips |
---|
| 70 | |
---|
| 71 | c----------------------------------------------------------------------- |
---|
| 72 | c calcul de l'angle polaire et de la distance au soleil : |
---|
| 73 | c ------------------------------------------------------- |
---|
| 74 | |
---|
| 75 | c calcul de l'zanomalie moyenne |
---|
| 76 | |
---|
| 77 | zz=(year_day-pperi_day)/year_day |
---|
| 78 | zanom=2.*pi*(zz-nint(zz)) |
---|
| 79 | zxref=abs(zanom) |
---|
| 80 | PRINT*,'zanom ',zanom |
---|
| 81 | |
---|
| 82 | c resolution de l'equation horaire zx0 - e * sin (zx0) = zxref |
---|
| 83 | c methode de Newton |
---|
| 84 | |
---|
| 85 | zx0=zxref+e_elips*sin(zxref) |
---|
| 86 | DO 110 iter=1,100 |
---|
| 87 | zdx=-(zx0-e_elips*sin(zx0)-zxref)/(1.-e_elips*cos(zx0)) |
---|
| 88 | if(abs(zdx).le.(1.e-12)) goto 120 |
---|
| 89 | zx0=zx0+zdx |
---|
| 90 | 110 continue |
---|
| 91 | 120 continue |
---|
| 92 | zx0=zx0+zdx |
---|
| 93 | if(zanom.lt.0.) zx0=-zx0 |
---|
| 94 | PRINT*,'zx0 ',zx0 |
---|
| 95 | |
---|
| 96 | c zteta est la longitude solaire |
---|
| 97 | |
---|
| 98 | timeperi=2.*atan(sqrt((1.+e_elips)/(1.-e_elips))*tan(zx0/2.)) |
---|
[253] | 99 | PRINT*,'Solar longitude of periastron timeperi = ',timeperi |
---|
[135] | 100 | |
---|
| 101 | RETURN |
---|
| 102 | END |
---|