Skip to content
Merged
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
2 changes: 1 addition & 1 deletion process/core/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -1060,7 +1060,7 @@ def check_process(inputs, data): # noqa: ARG001
if (
data.physics.i_plasma_pedestal == PlasmaProfileShapeType.PEDESTAL_PROFILE
and ConfinementTimeModel(data.physics.i_confinement_time).mode
not in [ConfinementMode.H_MODE, ConfinementMode.I_MODE]
not in {ConfinementMode.H_MODE, ConfinementMode.I_MODE}
):
logger.warning(
"Non H-mode or I-mode confinement time scaling should not be used with a pedestal profile"
Expand Down
Loading