Coverage for backend/django/core/auxiliary/enums/unitsOfMeasure.py: 100%

89 statements  

« prev     ^ index     » next       coverage.py v7.10.7, created at 2026-07-22 05:22 +0000

1from django.db import models 

2 

3class UnitOfMeasure(models.TextChoices): 

4 accel = "accel" 

5 activity = "activity" 

6 activityCoefficient = "activityCoefficient" 

7 area = "area" 

8 boilingPointTemperature = "boilingPointTemperature" 

9 cakeresistance = "cakeresistance" 

10 cinematic_viscosity = "cinematic_viscosity" 

11 compressibility = "compressibility" 

12 compressibilityFactor = "compressibilityFactor" 

13 density = "density" 

14 diameter = "diameter" 

15 distance = "distance" 

16 excessEnthalpy = "excessEnthalpy" 

17 excessEntropy = "excessEntropy" 

18 energy = "energy" 

19 force = "force" 

20 foulingfactor = "foulingfactor" 

21 fugacity = "fugacity" 

22 fugacityCoefficient = "fugacityCoefficient" 

23 gor = "gor" 

24 head = "head" 

25 heat_transf_coeff = "heat_transf_coeff" 

26 heatCapacityCv = "heatCapacityCv" 

27 heatflow = "heatflow" 

28 idealGasHeatCapacity = "idealGasHeatCapacity" 

29 jouleThomsonCoefficient = "jouleThomsonCoefficient" 

30 kvalue = "kvalue" 

31 logFugacityCoefficient = "logFugacityCoefficient" 

32 logKvalue = "logKvalue" 

33 mass = "mass" 

34 mass_conc = "mass_conc" 

35 massFlux = "massFlux" 

36 massflow = "massflow" 

37 massfraction = "massfraction" 

38 mediumresistance = "mediumresistance" 

39 meltingTemperature = "meltingTemperature" 

40 molar_conc = "molar_conc" 

41 massEnthalpy = "massEnthalpy" 

42 molarEnthalpy = "molarEnthalpy" 

43 molarEnthalpyOverTime = "molarEnthalpyOverTime" 

44 massEntropy = "massEntropy" 

45 molar = "molar" 

46 molarEntropy = "molarEntropy" 

47 molar_volume = "molar_volume" 

48 molarflow = "molarflow" 

49 molarfraction = "molarfraction" 

50 molecularWeight = "molecularWeight" 

51 pressure = "pressure" 

52 reac_rate = "reac_rate" 

53 reac_rate_heterog = "reac_rate_heterog" 

54 spec_vol = "spec_vol" 

55 surfaceTension = "surfaceTension" 

56 temperature = "temperature" 

57 deltaTemperature = "deltaTemperature" 

58 thermalConductivity = "thermalConductivity" 

59 thermalConductivityOfLiquid = "thermalConductivityOfLiquid" 

60 thermalConductivityOfVapor = "thermalConductivityOfVapor" 

61 thickness = "thickness" 

62 time = "time" 

63 vaporPressure = "vaporPressure" 

64 velocity = "velocity" 

65 viscosity = "viscosity" 

66 viscosityOfLiquid = "viscosityOfLiquid" 

67 viscosityOfVapor = "viscosityOfVapor" 

68 volume = "volume" 

69 volumetricFlow = "volumetricFlow" 

70 diffusivity = "diffusivity" 

71 none = "dimensionless" 

72 conductance = "conductance" 

73 ratio = "ratio" 

74 rpm = "rpm" 

75 voltage = "voltage" 

76 ampere = "ampere" 

77 resistance = "resistance" 

78 irradiance = "irradiance" 

79 currentDensity = "currentDensity" 

80 currency = "currency" 

81 powerPrice = "powerPrice" 

82 costRate = "costRate" 

83 percentage="percentage" 

84 valveCoefficient = "valveCoefficient" 

85 valveOpening = "valveOpening" 

86 electric = "electric" 

87 battery_capacity = "battery_capacity" 

88 unknown = "unknown" 

89 thermalresistance = "thermalresistance" 

90 solventPermeability = "solventPermeability"