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" pressure_water_height_inch = "PressureWaterHeightInchUnit" # 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" delta_pressure_water_height_inch = "DeltaPressureWaterHeightInchUnit" # 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" inverse_rate_day_per_million_cubic_feet = "InverseRateDayPerMillionCubicFeetUnit" # 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" # AreaPermeabilitySquareRoot area_perm_sqrt_m3 = "AreaPermSqrtM3Unit" area_perm_sqrt_m2_sqrt_md = "AreaPermSqrtM2SqrtMdUnit" area_perm_sqrt_ft2_sqrt_md = "AreaPermSqrtFt2SqrtMdUnit" area_perm_sqrt_m2_sqrt_darcy = "AreaPermSqrtM2SqrtDarcyUnit" area_perm_sqrt_ft2_sqrt_darcy = "AreaPermSqrtFt2SqrtDarcyUnit" # PermeabilityLengthSquare perm_length_square_m4 = "PermLengthSquareM4Unit" perm_length_square_md_m2 = "PermLengthSquareMdM2Unit" perm_length_square_md_ft2 = "PermLengthSquareMdFt2Unit" perm_length_square_darcy_m2 = "PermLengthSquareDarcyM2Unit" perm_length_square_darcy_ft2 = "PermLengthSquareDarcyFt2Unit" # 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" storage_m_mscf_per_psi = "StorageMMscfPerPsiUnit" # 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" delta_temp_celsius_deg = "DeltaTempCelsiusDegUnit" delta_temp_fahrenheit_deg = "DeltaTempFahrenheitDegUnit" # 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" volume_ratio_std_barrel_per_scf = "VolumeRatioStdBarrelPerSCF" # 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" cubic_meter_per_k_mole = "CubicMeterPerKMole" # 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" transmissibility_mdm_per_cp = "TransmissibilityMDMPerCpUnit" # ProductivityIndex productivity_index_m3_s_per_pascal = "ProductivityIndexM3SPerPascal" productivity_index_m3_d_per_bar = "ProductivityIndexM3DPerBar" productivity_index_bd_per_psi = "ProductivityIndexBDPerPsi" productivity_index_m3_s_per_kg_cm2 = "ProductivityIndexM3SPerKgCm2" productivity_index_m3_d_per_kg_cm2 = "ProductivityIndexM3DPerKgCm2" productivity_index_bd_per_kg_cm2 = "ProductivityIndexBDPerKgCm2" # 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" report_tenth_of_a_millimeter = "ReportUnitTenthOfAMillimeter" # 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" force_gf = "ForceGf" # InterfacialTension newton_per_meter = "NewtonPerMeter" dyne_per_centimeter = "DynePerCentimeter" force_lbf_per_inches = "ForceLbfPerInches" force_lbf_per_feet = "ForceLbfPerFeet" # Parachor parachor_si = "ParachorSI" parachor_cgs = "ParachorCGS" # 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" liquid_productivity_indexm3s_kg_cm2 = "LiquidProductivityIndexm3sKgCm2" liquid_productivity_indexm3_d_kg_cm2 = "LiquidProductivityIndexm3DKgCm2" liquid_productivity_indexm3h_kg_cm2 = "LiquidProductivityIndexm3hKgCm2" # 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" delta_pressure_bar_per_meter = "DeltaPressureBarUnitPerMeterUnit" # 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" # PipeWeight linear_weight_kg_per_meter = "LinearWeightKgPerMeter" linear_weight_lb_per_foot = "LinearWeightLbPerFoot" linear_weight_da_n_per_meter = "LinearWeightDaNPerMeter" linear_weight_n_per_meter = "LinearWeightNPerMeter" linear_weight_kn_per_meter = "LinearWeightKNPerMeter" # AcousticNoise acoustic_noise_decibel = "AcousticNoiseDecibel" acoustic_noise = "AcousticNoiseUnit" acoustic_noise_nu = "AcousticNoiseNUUnit" # AcousticImpedance acoustic_impedance_m_rayl = "AcousticImpedanceMRayl" # PowerPerLength power_per_length_watt_per_meter = "PowerPerLengthWattPerMeter" power_per_length_kilo_watt_per_meter = "PowerPerLengthKiloWattPerMeter" power_per_length_mega_watt_per_meter = "PowerPerLengthMegaWattPerMeter" power_per_length_btu_per_sec_per_feet = "PowerPerLengthBtuPerSecPerFeet" power_per_length_btu_per_min_per_feet = "PowerPerLengthBtuPerMinPerFeet" power_per_length_btu_per_hour_per_feet = "PowerPerLengthBtuPerHourPerFeet" power_per_length_btu_per_day_per_feet = "PowerPerLengthBtuPerDayPerFeet" # Slowness slowness_micro_second_per_feet = "SlownessMicroSecondPerFeet" slowness_milli_second_per_feet = "SlownessMilliSecondPerFeet" slowness_second_per_feet = "SlownessSecondPerFeet" slowness_minute_per_feet = "SlownessMinutePerFeet" slowness_hour_per_feet = "SlownessHourPerFeet" slowness_micro_second_per_centimeter = "SlownessMicroSecondPerCentimeter" slowness_milli_second_per_centimeter = "SlownessMilliSecondPerCentimeter" slowness_second_per_centimeter = "SlownessSecondPerCentimeter" slowness_minute_per_centimeter = "SlownessMinutePerCentimeter" slowness_hour_per_centimeter = "SlownessHourPerCentimeter" slowness_micro_second_per_meter = "SlownessMicroSecondPerMeter" slowness_milli_second_per_meter = "SlownessMilliSecondPerMeter" slowness_second_per_meter = "SlownessSecondPerMeter" slowness_minute_per_meter = "SlownessMinutePerMeter" slowness_hour_per_meter = "SlownessHourPerMeter" # Attenuation attenuation_decibel_per_feet = "AttenuationDecibelPerFeet" attenuation_decibel_per_meter = "AttenuationDecibelPerMeter" # StrainRate strain_rate_per_second = "StrainRatePerSecond" strain_rate_nanometer_per_meter_per_second = "StrainRateNanometerPerMeterPerSecond" # Pressure/Time pa_per_hr = "Pa/hr" psia_per_hr = "psia/hr" bara_per_hr = "bara/hr" # Pressure/Area pa_per_m2 = "Pa/m²" psia_per_acre = "psia/acre" bara_per_m2 = "bara/m²" pa_per_acre = "Pa/acre" # Angle/Time radian_per_hr = "radian/hr" deg_per_hr = "°/hr" # Pressure/Depth pa_per_m = "Pa/m" psia_per_ft = "psia/ft" bara_per_m = "bara/m" # Angle/Time² radian_per_hr2 = "radian/hr²" deg_per_hr2 = "°/hr²" # Density/Time kg_per_m3_per_hr = "[kg/m³]/hr" g_per_cc_per_hr = "[g/cc]/hr" # Pressure/Current pa_per_a = "Pa/A" psia_per_a = "psia/A" bara_per_a = "bara/A" # Pressure/Density pa_per_kg_per_m3 = "Pa/[kg/m³]" psia_per_g_per_cc = "psia/[g/cc]" bara_per_g_per_cc = "bara/[g/cc]" bara_per_kg_per_m3 = "bara/[kg/m³]" # Angle/Depth radian_per_m = "radian/m" deg_per_ft = "°/ft" deg_per_m = "°/m" # Pressure/Time² pa_per_hr2 = "Pa/hr²" psia_per_hr2 = "psia/hr²" bara_per_hr2 = "bara/hr²" # Pressure/Time³ pa_per_hr3 = "Pa/hr³" psia_per_hr3 = "psia/hr³" bara_per_hr3 = "bara/hr³" # Pressure².Temperature**4 pa2_k_pow4 = "Pa².K**4" psia2_deg_r_pow4 = "psia².°R**4" bara2_k_pow4 = "bara².K**4" psia2_k_pow4 = "psia².K**4" # [Pressure**4.Temperature**8]/Time pa_pow4_k_pow8_per_hr = "[Pa**4.K**8]/hr" psia_pow4_deg_r_pow8_per_hr = "[psia**4.°R**8]/hr" bara_pow4_k_pow8_per_hr = "[bara**4.K**8]/hr" # Pressure³.Temperature**5 pa3_k_pow5 = "Pa³.K**5" psia3_deg_r_pow5 = "psia³.°R**5" bara3_k_pow5 = "bara³.K**5" psia3_k_pow5 = "psia³.K**5" # Pressure.Temperature pa_k = "Pa.K" psia_deg_r = "psia.°R" bara_k = "bara.K" # Gas rate/Pressure stm3_per_sec_per_pa = "[stm³/sec]/Pa" mscf_per_d_per_psia = "[Mscf/D]/psia" l_per_min_per_bara = "[l/min]/bara" stm3_per_d_per_bara = "[stm³/D]/bara" # Mass/Length kg_per_m = "kg/m" kg_per_ft = "kg/ft" # Liquid rate/[Pressure**0.5] stm3_per_sec_per_pa_pow0_5 = "[stm³/sec]/[Pa**0.5]" stb_per_d_per_psia_pow0_5 = "[stb/D]/[psia**0.5]" l_per_min_per_bara_pow0_5 = "[l/min]/[bara**0.5]" stm3_per_d_per_bara_pow0_5 = "[stm³/D]/[bara**0.5]"