-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy path16-DIIID.py
77 lines (55 loc) · 2.17 KB
/
16-DIIID.py
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python
import freegs
import matplotlib.pyplot as plt
#########################################
# Create the machine, which specifies coil locations
# and equilibrium, specifying the domain to solve over
tokamak = freegs.machine.DIIID()
eq = freegs.Equilibrium(tokamak=tokamak,
Rmin=0.1, Rmax=2.8, # Radial domain
Zmin=-1.8, Zmax=1.8, # Height range
nx=129, ny=129) # Number of grid points
#########################################
# Plasma profiles
profiles = freegs.jtor.ConstrainPaxisIp(eq,
159811, # Plasma pressure on axis [Pascals]
-1533632, # Plasma current [Amps]
-3.231962138124) # vacuum f = R*Bt
#########################################
# Coil current constraints
#
# Specify locations of the X-points
# to use to constrain coil currents
xpoints = [(1.285, -1.176), # (R,Z) locations of X-points
(1.2, 1.0)]
isoflux = [(1.285, -1.176, 1.2 ,1.2)] # (R1,Z1, R2,Z2) pair of locations
constrain = freegs.control.constrain(xpoints=xpoints, gamma=1e-12, isoflux=isoflux)
constrain(eq)
#########################################
# Nonlinear solve
freegs.solve(eq, # The equilibrium to adjust
profiles, # The plasma profiles
constrain, # Plasma control constraints
show=True) # Shows results at each nonlinear iteration
# eq now contains the solution
print("Done!")
print("Plasma current: %e Amps" % (eq.plasmaCurrent()))
print("Pressure on axis: %e Pascals" % (eq.pressure(0.0)))
print("Plasma poloidal beta: %e" % (eq.poloidalBeta()))
print("Plasma volume: %e m^3" % (eq.plasmaVolume()))
eq.tokamak.printCurrents()
# plot equilibrium
axis = eq.plot(show=False)
tokamak.plot(axis=axis, show=False)
constrain.plot(axis=axis, show=True)
# Safety factor
plt.plot(*eq.q())
plt.xlabel(r"Normalised $\psi$")
plt.ylabel("Safety factor")
plt.grid()
plt.show()
##############################################
# Save to geqdsk file
from freegs import geqdsk
with open("diiid.geqdsk", "w") as f:
geqdsk.write(eq, f)