rfonc1.f 2.5 KB
      function rfonc1 (x,rtab,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 - juin 1995
c*AUT port. CISI 
c*
c*ROL Theme : Calculs mathematiques
c*ROL         Fonction donnant l'equation de definition de la distance
c*ROL         minimum d'un point a une ligne dipolaire.
c*
c*PAR x      (I) : colatitude d'un point de la ligne dipolaire
c*
c*PAR rtab   (I) : tableau (dim = 5) representant les parametres de
c*PAR            : la transformation
c*
c*PAR rfonc1 (O) : resultat de la fonction : resultat de l'equation
c*
c*PAR ier    (O) : code de retour
c*
c*NOT ier        : sans objet
c*
c*INF utilise    : sans objet
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 de la fonction
c     --------------------------
c
      double precision rfonc1
c
c     --------------------------
c*FON Declaration des parametres
c     --------------------------
c
      double precision x
      double precision rtab(5)
      integer ier 
c
c     ---------------------------------
c*FON Declaration des variables locales
c     ---------------------------------
c
      double precision arond,drond,erond,ro1,x1
      double precision gp,gq,ro2
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 = 0
c
      arond = rtab(1)
      drond = rtab(2)
      erond = rtab(3)
      ro1   = rtab(4)
      x1    = rtab(5)
c
      gp = -ro1 * (drond + 2.d0 * arond * x)
      gq = 2.d0 * (x - x1) - (drond + 2.d0 * arond * x)
c
      ro2 = (gp / gq)**2
c
      rfonc1 = ro2 + arond * x * x + drond * x + erond
c
c     ****************
c     Fin de programme
c     ****************
c
      return
      end