00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef _PFSS_PKG_H
00020 #define _PFSS_PKG_H
00021
00022 #include "pfss.h"
00023
00024
00025
00026
00027
00028
00029 void rdr(float r, double *rrr, double *D_rrr, int lmax, float apar);
00030
00031
00032 void pdpth(float th, double *leg, double *D_leg, int lmax);
00033
00034
00035 void csmph(float ph, double *mgh, double *D_mgh, float *g, float *h, int lmax);
00036
00037
00038
00039
00040
00041
00042 void gh_pfss(float *map, float *g, float *h, struct Grid *grid,
00043 int lmax, int sinlat);
00044
00045
00046
00047
00048
00049
00050 void Brtp(float r, float sint, float *Br0, float *Bt0, float *Bp0,
00051 struct CombinedCoeff *CmbCoeff, int lmax);
00052
00053
00054 void Bcube(float *g, float *h, struct Grid *grid, float *Br,
00055 float *Bt, float *Bp, int lmax, float apar, void (*rfunc)(float, double *, double *, int, float));
00056
00057
00058 void Bpoint(float *g, float *h, struct Point *pt,
00059 float *Bvec, int lmax, float apar, void (*rfunc)(float, double *, double *, int, float));
00060
00061
00062
00063
00064
00065
00066 void pfss0(float *g, float *h, struct Point *pt,
00067 float *Bvec, int lmax, float apar);
00068
00069
00070 void pfss(float *g, float *h, struct Grid *grid,
00071 float *Br, float *Bt, float *Bp, int lmax, float apar);
00072
00073
00074 #endif