Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions process/core/solver/iteration_variables.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ class IterationVariable:
174: IterationVariable("triang", "physics", 0.00, 1.00),
175: IterationVariable("kappa", "physics", 0.00, 10.00),
176: IterationVariable("f_st_coil_aspect", "stellarator", 0.70, 1.30),
177: IterationVariable("f_a_tf_turn_cable_space_extra_void", "tfcoil", 0.01, 1.0),
}


Expand Down
6 changes: 6 additions & 0 deletions process/models/stellarator/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,12 @@ def output(stellarator, data):
"(required_radial_space)",
data.build.required_radial_space,
)
po.ovarre(
stellarator.outfile,
"Normalized plasma-coil distance",
"(f_dr_plasma_coil_normalized)",
data.build.available_radial_space / data.physics.rminor,
)

radius = 0.0e0
po.obuild(stellarator.outfile, "Device centreline", 0.0e0, radius)
Expand Down
Loading