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

86 statements  

« prev     ^ index     » next       coverage.py v7.10.7, created at 2025-11-06 23:27 +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 massflow = "massflow" 

36 massfraction = "massfraction" 

37 mediumresistance = "mediumresistance" 

38 meltingTemperature = "meltingTemperature" 

39 molar_conc = "molar_conc" 

40 massEnthalpy = "massEnthalpy" 

41 molarEnthalpy = "molarEnthalpy" 

42 molarEnthalpyOverTime = "molarEnthalpyOverTime" 

43 massEntropy = "massEntropy" 

44 molar = "molar" 

45 molarEntropy = "molarEntropy" 

46 molar_volume = "molar_volume" 

47 molarflow = "molarflow" 

48 molarfraction = "molarfraction" 

49 molecularWeight = "molecularWeight" 

50 pressure = "pressure" 

51 reac_rate = "reac_rate" 

52 reac_rate_heterog = "reac_rate_heterog" 

53 spec_vol = "spec_vol" 

54 surfaceTension = "surfaceTension" 

55 temperature = "temperature" 

56 deltaTemperature = "deltaTemperature" 

57 thermalConductivity = "thermalConductivity" 

58 thermalConductivityOfLiquid = "thermalConductivityOfLiquid" 

59 thermalConductivityOfVapor = "thermalConductivityOfVapor" 

60 thickness = "thickness" 

61 time = "time" 

62 vaporPressure = "vaporPressure" 

63 velocity = "velocity" 

64 viscosity = "viscosity" 

65 viscosityOfLiquid = "viscosityOfLiquid" 

66 viscosityOfVapor = "viscosityOfVapor" 

67 volume = "volume" 

68 volumetricFlow = "volumetricFlow" 

69 diffusivity = "diffusivity" 

70 none = "dimensionless" 

71 conductance = "conductance" 

72 ratio = "ratio" 

73 rpm = "rpm" 

74 voltage = "voltage" 

75 ampere = "ampere" 

76 resistance = "resistance" 

77 irradiance = "irradiance" 

78 currentDensity = "currentDensity" 

79 currency = "currency" 

80 powerPrice = "powerPrice" 

81 percentage="percentage" 

82 valveCoefficient = "valveCoefficient" 

83 valveOpening = "valveOpening" 

84 electric = "electric" 

85 battery_capacity = "battery_capacity" 

86 unknown = "unknown" 

87 thermalresistance = "thermalresistance"