2023-05-26 12:31:24 -07:00
|
|
|
from enum import Enum
|
|
|
|
|
|
|
|
|
|
|
|
class UnitPressure(str, Enum):
|
2023-11-27 16:01:20 -08:00
|
|
|
"""The valid types of pressure units.""" # noqa: E501
|
2023-05-26 12:31:24 -07:00
|
|
|
|
2023-11-27 16:01:20 -08:00
|
|
|
"""# Atmospheres <https://en.wikipedia.org/wiki/Standard_atmosphere_(unit)> """ # noqa: E501
|
|
|
|
ATMOSPHERES = "atmospheres"
|
|
|
|
"""# Bars <https://en.wikipedia.org/wiki/Bar_(unit)> """ # noqa: E501
|
|
|
|
BARS = "bars"
|
|
|
|
"""# Hectopascals <https://en.wikipedia.org/wiki/Hectopascal> """ # noqa: E501
|
|
|
|
HECTOPASCALS = "hectopascals"
|
|
|
|
"""# Kilopascals <https://en.wikipedia.org/wiki/Kilopascal> """ # noqa: E501
|
|
|
|
KILOPASCALS = "kilopascals"
|
|
|
|
"""# Millibars <https://en.wikipedia.org/wiki/Bar_(unit)> """ # noqa: E501
|
|
|
|
MILLIBARS = "millibars"
|
|
|
|
"""# Pascals <https://en.wikipedia.org/wiki/Pascal_(unit)> """ # noqa: E501
|
|
|
|
PASCALS = "pascals"
|
|
|
|
"""# Pounds per square inch (PSI) - <https://en.wikipedia.org/wiki/Pound_per_square_inch> """ # noqa: E501
|
|
|
|
PSI = "psi"
|
|
|
|
|
|
|
|
def __str__(self) -> str:
|
|
|
|
return str(self.value)
|