Blame view

maglib/src/geogsm.f 2.22 KB
eb2d6c5c   Hacene SI HADJ MOHAND   adding maglib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
      subroutine geogsm (rggsm,xg,yg,zg,xgsm,ygsm,zgsm,ier)
c*
c***********************************************************************
c*
c*          "Copyright [c] CNES 98 - tous droits reserves"
c*          **********************************************
c*
c*PRO MAGLIB
c*
c*VER 99.03.31 - V 1.0
c*VER 01.05.31 - V 2.0
c*VER 03.01.06 - V 2.1
c*
c*AUT spec. CNES - JC KOSIK - juin 1995
c*AUT port. CISI 
c*
c*ROL Theme : Changements de repere
c*ROL         Transformation des composantes geocentriques en
c*ROL         composantes solaires magnetospheriques.
c*
c*PAR rggsm (I) : matrice (3,3) de passage du repere geocentrique
c*PAR           : au repere solaire magnetospherique, toutes unites
c*
c*PAR xg    (I) : coordonnee geocentrique x (toutes unites)
c*PAR yg    (I) : coordonnee geocentrique y (toutes unites)
c*PAR zg    (I) : coordonnee geocentrique z (toutes unites)
c*
c*PAR xgsm  (O) : coordonnee solaire magnetospherique x (id input)
c*PAR ygsm  (O) : coordonnee solaire magnetospherique y (id input)
c*PAR zgsm  (O) : coordonnee solaire magnetospherique z (id input)
c*
c*PAR ier   (O) : code de retour
c*
c*NOT ier       : sans objet
c*
c*INF utilise   : promal
c*
c*HST version 1.0 - 99.03.31 - creation de la maglib au CDPP
c*HST version 2.0 - 01.05.31 - correction de commentaires de code
c*HST version 2.1 - 03.01.06 - corrections en compilation avec g77
c*
c***********************************************************************
c*
      implicit none
c
c     ---------------------------------
c*FON Declaration identificateur rcs_id
c     ---------------------------------
c
      character rcs_id*100
c
c     --------------------------
c*FON Declaration des parametres
c     --------------------------
c
      double precision rggsm(3,3)
      double precision xg, yg, zg
      double precision xgsm, ygsm, zgsm
      integer ier
c
      SAVE
c
c     ---------------------------------
c*FON Affectation identificateur rcs_id
c     ---------------------------------
c
      data rcs_id /"
     >$Id$"/
c
c     ******************
c     Debut de programme
c     ******************
c
      ier = 0
c
      call promal(rggsm,xg,yg,zg,xgsm,ygsm,zgsm,ier)
c
c     ****************
c     Fin de programme
c     ****************
c
      return
      end