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
5 changes: 3 additions & 2 deletions process/data_structure/physics_variables.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Module containing variables for the plasma models"""

from dataclasses import dataclass, field
from enum import IntEnum
from enum import IntEnum, unique

import numpy as np

Expand Down Expand Up @@ -87,6 +87,7 @@ def __new__(cls, value: int, abbreviation: str):
return obj


@unique
class ConfinementTimeModel(IntEnum):
"""Confinement time (τ_E) model types"""

Expand Down Expand Up @@ -347,7 +348,7 @@ class ConfinementTimeModel(IntEnum):
ConfinementMode.L_MODE,
)
PAZ_SOLDAN_NT = (
51,
52,
f"Paz-Soldan Neg Triang ({ConfinementMode.L_MODE.abbreviation})",
ConfinementMode.L_MODE,
)
Expand Down
Loading