Last change
on this file since 21 was
3,
checked in by slebonnois, 15 years ago
|
Creation de repertoires:
- chantiers : pour communiquer sur nos projets de modifs
- documentation : pour stocker les docs
Ajout de:
- libf/phytitan : physique de Titan
- libf/chimtitan: chimie de Titan
- libf/phyvenus : physique de Venus
|
File size:
1.0 KB
|
Rev | Line | |
---|
[3] | 1 | SUBROUTINE orbite(pls,pdist_sol,pdecli) |
---|
| 2 | IMPLICIT NONE |
---|
| 3 | |
---|
| 4 | c======================================================================= |
---|
| 5 | c |
---|
| 6 | c Objet: |
---|
| 7 | c ------ |
---|
| 8 | c |
---|
| 9 | c Distance from sun and declination as a function of the solar |
---|
| 10 | c longitude Ls |
---|
| 11 | c |
---|
| 12 | c Interface: |
---|
| 13 | c ---------- |
---|
| 14 | c |
---|
| 15 | c common 'comorbit.h' initialized by comorbit.f |
---|
| 16 | c |
---|
| 17 | c Arguments: |
---|
| 18 | c ---------- |
---|
| 19 | c |
---|
| 20 | c Input: |
---|
| 21 | c ------ |
---|
| 22 | c pls Ls |
---|
| 23 | c |
---|
| 24 | c Output: |
---|
| 25 | c ------- |
---|
| 26 | c pdist_sol Distance Sun-Planet in UA |
---|
| 27 | c pdecli declinaison ( en radians ) |
---|
| 28 | c |
---|
| 29 | c======================================================================= |
---|
| 30 | c----------------------------------------------------------------------- |
---|
| 31 | c Declarations: |
---|
| 32 | c ------------- |
---|
| 33 | |
---|
| 34 | #include "comorbit.h" |
---|
| 35 | |
---|
| 36 | c arguments: |
---|
| 37 | c ---------- |
---|
| 38 | |
---|
| 39 | REAL pday,pdist_sol,pdecli,pls |
---|
| 40 | |
---|
| 41 | c----------------------------------------------------------------------- |
---|
| 42 | |
---|
| 43 | c Distance Sun-Planet |
---|
| 44 | |
---|
| 45 | pdist_sol=p_elips/(1.+e_elips*cos(pls+timeperi)) |
---|
| 46 | |
---|
| 47 | c Solar declination |
---|
| 48 | |
---|
| 49 | pdecli= asin (sin(pls)*sin(obliquit*pi/180.)) |
---|
| 50 | |
---|
| 51 | RETURN |
---|
| 52 | END |
---|
Note: See
TracBrowser
for help on using the repository browser.