libcon2020.h
1.58 KB
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
#ifndef __LIBCON2020_H__
#define __LIBCON2020_H__
#include <stdio.h>
#include <stdlib.h>
#include "con2020.h"
#include <string.h>
/* we want to initialize the model objects with its parameters */
extern Con2020 con2020;
extern "C" {
// BRE - 10/10/2023 - Add method to init integrals
void Con2020Init();
//----------
/* these wrappers can be used to get the magnetic field vectors */
void Con2020FieldArray(int n, double *p0, double *p1, double *p2,
double *B0, double *B1, double *B2);
void Con2020Field(double p0, double p1, double p2,
double *B0, double *B1, double *B2);
void GetCon2020Params(double *mui, double *irho, double *r0, double *r1,
double *d, double *xt, double *xp, char *eqtype,
bool *Edwards, bool *ErrChk, bool *CartIn, bool *CartOut,
bool *smooth, double *DeltaRho, double *DeltaZ,
double *g, char *azfunc, double *wO_open, double *wO_om,
double *thetamm, double *dthetamm, double *thetaoc, double *dthetaoc);
void SetCon2020Params(double mui, double irho, double r0, double r1,
double d, double xt, double xp, const char *eqtype,
bool Edwards, bool ErrChk, bool CartIn, bool CartOut,
bool smooth, double DeltaRho, double DeltaZ,
double g, const char *azfunc, double wO_open, double wO_om,
double thetamm, double dthetamm, double thetaoc, double dthetaoc);
void Con2020AnalyticField( int n, double a,
double *rho, double *z,
double *Brho, double *Bz);
void Con2020AnalyticFieldSmooth( int n, double a,
double *rho, double *z,
double *Brho, double *Bz);
}
#endif