ASCOT5
|
Stellarator magnetic field with cubic spline interpolation. More...
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <string.h>
#include "../ascot5.h"
#include "../error.h"
#include "../print.h"
#include "../consts.h"
#include "B_STS.h"
#include "../linint/linint.h"
#include "../spline/interp.h"
Go to the source code of this file.
Functions | |
int | B_STS_init_offload (B_STS_offload_data *offload_data, real **offload_array) |
Initialize magnetic field offload data. | |
void | B_STS_free_offload (B_STS_offload_data *offload_data, real **offload_array) |
Free offload array. | |
void | B_STS_init (B_STS_data *Bdata, B_STS_offload_data *offload_data, real *offload_array) |
Initialize magnetic field data struct on target. | |
a5err | B_STS_eval_psi (real *psi, real r, real phi, real z, B_STS_data *Bdata) |
Evaluate poloidal flux psi. | |
a5err | B_STS_eval_psi_dpsi (real psi_dpsi[4], real r, real phi, real z, B_STS_data *Bdata) |
Evaluate poloidal flux psi and its derivatives. | |
a5err | B_STS_eval_rho_drho (real rho_drho[4], real r, real phi, real z, B_STS_data *Bdata) |
Evaluate normalized poloidal flux rho and its derivatives. | |
a5err | B_STS_eval_B (real B[3], real r, real phi, real z, B_STS_data *Bdata) |
Evaluate magnetic field. | |
a5err | B_STS_eval_B_dB (real B_dB[12], real r, real phi, real z, B_STS_data *Bdata) |
Evaluate magnetic field and its derivatives. | |
a5err | B_STS_get_axis_rz (real rz[2], B_STS_data *Bdata, real phi) |
Return magnetic axis Rz-coordinates. | |
Stellarator magnetic field with cubic spline interpolation.
This module represents a magnetic field where data is given in - grid from which it is interpolated with tricubic splines.
The magnetic field is evaluated from magnetic field strength which may not be divergence free. The poloidal magnetic flux is interpolated using tricubic splines as well. and are given in separate grids.
The magnetic axis location for stellarators varies with the angle and is evaluated using linear interpolation.
This module does no extrapolation so if queried value is outside the -grid an error is thrown. The -grid is assumed to be periodic. Periodic boundary conditions are used but it is user's responsibility to provide input whose -grid makes sense (in that it actually represents a periodic field), i.e., . However, do note that in this module is not the "last" grid point but the second last, e.g. if and , then if periodicity is .
Definition in file B_STS.c.
int B_STS_init_offload | ( | B_STS_offload_data * | offload_data, |
real ** | offload_array ) |
Initialize magnetic field offload data.
This function takes pre-initialized offload data struct and offload array as inputs. The data is used to fill rest of the offload struct and to construct bicubic splines whose coefficients are stored in re-allocated offload array.
The offload data struct must have the following fields initialized:
B_STS_offload_data.offload_array_length is set here.
The offload array must contain the following data:
Sanity checks are printed if data was initialized succesfully.
offload_data | pointer to offload data struct |
offload_array | pointer to offload array which is reallocated here |
void B_STS_free_offload | ( | B_STS_offload_data * | offload_data, |
real ** | offload_array ) |
void B_STS_init | ( | B_STS_data * | Bdata, |
B_STS_offload_data * | offload_data, | ||
real * | offload_array ) |
Evaluate poloidal flux psi and its derivatives.
psi_dpsi | pointer for storing psi [V*s*m^-1] and its derivatives |
r | R coordinate [m] |
phi | phi coordinate [rad] |
z | z coordinate [m] |
Bdata | pointer to magnetic field data struct |
Evaluate normalized poloidal flux rho and its derivatives.
rho_drho | pointer where rho and its derivatives will be stored |
r | R coordinate [m] |
phi | phi coordinate [rad] |
z | z coordinate [m] |
Bdata | pointer to magnetic field data struct |
Evaluate magnetic field.
B | pointer to array where magnetic field values are stored |
r | R coordinate [m] |
phi | phi coordinate [deg] |
z | z coordinate [m] |
Bdata | pointer to magnetic field data struct |
Evaluate magnetic field and its derivatives.
B_dB | pointer to array where the field and its derivatives are stored |
r | R coordinate [m] |
phi | phi coordinate [deg] |
z | z coordinate [m] |
Bdata | pointer to magnetic field data struct |
a5err B_STS_get_axis_rz | ( | real | rz[2], |
B_STS_data * | Bdata, | ||
real | phi ) |