source: trunk/mars/libf/phymars/orbite.F @ 38

Last change on this file since 38 was 38, checked in by emillour, 14 years ago

Ajout du modè Martien (mon LMDZ.MARS.BETA, du 28/01/2011) dans le rértoire mars, pour pouvoir suivre plus facilement les modifs.
EM

File size: 1.3 KB
Line 
1      SUBROUTINE orbite(pls,pdist_sol,pdecli)
2      IMPLICIT NONE
3
4c=======================================================================
5c
6c   Objet:
7c   ------
8c
9c   Distance from sun and declimation as a function of the solar
10c   longitude Ls
11c
12c   Interface:
13c   ----------
14c
15c
16c
17c   Arguments:
18c   ----------
19c
20c   Input:
21c   ------
22c   pls          Ls
23c
24c   Output:
25c   -------
26c   pdist_sol     Distance Sun-Planet in UA
27c   pdecli        declinaison ( en radians )
28c
29c=======================================================================
30c-----------------------------------------------------------------------
31c   Declarations:
32c   -------------
33
34#include "planete.h"
35#include "comcstfi.h"
36
37c arguments:
38c ----------
39
40      REAL pday,pdist_sol,pdecli,pls,i
41
42c-----------------------------------------------------------------------
43
44c Distance Sun-Planet
45
46      pdist_sol=p_elips/(1.+e_elips*cos(pls+timeperi))
47
48c Solar declination
49
50c ********************* version before 01/01/2000 *******
51
52      pdecli= asin (sin(pls)*sin(obliquit*pi/180.))
53
54c ********************* version after 01/01/2000 *******
55c     i=obliquit*pi/180.
56c     pdecli=asin(sin(pls)*sin(i)/sqrt(sin(pls)**2+
57c    & cos(pls)**2*cos(i)**2))
58c ******************************************************
59
60
61
62      RETURN
63      END
Note: See TracBrowser for help on using the repository browser.