Source code for kappa_sdk.unit_enum
from enum import Enum
[docs]
class UnitEnum(Enum):
    """
    Unit enumeration.
    An enumeration of the units that are supported by the :class: ' UnitConverter '.
    """
    # Time
    time_millisecond = "TimeMillisecondUnit"
    time_second = "TimeSecondUnit"
    time_minute = "TimeMinuteUnit"
    time_hour = "TimeHourUnit"
    time_day = "TimeDayUnit"
    time_week = "TimeWeekUnit"
    time_month = "TimeMonthUnit"
    time_year = "TimeYearUnit"
    # Pressure
    pressure_pascal = "PressurePascalUnit"
    pressure_kilo_pascal = "PressureKiloPascalUnit"
    pressure_psia = "PressurePsiaUnit"
    pressure_atm = "PressureAtmUnit"
    pressure_bar = "PressureBarUnit"
    pressure_kg_cm2 = "PressureKgCm2Unit"
    pressure_water_height = "PressureWaterHeightUnit"
    pressure_psig = "PressurePsigUnit"
    pressure_barg = "PressureBargUnit"
    pressure_kg_cm2g = "PressureKgCm2gUnit"
    pressure_m_pascal = "PressureMPascalUnit"
    pressure_k_pag = "PressureKPagUnit"
    # DeltaPressure
    delta_pressure_pascal = "DeltaPressurePascalUnit"
    delta_pressure_kilo_pascal = "DeltaPressureKiloPascalUnit"
    delta_pressure_psia = "DeltaPressurePsiaUnit"
    delta_pressure_atm = "DeltaPressureAtmUnit"
    delta_pressure_bar = "DeltaPressureBarUnit"
    delta_pressure_kg_cm2 = "DeltaPressureKgCm2Unit"
    delta_pressure_water_height = "DeltaPressureWaterHeightUnit"
    delta_pressure_m_pascal = "DeltaPressureMPascalUnit"
    # TotalRateDownhole
    rate_cubic_meter_per_second = "RateCubicMeterPerSecondUnit"
    rate_cubic_meter_per_minute = "RateCubicMeterPerMinuteUnit"
    rate_cubic_meter_per_hour = "RateCubicMeterPerHourUnit"
    rate_cubic_meter_per_day = "RateCubicMeterPerDayUnit"
    rate_thousand_cubic_meter_per_day = "RateThousandCubicMeterPerDayUnit"
    rate_million_cubic_meter_per_day = "RateMillionCubicMeterPerDayUnit"
    rate_baril_per_day = "RateBarilPerDayUnit"
    ratecf_per_day = "RatecfPerDayUnit"
    rate_thousandcf_per_day = "RateThousandcfPerDayUnit"
    rate_liter_per_minute = "RateLiterPerMinuteUnit"
    rate_us_gal_per_min = "RateUSGalPerMinUnit"
    rate_us_gal_per_hr = "RateUSGalPerHrUnit"
    rate_uk_gal_per_min = "RateUKGalPerMinUnit"
    rate_uk_gal_per_hr = "RateUKGalPerHrUnit"
    ratecf_per_sec = "RatecfPerSecUnit"
    rate_cubic_centimeter_per_second = "RateCubicCentimeterPerSecondUnit"
    rate_thousand_cubic_meter_per_hour = "RateThousandCubicMeterPerHourUnit"
    # InverseRateDownhole
    inverse_rate_second_per_cubic_meter = "InverseRateSecondPerCubicMeterUnit"
    inverse_rate_minute_per_cubic_meter = "InverseRateMinutePerCubicMeterUnit"
    inverse_rate_hour_per_cubic_meter = "InverseRateHourPerCubicMeterUnit"
    inverse_rate_day_per_cubic_meter = "InverseRateDayPerCubicMeterUnit"
    inverse_rate_day_per_million_cubic_meter = "InverseRateDayPerMillionCubicMeterUnit"
    inverse_rate_day_per_std_barrel = "InverseRateDayPerStdBarrelUnit"
    inverse_rate_day_per_cubic_feet = "InverseRateDayPerCubicFeetUnit"
    inverse_rate_day_per_thousand_cubic_feet = "InverseRateDayPerThousandCubicFeetUnit"
    inverse_rate_minute_per_liter = "InverseRateMinutePerLiterUnit"
    inverse_rate_minute_per_us_gal = "InverseRateMinutePerUSGalUnit"
    inverse_rate_hour_per_us_gal = "InverseRateHourPerUSGalUnit"
    inverse_rate_minute_per_uk_gal = "InverseRateMinutePerUKGalUnit"
    inverse_rate_hour_per_uk_gal = "InverseRateHourPerUKGalUnit"
    inverse_rate_second_per_cubic_feet = "InverseRateSecondPerCubicFeetUnit"
    inverse_rate_second_per_cubic_centimeter = "InverseRateSecondPerCubicCentimeterUnit"
    inverse_rate_hour_per_thousand_cubic_meter = "InverseRateHourPerThousandCubicMeterUnit"
    inverse_rate_day_per_thousand_cubic_meter = "InverseRateDayPerThousandCubicMeterUnit"
    # TotalRateSurface
    rate_standard_cubic_meter_per_second = "RateStandardCubicMeterPerSecondUnit"
    rate_standard_cubic_meter_per_minute = "RateStandardCubicMeterPerMinuteUnit"
    rate_standard_cubic_meter_per_hour = "RateStandardCubicMeterPerHourUnit"
    rate_standard_cubic_meter_per_day = "RateStandardCubicMeterPerDayUnit"
    rate_thousand_standard_cubic_meter_per_day = "RateThousandStandardCubicMeterPerDayUnit"
    rate_million_standard_cubic_meter_per_day = "RateMillionStandardCubicMeterPerDayUnit"
    rate_standard_baril_per_day = "RateStandardBarilPerDayUnit"
    rate_standard_baril_per_min = "RateStandardBarilPerMinUnit"
    rate_standard_mcfd = "RateStandardMCFDUnit"
    rate_standard_cfd = "RateStandardCFDUnit"
    rate_standard_mmcfd = "RateStandardMMCFDUnit"
    rate_thousand_standard_cubic_meter_per_hour = "RateThousandStandardCubicMeterPerHourUnit"
    # NoUnit
    identity = "Identity"
    # Length
    length_meter = "LengthMeterUnit"
    length_centimeter = "LengthCentimeterUnit"
    length_millimeter = "LengthMillimeterUnit"
    length_inch = "LengthInchUnit"
    length_feet = "LengthFeetUnit"
    length_mile = "LengthMileUnit"
    length_kilometer = "LengthKilometerUnit"
    # Compressibility
    compressibility_pascal_minus1 = "CompressibilityPascalMinus1Unit"
    compressibility_psi_minus1 = "CompressibilityPSIMinus1Unit"
    compressibility_bar_minus1 = "CompressibilityBARMinus1Unit"
    compressibility_atmosphere_minus1 = "CompressibilityAtmosphereMinus1Unit"
    compressibility_kilo_pascal_minus1 = "CompressibilityKiloPascalMinus1Unit"
    compressibility_cm_square_per_kg = "CompressibilityCmSquarePerKgUnit"
    compressibility_water_height_minus1 = "CompressibilityWaterHeightMinus1Unit"
    compressibility_m_pascal_minus1 = "CompressibilityMPascalMinus1Unit"
    # Viscosity
    viscosity_pascal_second = "ViscosityPascalSecondUnit"
    viscosity_centipoise = "ViscosityCentipoiseUnit"
    viscosity_micro_pascal_second = "ViscosityMicroPascalSecondUnit"
    # Permeability
    perm_milli_darcy = "PermMilliDarcyUnit"
    perm_darcy = "PermDarcyUnit"
    perm_square_meter = "PermSquareMeterUnit"
    perm_square_centimer = "PermSquareCentimerUnit"
    perm_square_micrometer = "PermSquareMicrometerUnit"
    # PermeabilityThicknessProduct
    perm_thick_mdft = "PermThickMDFTUnit"
    perm_thick_mdm = "PermThickMDMUnit"
    perm_thick_m3 = "PermThickM3Unit"
    # Storage
    storage_stb_per_psi = "StorageSTBPerPsiUnit"
    storage_cubic_meter_per_bar = "StorageCubicMeterPerBarUnit"
    storage_cubic_meter_per_kpa = "StorageCubicMeterPerKpaUnit"
    storage_cubic_meter_per_pa = "StorageCubicMeterPerPaUnit"
    storage_cubic_meter_per_cm2_kg = "StorageCubicMeterPerCm2KgUnit"
    storage_m2 = "StorageM2Unit"
    storage_cubic_meter_per_m_pa = "StorageCubicMeterPerMPaUnit"
    # Temperature
    temp_celsius_deg = "TempCelsiusDegUnit"
    temp_kelvin_deg = "TempKelvinDegUnit"
    temp_rankine_deg = "TempRankineDegUnit"
    temp_fahrenheit_deg = "TempFahrenheitDegUnit"
    # DeltaTemperature
    delta_temp_kelvin_deg = "DeltaTempKelvinDegUnit"
    delta_temp_rankine_deg = "DeltaTempRankineDegUnit"
    # FileSize
    file_byte = "FileByte"
    file_kb = "FileKb"
    file_mb = "FileMb"
    file_gb = "FileGb"
    # VolumeDownhole
    volume_barrels = "VolumeBarrels"
    volume_cubic_meter = "VolumeCubicMeter"
    volume_liter = "VolumeLiter"
    volume_milliliter = "VolumeMilliliter"
    volume_centiliter = "VolumeCentiliter"
    volume_cubic_centimeter = "VolumeCubicCentimeter"
    volume_cubic_foot = "VolumeCubicFoot"
    volume_million_cubic_meter = "VolumeMillionCubicMeter"
    volume_thousands_cubic_meter = "VolumeThousandsCubicMeter"
    volume_thousandscf = "VolumeThousandscf"
    volume_m_mb = "VolumeMMb"
    volume_mmcf = "VolumeMMCF"
    volume_us_gal = "VolumeUSGalUnit"
    # VolumeSurface
    volume_standard_cubic_centimeter = "VolumeStandardCubicCentimeter"
    volume_standard_liter = "VolumeStandardLiter"
    volume_standard_cubic_meter = "VolumeStandardCubicMeter"
    volume_thousands_standard_cubic_meter = "VolumeThousandsStandardCubicMeter"
    volume_million_standard_cubic_meter = "VolumeMillionStandardCubicMeter"
    volume_standard_baril = "VolumeStandardBaril"
    volume_standard_m_mb = "VolumeStandardMMb"
    volume_standard_cf = "VolumeStandardCF"
    volume_standard_mcf = "VolumeStandardMCF"
    volume_standard_mmcf = "VolumeStandardMMCF"
    volume_standard_bcf = "VolumeStandardBCF"
    # LargeGasVolumeSurface
    volume_billion_standard_cubic_meter = "VolumeBillionStandardCubicMeter"
    # LargeGasVolumeDownhole
    volume_billion_cubic_meter = "VolumeBillionCubicMeter"
    volume_bcf = "VolumeBCF"
    # PercentOrFraction
    fraction = "FractionUnit"
    percent = "PercentUnit"
    # GasLiquidRatio
    volume_ratio_std_cubic_meter_per_std_cubic_meter = "VolumeRatioStdCubicMeterPerStdCubicMeter"
    volume_ratio_scf_per_std_barrel = "VolumeRatioSCFPerStdBarrel"
    volume_ratio_mscf_per_std_barrel = "VolumeRatioMSCFPerStdBarrel"
    # GasLiquidRatio2
    volume_ratio_std_cubic_meter_per_cubic_meter = "VolumeRatioStdCubicMeterPerCubicMeter"
    volume_ratio_scf_per_barrel = "VolumeRatioSCFPerBarrel"
    volume_ratio_mscf_per_barrel = "VolumeRatioMSCFPerBarrel"
    # LiquidGasRatio
    volume_ratio_std_barrel_per_mscf = "VolumeRatioStdBarrelPerMSCF"
    volume_ratio_std_barrel_per_mmscf = "VolumeRatioStdBarrelPerMMSCF"
    # Area
    area_acre = "AreaAcre"
    area_square_meter = "AreaSquareMeter"
    area_square_feet = "AreaSquareFeet"
    area_hectare = "AreaHectare"
    area_square_kilometer = "AreaSquareKilometer"
    # Angle
    angle_degree = "AngleDegree"
    angle_radian = "AngleRadian"
    # LiquidGravity
    gravity_standard = "GravityStandard"
    gravity_psi_per_feet = "GravityPsiPerFeet"
    gravity_api = "GravityAPI"
    # HeatCapacity
    heat_capacity_joule_per_kg_c = "HeatCapacityJoulePerKgC"
    heat_capacity_k_joule_per_kg_c = "HeatCapacityKJoulePerKgC"
    heat_capacity_joule_per_gc = "HeatCapacityJoulePerGC"
    heat_capacity_cal_per_gc = "HeatCapacityCalPerGC"
    heat_capacity_kcal_per_kg_c = "HeatCapacityKcalPerKgC"
    heat_capacity_btu_per_lbm_f = "HeatCapacityBtuPerLbmF"
    heat_capacity_kwatt_hr_per_kg_c = "HeatCapacityKwattHrPerKgC"
    # ThermalConductivity
    thermal_conductivity_watt_per_meter_c = "ThermalConductivityWattPerMeterC"
    thermal_conductivity_cal_per_s_meter_c = "ThermalConductivityCalPerSMeterC"
    thermal_conductivity_btu_per_day_feet_f = "ThermalConductivityBtuPerDayFeetF"
    # Density
    density_kilo_gr_per_cubic_meter = "DensityKiloGrPerCubicMeter"
    density_gramme_per_cubic_centimeter = "DensityGrammePerCubicCentimeter"
    densitylb_per_cubic_feet = "DensitylbPerCubicFeet"
    density_pound_per_us_gal = "DensityPoundPerUSGalUnit"
    # ReservoirToScLiquid
    rtosc_lr_m3st_m3 = "RTOSCLrM3stM3"
    rtosc_lr_bst_b = "RTOSCLrBstB"
    rtosc_lr_c_fst_b = "RTOSCLrCFstB"
    # ReservoirToScGas
    rtosc_gr_m3st_m3 = "RTOSCGrM3stM3"
    rtosc_gr_c_fs_cf = "RTOSCGrCFsCF"
    rtosc_gr_bs_cf = "RTOSCGrBsCF"
    rtosc_gr_bs_mcf = "RTOSCGrBsMCF"
    # Salinity
    salinity_ppm = "SalinityPpm"
    salinity_kppm = "SalinityKppm"
    # CaptureCrossSection
    capture = "CaptureUnit"
    # SpecificEnthalpy
    joule_per_kg = "JoulePerKg"
    cal_per_g = "CalPerG"
    btu_per_lbm = "BtuPerLbm"
    # Noise
    noise = "NoiseUnit"
    # Mobility
    perm_milli_darcy_per_pascal_second = "PermMilliDarcyPerPascalSecond"
    perm_milli_darcy_per_centipoise = "PermMilliDarcyPerCentipoise"
    perm_darcy_per_pascal_second = "PermDarcyPerPascalSecond"
    perm_darcy_per_centipoise = "PermDarcyPerCentipoise"
    perm_micro_m2_per_pascal_second = "PermMicroM2PerPascalSecond"
    perm_micro_m2_per_centipoise = "PermMicroM2PerCentipoise"
    perm_cm2_per_pascal_second = "PermCm2PerPascalSecond"
    perm_cm2_per_centipoise = "PermCm2PerCentipoise"
    perm_m2_per_pascal_second = "PermM2PerPascalSecond"
    perm_m2_per_centipoise = "PermM2PerCentipoise"
    # Voltage
    volt = "Volt"
    milli_volt = "MilliVolt"
    # Resistivity
    ohm_meter = "OhmMeter"
    # Current
    ampere = "Ampere"
    milli_ampere = "MilliAmpere"
    micro_ampere = "MicroAmpere"
    # Resistance
    ohm = "Ohm"
    kilo_ohm = "KiloOhm"
    mega_ohm = "MegaOhm"
    # Frequency
    per_second = "PerSecond"
    count_per_second = "CountPerSecond"
    milli_hertz = "MilliHertz"
    hertz = "Hertz"
    kilo_hertz = "KiloHertz"
    mega_hertz = "MegaHertz"
    # MassRate
    lb_per_second = "LbPerSecond"
    lb_per_minute = "LbPerMinute"
    lb_per_hour = "LbPerHour"
    lb_per_day = "LbPerDay"
    kg_per_second = "KgPerSecond"
    kg_per_minute = "KgPerMinute"
    kg_per_hour = "KgPerHour"
    kg_per_day = "KgPerDay"
    ton_per_second = "TonPerSecond"
    ton_per_minute = "TonPerMinute"
    ton_per_hour = "TonPerHour"
    ton_per_day = "TonPerDay"
    ton_per_year = "TonPerYear"
    # Power
    watt = "Watt"
    kilo_watt = "KiloWatt"
    mega_watt = "MegaWatt"
    btu_per_sec = "BtuPerSec"
    btu_per_min = "BtuPerMin"
    btu_per_hour = "BtuPerHour"
    btu_per_day = "BtuPerDay"
    tera_joule_per_day = "TeraJoulePerDay"
    horse_power = "HorsePower"
    # Capacitance
    normalized_cap = "NormalizedCap"
    percent_normalized_cap = "PercentNormalizedCap"
    # Velocity
    feet_per_second = "FeetPerSecond"
    feet_per_minute = "FeetPerMinute"
    feet_per_hour = "FeetPerHour"
    centimeter_per_second = "CentimeterPerSecond"
    centimeter_per_minute = "CentimeterPerMinute"
    centimeter_per_hour = "CentimeterPerHour"
    meter_per_second = "MeterPerSecond"
    meter_per_minute = "MeterPerMinute"
    meter_per_hour = "MeterPerHour"
    # CriticalVolume
    cubic_meter_per_mole = "CubicMeterPerMole"
    liter_per_mole = "LiterPerMole"
    cubic_feet_per_lb_mole = "CubicFeetPerLbMole"
    # TemperatureGradient
    deg_c_per_ft = "DegCPerFt"
    deg_c_per_m = "DegCPerM"
    deg_c_per100_ft = "DegCPer100Ft"
    deg_c_per100_m = "DegCPer100M"
    deg_f_per_ft = "DegFPerFt"
    deg_f_per_m = "DegFPerM"
    deg_f_per100_ft = "DegFPer100Ft"
    deg_f_per100_m = "DegFPer100M"
    # GammaRay
    gamma_ray_api = "GammaRayApi"
    # GasPotential
    gas_potential_psi2_cp = "GasPotentialPsi2Cp"
    gas_potential_bar2_cp = "GasPotentialBar2Cp"
    gas_potential_atm2_cp = "GasPotentialAtm2Cp"
    gas_potential_pa_sec = "GasPotentialPaSec"
    gas_potential_k_pa2_cp = "GasPotentialKPa2Cp"
    gas_potential_m_pa2_cp = "GasPotentialMPa2Cp"
    gas_potential_m2_cp = "GasPotentialM2Cp"
    # HeatTransfertCoef
    heat_transfer_watt_per_meter2_c = "HeatTransferWattPerMeter2C"
    heat_transfer_cal_per_s_meter2_c = "HeatTransferCalPerSMeter2C"
    heat_transfer_btu_per_day_feet2_f = "HeatTransferBtuPerDayFeet2F"
    # PermeabilityHydro
    permeability_hydro_ms = "PermeabilityHydroMS"
    permeability_hydro_md = "PermeabilityHydroMD"
    # TransmissivityHydro
    transmissivity_hydro_m2_s = "TransmissivityHydroM2S"
    transmissivity_hydro_m2_d = "TransmissivityHydroM2D"
    # Transmissibility
    transmissibility_mdft_per_cp = "TransmissibilityMDFTPerCpUnit"
    transmissibility_m3_per_cp = "TransmissibilityM3PerCpUnit"
    transmissibility_m3_per_pa_sec = "TransmissibilityM3PerPaSecUnit"
    # ProductivityIndex
    productivity_index_m3_s_per_pascal = "ProductivityIndexM3SPerPascal"
    productivity_index_m3_d_per_bar = "ProductivityIndexM3DPerBar"
    productivity_index_bd_per_psi = "ProductivityIndexBDPerPsi"
    # RoughnessAbsolute
    length10th_inch = "Length10thInchUnit"
    length64th_inch = "Length64thInchUnit"
    # Spinner
    revolution_per_second = "RevolutionPerSecond"
    revolution_per_minute = "RevolutionPerMinute"
    revolution_per_hour = "RevolutionPerHour"
    # Margins
    report_hundredth_of_an_inch = "ReportUnitHundredthOfAnInch"
    report_twentieth_of_a_point_with72_dpi = "ReportUnitTwentiethOfAPointWith72Dpi"
    report_emu = "ReportUnitEmu"
    # Mass
    mass_gramme = "MassGramme"
    mass_kilogramme = "MassKilogramme"
    mass_ton = "MassTon"
    mass_us_ton = "MassUSTon"
    mass_uk_ton = "MassUKTon"
    mass_lb = "MassLb"
    # Force
    force_newton = "ForceNewton"
    force_lb = "ForceLb"
    force_deca_newton = "ForceDecaNewton"
    force_kgf = "ForceKgf"
    force_lbf = "ForceLbf"
    force_dyn = "ForceDyn"
    # InterfacialTension
    newton_per_meter = "NewtonPerMeter"
    dyne_per_centimeter = "DynePerCentimeter"
    force_lbf_per_inches = "ForceLbfPerInches"
    force_lbf_per_feet = "ForceLbfPerFeet"
    # GasProductivityIndex
    gas_productivity_indexm3s_pa = "GasProductivityIndexm3sPa"
    gas_productivity_indexscf_dpsi = "GasProductivityIndexscfDpsi"
    gas_productivity_index_mscf_dpsi = "GasProductivityIndexMscfDpsi"
    gas_productivity_index_m_mscf_dpsi = "GasProductivityIndexMMscfDpsi"
    gas_productivity_indexm3_dbar = "GasProductivityIndexm3Dbar"
    gas_productivity_indexm3hbar = "GasProductivityIndexm3hbar"
    gas_productivity_indexm3_d_pa = "GasProductivityIndexm3DPa"
    gas_productivity_indexm3_dk_pa = "GasProductivityIndexm3DkPa"
    # InverseGasProductivityIndex
    inverse_gas_productivity_indexm3s_pa = "InverseGasProductivityIndexm3sPa"
    inverse_gas_productivity_indexscf_dpsi = "InverseGasProductivityIndexscfDpsi"
    inverse_gas_productivity_index_mscf_dpsi = "InverseGasProductivityIndexMscfDpsi"
    inverse_gas_productivity_index_m_mscf_dpsi = "InverseGasProductivityIndexMMscfDpsi"
    inverse_gas_productivity_indexm3_dbar = "InverseGasProductivityIndexm3Dbar"
    inverse_gas_productivity_indexm3hbar = "InverseGasProductivityIndexm3hbar"
    inverse_gas_productivity_indexm3_d_pa = "InverseGasProductivityIndexm3DPa"
    inverse_gas_productivity_indexm3_dk_pa = "InverseGasProductivityIndexm3DkPa"
    # LiquidProductivityIndex
    liquid_productivity_indexm3s_pa = "LiquidProductivityIndexm3sPa"
    liquid_productivity_index_stb_dpsi = "LiquidProductivityIndexSTBDpsi"
    liquid_productivity_indexm3_dbar = "LiquidProductivityIndexm3Dbar"
    liquid_productivity_indexm3hbar = "LiquidProductivityIndexm3hbar"
    liquid_productivity_indexm3_d_pa = "LiquidProductivityIndexm3DPa"
    liquid_productivity_indexm3_dk_pa = "LiquidProductivityIndexm3DkPa"
    # InverseLiquidProductivityIndex
    inverse_liquid_productivity_indexm3s_pa = "InverseLiquidProductivityIndexm3sPa"
    inverse_liquid_productivity_index_stb_dpsi = "InverseLiquidProductivityIndexSTBDpsi"
    inverse_liquid_productivity_indexm3_dbar = "InverseLiquidProductivityIndexm3Dbar"
    inverse_liquid_productivity_indexm3hbar = "InverseLiquidProductivityIndexm3hbar"
    inverse_liquid_productivity_indexm3_d_pa = "InverseLiquidProductivityIndexm3DPa"
    inverse_liquid_productivity_indexm3_dk_pa = "InverseLiquidProductivityIndexm3DkPa"
    # InverseTime
    inverse_time_year = "InverseTimeYear"
    inverse_time_month = "InverseTimeMonth"
    inverse_time_week = "InverseTimeWeek"
    inverse_time_day = "InverseTimeDay"
    inverse_time_hour = "InverseTimeHour"
    inverse_time_minute = "InverseTimeMinute"
    inverse_time_second = "InverseTimeSecond"
    # SquareRootTime
    square_root_time_second = "SquareRootTimeSecond"
    square_root_time_minute = "SquareRootTimeMinute"
    square_root_time_hour = "SquareRootTimeHour"
    square_root_time_day = "SquareRootTimeDay"
    square_root_time_week = "SquareRootTimeWeek"
    square_root_time_month = "SquareRootTimeMonth"
    square_root_time_year = "SquareRootTimeYear"
    # InversePressure
    inverse_pressure_pascal = "InversePressurePascal"
    inverse_pressure_kilo_pascal = "InversePressureKiloPascal"
    inverse_pressure_m_pascal = "InversePressureMPascal"
    inverse_pressure_psia = "InversePressurePsia"
    inverse_pressure_atm = "InversePressureAtm"
    inverse_pressure_bar = "InversePressureBar"
    inverse_pressure_kg_cm2 = "InversePressureKgCm2"
    inverse_pressure_water_height = "InversePressureWaterHeight"
    # InverseLength
    inverse_length_meter = "InverseLengthMeter"
    inverse_length_centi_meter = "InverseLengthCentiMeter"
    inverse_length_milli_meter = "InverseLengthMilliMeter"
    inverse_length_inch = "InverseLengthInch"
    inverse_length_feet = "InverseLengthFeet"
    inverse_length_mile = "InverseLengthMile"
    inverse_length_kilo_meter = "InverseLengthKiloMeter"
    # PressureGradient
    delta_pressure_pascal_per_meter = "DeltaPressurePascalPerMeterUnit"
    delta_pressure_kilo_pascal_per_meter = "DeltaPressureKiloPascalPerMeterUnit"
    delta_pressure_atm_per_meter = "DeltaPressureAtmUnitPerMeterUnit"
    delta_pressure_psia_per_meter = "DeltaPressurePsiaPerMeterUnit"
    delta_pressure_pascal_per_foot = "DeltaPressurePascalPerFootUnit"
    delta_pressure_kilo_pascal_per_foot = "DeltaPressureKiloPascalPerFootUnit"
    delta_pressure_atm_per_feet = "DeltaPressureAtmUnitPerFeetUnit"
    delta_pressure_psia_per_foot = "DeltaPressurePsiaPerFootUnit"
    # MolarWeight
    gram_per_mol = "GramPerMol"
    kilogram_per_mol = "KilogramPerMol"
    lb_per_lb_mol = "LbPerLbMol"
    # Longitude
    geographic_degree = "GeographicDegree"
    # PressureDerivative
    pascal_per_hour = "PascalPerHourUnit"
    psi_per_hour = "PsiPerHourUnit"
    bar_per_hour = "BarPerHourUnit"
    psi_per_day = "PsiPerDayUnit"
    psi_per_month = "PsiPerMonthUnit"