Skip to content

Commit

Permalink
Extend post-run default visualization to more variables.
Browse files Browse the repository at this point in the history
The legacy plot config is now stored as simple_plot_config.py.

PiperOrigin-RevId: 682046621
  • Loading branch information
jcitrin authored and Torax team committed Oct 7, 2024
1 parent 5316b9b commit c4d7d17
Show file tree
Hide file tree
Showing 3 changed files with 327 additions and 54 deletions.
119 changes: 108 additions & 11 deletions torax/plotting/configs/default_plot_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,35 +17,66 @@
from torax.plotting import plotruns_lib

PLOT_CONFIG = plotruns_lib.FigureProperties(
rows=2,
cols=3,
rows=3,
cols=5,
tick_fontsize=8,
axes_fontsize=8,
default_legend_fontsize=7,
figure_size_factor=5,
title_fontsize=12,
axes=(
# For chi, set histogram percentile for y-axis upper limit, due to
# volatile nature of the data. Do not include first timepoint since
# chi is defined as zero there and may unduly affect ylim.
plotruns_lib.PlotProperties(
attrs=('ti', 'te'),
labels=(r'$T_\mathrm{i}$', r'$T_\mathrm{e}$'),
ylabel='Temperature [keV]',
),
plotruns_lib.PlotProperties(
attrs=('ne',),
labels=(r'$n_\mathrm{e}$',),
ylabel=r'Electron density $[10^{20}~m^{-3}]$',
),
plotruns_lib.PlotProperties(
attrs=('chi_i', 'chi_e'),
labels=(r'$\chi_i$', r'$\chi_e$'),
labels=(r'$\chi_\mathrm{i}$', r'$\chi_\mathrm{e}$'),
ylabel=r'Heat conductivity $[m^2/s]$',
upper_percentile=98.0,
include_first_timepoint=False,
ylim_min_zero=False,
),
plotruns_lib.PlotProperties(
attrs=('ti', 'te'),
labels=(r'$T_i$', r'$T_e$'),
ylabel='Temperature [keV]',
attrs=('d_e', 'v_e'),
labels=(r'$D_\mathrm{e}$', r'$V_\mathrm{e}$'),
ylabel=r'Diff $[m^2/s]$ or Conv $[m/s]$',
upper_percentile=98.0,
lower_percentile=2.0,
include_first_timepoint=False,
ylim_min_zero=False,
),
plotruns_lib.PlotProperties(
attrs=('ne',),
labels=(r'$n_e$',),
ylabel=r'Electron density $[10^{20}~m^{-3}]$',
plot_type=plotruns_lib.PlotType.TIME_SERIES,
attrs=('i_total', 'i_bootstrap'),
labels=(r'$I_\mathrm{p}$', r'$I_\mathrm{bs}$'),
ylabel=r'Current [MA]',
),
plotruns_lib.PlotProperties(
attrs=('psi',),
labels=(r'$\psi$',),
ylabel=r'Poloidal flux [Wb]',
),
plotruns_lib.PlotProperties(
attrs=('j', 'johm', 'j_bootstrap', 'jext'),
labels=(r'$j_{tot}$', r'$j_{ohm}$', r'$j_{bs}$', r'$j_{ext}$'),
labels=(
r'$j_\mathrm{tot}$',
r'$j_\mathrm{ohm}$',
r'$j_\mathrm{bs}$',
r'$j_\mathrm{ext}$',
),
ylabel=r'Toroidal current $[A~m^{-2}]$',
legend_fontsize=8, # Smaller fontsize for this plot
legend_fontsize=7, # Smaller fontsize for this plot
suppress_zero_values=True, # Do not plot all-zero data
),
plotruns_lib.PlotProperties(
attrs=('q',),
Expand All @@ -57,5 +88,71 @@
labels=(r'$\hat{s}$',),
ylabel='Magnetic shear',
),
plotruns_lib.PlotProperties(
plot_type=plotruns_lib.PlotType.TIME_SERIES,
attrs=('Q_fusion',),
labels=(r'$Q_\mathrm{fusion}$',),
ylabel='Fusion gain',
),
plotruns_lib.PlotProperties(
attrs=('psidot',),
labels=(r'$\dot{\psi}$',),
ylabel='Loop voltage',
upper_percentile=98.0,
),
plotruns_lib.PlotProperties(
attrs=(
'q_icrh_i',
'q_icrh_e',
'q_nbi_i',
'q_nbi_e',
'q_ecrh',
'q_gen_i',
'q_gen_e',
),
labels=(
r'$Q_\mathrm{ICRH,i}$',
r'$Q_\mathrm{ICRH,e}$',
r'$Q_\mathrm{NBI,i}$',
r'$Q_\mathrm{NBI,e}$',
r'$Q_\mathrm{ERCH}$',
r'$Q_\mathrm{generic,i}$',
r'$Q_\mathrm{generic,e}$',
),
ylabel=r'External heat source density $[W~m^{-3}]$',
legend_fontsize=7, # Smaller fontsize for this plot
suppress_zero_values=True, # Do not plot all-zero data
),
plotruns_lib.PlotProperties(
attrs=('q_alpha_i', 'q_alpha_e', 'q_ohmic', 'q_ei'),
labels=(
r'$Q_\mathrm{alpha,i}$',
r'$Q_\mathrm{alpha,e}$',
r'$Q_\mathrm{ohmic}$',
r'$Q_\mathrm{ei}$',
),
ylabel=r'Internal heat source density $[W~m^{-3}]$',
legend_fontsize=6, # Smaller fontsize for this plot
suppress_zero_values=True, # Do not plot all-zero data
),
plotruns_lib.PlotProperties(
attrs=('q_brems',),
labels=(r'$Q_\mathrm{brems}$',),
ylabel=r'Heat sink density $[kW~m^{-3}]$',
suppress_zero_values=True, # Do not plot all-zero data
),
plotruns_lib.PlotProperties(
plot_type=plotruns_lib.PlotType.TIME_SERIES,
attrs=('p_auxiliary', 'p_ohmic', 'p_alpha', 'p_sink'),
labels=(
r'$P_\mathrm{aux}$',
r'$P_\mathrm{ohm}$',
r'$P_\mathrm{\alpha}$',
r'$P_\mathrm{sink}$',
),
ylabel=r'Total heating/sink powers $[MW]$',
legend_fontsize=6, # Smaller fontsize for this plot
suppress_zero_values=True, # Do not plot all-zero data
),
),
)
61 changes: 61 additions & 0 deletions torax/plotting/configs/simple_plot_config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# Copyright 2024 DeepMind Technologies Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""Default plotting configuration for Torax runs."""

from torax.plotting import plotruns_lib

PLOT_CONFIG = plotruns_lib.FigureProperties(
rows=2,
cols=3,
axes=(
# For chi, set histogram percentile for y-axis upper limit, due to
# volatile nature of the data. Do not include first timepoint since
# chi is defined as zero there and may unduly affect ylim.
plotruns_lib.PlotProperties(
attrs=('chi_i', 'chi_e'),
labels=(r'$\chi_i$', r'$\chi_e$'),
ylabel=r'Heat conductivity $[m^2/s]$',
upper_percentile=98.0,
include_first_timepoint=False,
ylim_min_zero=False,
),
plotruns_lib.PlotProperties(
attrs=('ti', 'te'),
labels=(r'$T_i$', r'$T_e$'),
ylabel='Temperature [keV]',
),
plotruns_lib.PlotProperties(
attrs=('ne',),
labels=(r'$n_e$',),
ylabel=r'Electron density $[10^{20}~m^{-3}]$',
),
plotruns_lib.PlotProperties(
attrs=('j', 'johm', 'j_bootstrap', 'jext'),
labels=(r'$j_{tot}$', r'$j_{ohm}$', r'$j_{bs}$', r'$j_{ext}$'),
ylabel=r'Toroidal current $[A~m^{-2}]$',
legend_fontsize=8, # Smaller fontsize for this plot
),
plotruns_lib.PlotProperties(
attrs=('q',),
labels=(r'$q$',),
ylabel='Safety factor',
),
plotruns_lib.PlotProperties(
attrs=('s',),
labels=(r'$\hat{s}$',),
ylabel='Magnetic shear',
),
),
)
Loading

0 comments on commit c4d7d17

Please sign in to comment.