Extension: Geometries
#include "dg/geometries/geometries.h"
Loading...
Searching...
No Matches
solovev_parameters.h
Go to the documentation of this file.
1#pragma once
2#include <string>
3#include <vector>
4#include <dg/file/json_utilities.h>
5
10namespace dg
11{
12namespace geo
13{
14namespace solovev
15{
44{
45 double A,
49 a,
52 std::vector<double> c;
53 std::string description;
54 Parameters() = default;
63 Parameters( const dg::file::WrappedJsonValue& js) {
64 A = js.get("A", 0).asDouble();
65 pp = js.get("PP", 1).asDouble();
66 pi = js.get("PI", 1).asDouble();
67 c.resize(12);
68 for (unsigned i=0;i<12;i++)
69 c[i] = js["c"].get(i,0.).asDouble();
70
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();
74 triangularity= js.get( "triangularity", 0.).asDouble();
75 try{
76 description = js.get( "description", "standardX").asString();
77 } catch ( std::exception& err)
78 {
79 if( isToroidal())
80 description = "none";
81 else if( !hasXpoint())
82 description = "standardO";
83 else
84 description = "standardX";
85 }
86 }
92 dg::file::JsonType dump( ) const
93 {
94 dg::file::JsonType js;
95 js["A"] = A;
96 js["PP"] = pp;
97 js["PI"] = pi;
98 for (unsigned i=0;i<12;i++) js["c"][i] = c[i];
99 js["R_0"] = R_0;
100 js["inverseaspectratio"] = a/R_0;
101 js["elongation"] = elongation;
102 js["triangularity"] = triangularity;
103 js[ "equilibrium"] = "solovev";
104 js[ "description"] = description;
105 return js;
106 }
116 bool hasXpoint( ) const{
117 bool Xpoint = false;
118 for( int i=7; i<12; i++)
119 if( fabs(c[i]) >= 1e-10)
120 Xpoint = true;
121 return Xpoint;
122 }
128 bool isToroidal() const{
129 if( pp == 0)
130 return true;
131 return false;
132 }
134 void display( std::ostream& os = std::cout ) const
135 {
136 dg::file::WrappedJsonValue js = dump();
137 os << "Solovev Geometrical parameters are: \n"
138 <<js.toStyledString();
139 os << std::flush;
140 }
141};
142} //namespace solovev
143} //namespace geo
144} //namespace dg
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