4#include <dg/file/json_utilities.h>
52 std::vector<double>
c;
64 A = js.get(
"A", 0).asDouble();
65 pp = js.get(
"PP", 1).asDouble();
66 pi = js.get(
"PI", 1).asDouble();
68 for (
unsigned i=0;i<12;i++)
69 c[i] = js[
"c"].get(i,0.).asDouble();
71 R_0 = js.get(
"R_0", 0.).asDouble();
72 a =
R_0* js.get(
"inverseaspectratio", 0.).asDouble();
73 elongation= js.get(
"elongation", 1.).asDouble();
76 description = js.get(
"description",
"standardX").asString();
77 }
catch ( std::exception& err)
92 dg::file::JsonType
dump( )
const
94 dg::file::JsonType js;
98 for (
unsigned i=0;i<12;i++) js[
"c"][i] =
c[i];
100 js[
"inverseaspectratio"] =
a/
R_0;
103 js[
"equilibrium"] =
"solovev";
118 for(
int i=7; i<12; i++)
119 if( fabs(
c[i]) >= 1e-10)
134 void display( std::ostream& os = std::cout )
const
136 dg::file::WrappedJsonValue js =
dump();
137 os <<
"Solovev Geometrical parameters are: \n"
138 <<js.toStyledString();
description
How flux function looks like. Decider on whether and what flux aligned grid to construct.
Definition magnetic_field.h:50
@ solovev
dg::geo::solovev::Psip
Constructs and display geometric parameters for the solovev and taylor fields.
Definition solovev_parameters.h:44
double pp
prefactor for Psi_p
Definition solovev_parameters.h:47
double R_0
major tokamak radius
Definition solovev_parameters.h:46
double a
little tokamak radius
Definition solovev_parameters.h:49
dg::file::JsonType dump() const
Put values into a json string.
Definition solovev_parameters.h:92
double A
A coefficient.
Definition solovev_parameters.h:45
bool isToroidal() const
True if pp==0.
Definition solovev_parameters.h:128
Parameters(const dg::file::WrappedJsonValue &js)
Construct from Json dataset.
Definition solovev_parameters.h:63
std::string description
Definition solovev_parameters.h:53
std::vector< double > c
12 coefficients for the solovev equilibrium;
Definition solovev_parameters.h:52
double pi
prefactor for current I
Definition solovev_parameters.h:48
double elongation
elongation of the magnetic surfaces
Definition solovev_parameters.h:50
bool hasXpoint() const
True if any coefficient c_i!=0 with 7<=i<12.
Definition solovev_parameters.h:116
double triangularity
triangularity of the magnetic surfaces
Definition solovev_parameters.h:51
void display(std::ostream &os=std::cout) const
Write variables as a formatted string.
Definition solovev_parameters.h:134