mpauses.f 2.64 KB
      subroutine mpauses (rre,thet,phi,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.06.05 - V 2.0
c*VER 03.01.06 - V 2.1
c*
c*AUT spec. CNES - JC KOSIK - juillet 1998
c*AUT port. CISI
c*
c*ROL Theme : Frontieres et regions
c*ROL         Calcul de la magnetopause et test d'appartenance d'un
c*ROL         point a une magnetosphere. On supppose que l'on est en GSM
c*
c*PAR rre   (I) : distance geocentrique (rayons terrestres)
c*PAR thet  (I) : colatitude geocentrique (radians)
c*PAR phi   (I) : longitude geocentrique  (radians)
c*
c*PAR ier   (O) : code de retour
c*
c*NOT ier       : 0 = OK
c*NOT ier       : 1 = n'appartient pas a la magetosphere
c*
c*INF utilise   : spcar
c*
c*HST version 1.0 - 99.03.31 - creation de la maglib au CDPP
c*HST version 2.0 - 01.06.05 - 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 rre, thet, phi
      integer ier
c
c     ---------------------------------
c*FON Declaration des variables locales
c     ---------------------------------
c
      double precision xgsm,ygsm,zgsm
c*LOC xgsm,ygsm,zgsm : composantes cartesiennes GSM en x, y et z
c
      double precision rb
c*LOC rb : distance subsolaire de la magnetopause
c
      double precision ro,romp
c*LOC Variables de travail intermediaires
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  = 1
      rb   = 15.d0 
c
c     --------------------------------------------
c*FON Transformation des coordonnees spheriques en
c*FON coordonnees cartesiennes
c     --------------------------------------------
c
      call spcar(rre,thet,phi,xgsm,ygsm,zgsm,ier)
c
      ro = sqrt (ygsm * ygsm + zgsm * zgsm)
c
      if (xgsm .lt. rb) then
c
         romp = sqrt(2.d0 * rb * (rb - xgsm))         
         if (ro .lt. romp) then
            ier = 0
         endif
c
      endif 
c
c     ****************
c     Fin de programme
c     ****************
c
      return
      end