Skip to content
Open
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
20 changes: 5 additions & 15 deletions process/core/io/plot/summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
PlasmaGeometryModelType,
PlasmaShapeModelType,
)
from process.models.physics.solovev_equilibrium import plot_analytic_equilibrium
from process.models.superconductors import SuperconductorModel
from process.models.tfcoil.base import (
TFCoilShapeModel,
Expand Down Expand Up @@ -16114,23 +16115,12 @@ def _add_page(name: str | None = None):

plot_resistivity_profile(pages["detailed_params"].add_subplot(232), m_file, scan)

plot_detailed_plasma_parameters(
pages["detailed_params"].add_subplot(233),
fig=pages["detailed_params"],
mfile=m_file,
scan=scan,
)

ax_electron_freq = _add_page("freq").add_subplot(211)
plot_electron_frequency_profile(ax_electron_freq, m_file, scan)

ax_ion_freq = pages["freq"].add_subplot(413, sharex=ax_electron_freq)
plot_ion_frequency_profile(ax_ion_freq, m_file, scan)

ax_larmor = pages["freq"].add_subplot(414, sharex=ax_electron_freq)
plot_larmor_radius_profile(ax_larmor, m_file, scan)
plot_larmor_radius_profile(_add_page("larmor_radius").add_subplot(313), m_file, scan)

pages["freq"].subplots_adjust(hspace=0.5)
ax25 = _add_page("analytic_equilibrium").add_subplot(222, aspect="equal")
ax25.set_position([0.6, 0.55, 0.45, 0.45])
plot_analytic_equilibrium(ax25, m_file, scan, pages["analytic_equilibrium"])

# Plot poloidal cross-section
poloidal_cross_section(
Expand Down
Loading
Loading