qnty 0.0.9__py3-none-any.whl → 0.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- qnty/__init__.py +2 -3
- qnty/constants/__init__.py +10 -0
- qnty/constants/numerical.py +18 -0
- qnty/constants/solvers.py +6 -0
- qnty/constants/tests.py +6 -0
- qnty/dimensions/__init__.py +23 -0
- qnty/dimensions/base.py +97 -0
- qnty/dimensions/field_dims.py +126 -0
- qnty/dimensions/field_dims.pyi +128 -0
- qnty/dimensions/signature.py +111 -0
- qnty/equations/__init__.py +1 -1
- qnty/equations/equation.py +118 -155
- qnty/equations/system.py +68 -65
- qnty/expressions/__init__.py +25 -46
- qnty/expressions/formatter.py +188 -0
- qnty/expressions/functions.py +46 -68
- qnty/expressions/nodes.py +540 -384
- qnty/expressions/types.py +70 -0
- qnty/problems/__init__.py +145 -0
- qnty/problems/composition.py +1101 -0
- qnty/problems/problem.py +737 -0
- qnty/problems/rules.py +145 -0
- qnty/problems/solving.py +1216 -0
- qnty/problems/validation.py +127 -0
- qnty/quantities/__init__.py +28 -5
- qnty/quantities/base_qnty.py +677 -0
- qnty/quantities/field_converters.py +24004 -0
- qnty/quantities/field_qnty.py +1012 -0
- qnty/{generated/setters.py → quantities/field_setter.py} +3071 -2961
- qnty/{generated/quantities.py → quantities/field_vars.py} +829 -444
- qnty/{generated/quantities.pyi → quantities/field_vars.pyi} +1289 -1290
- qnty/solving/manager.py +50 -44
- qnty/solving/order.py +181 -133
- qnty/solving/solvers/__init__.py +2 -9
- qnty/solving/solvers/base.py +27 -37
- qnty/solving/solvers/iterative.py +115 -135
- qnty/solving/solvers/simultaneous.py +93 -165
- qnty/units/__init__.py +1 -0
- qnty/{generated/units.py → units/field_units.py} +1700 -991
- qnty/units/field_units.pyi +2461 -0
- qnty/units/prefixes.py +58 -105
- qnty/units/registry.py +76 -89
- qnty/utils/__init__.py +16 -0
- qnty/utils/caching/__init__.py +23 -0
- qnty/utils/caching/manager.py +401 -0
- qnty/utils/error_handling/__init__.py +66 -0
- qnty/utils/error_handling/context.py +39 -0
- qnty/utils/error_handling/exceptions.py +96 -0
- qnty/utils/error_handling/handlers.py +171 -0
- qnty/utils/logging.py +4 -4
- qnty/utils/protocols.py +164 -0
- qnty/utils/scope_discovery.py +420 -0
- {qnty-0.0.9.dist-info → qnty-0.1.1.dist-info}/METADATA +1 -1
- qnty-0.1.1.dist-info/RECORD +60 -0
- qnty/_backup/problem_original.py +0 -1251
- qnty/_backup/quantity.py +0 -63
- qnty/codegen/cli.py +0 -125
- qnty/codegen/generators/data/unit_data.json +0 -8807
- qnty/codegen/generators/data_processor.py +0 -345
- qnty/codegen/generators/dimensions_gen.py +0 -434
- qnty/codegen/generators/doc_generator.py +0 -141
- qnty/codegen/generators/out/dimension_mapping.json +0 -974
- qnty/codegen/generators/out/dimension_metadata.json +0 -123
- qnty/codegen/generators/out/units_metadata.json +0 -223
- qnty/codegen/generators/quantities_gen.py +0 -159
- qnty/codegen/generators/setters_gen.py +0 -178
- qnty/codegen/generators/stubs_gen.py +0 -167
- qnty/codegen/generators/units_gen.py +0 -295
- qnty/expressions/cache.py +0 -94
- qnty/generated/dimensions.py +0 -514
- qnty/problem/__init__.py +0 -91
- qnty/problem/base.py +0 -142
- qnty/problem/composition.py +0 -385
- qnty/problem/composition_mixin.py +0 -382
- qnty/problem/equations.py +0 -413
- qnty/problem/metaclass.py +0 -302
- qnty/problem/reconstruction.py +0 -1016
- qnty/problem/solving.py +0 -180
- qnty/problem/validation.py +0 -64
- qnty/problem/variables.py +0 -239
- qnty/quantities/expression_quantity.py +0 -314
- qnty/quantities/quantity.py +0 -428
- qnty/quantities/typed_quantity.py +0 -215
- qnty/validation/__init__.py +0 -0
- qnty/validation/registry.py +0 -0
- qnty/validation/rules.py +0 -167
- qnty-0.0.9.dist-info/RECORD +0 -63
- /qnty/{codegen → extensions}/__init__.py +0 -0
- /qnty/{codegen/generators → extensions/integration}/__init__.py +0 -0
- /qnty/{codegen/generators/utils → extensions/plotting}/__init__.py +0 -0
- /qnty/{generated → extensions/reporting}/__init__.py +0 -0
- {qnty-0.0.9.dist-info → qnty-0.1.1.dist-info}/WHEEL +0 -0
@@ -0,0 +1,2461 @@
|
|
1
|
+
"""Type stubs for field units."""
|
2
|
+
|
3
|
+
from .registry import UnitConstant
|
4
|
+
|
5
|
+
|
6
|
+
class AbsorbedDoseUnits:
|
7
|
+
"""Unit constants for Absorbed Radiation Dose."""
|
8
|
+
__slots__: tuple[()]
|
9
|
+
|
10
|
+
erg_per_gram: UnitConstant
|
11
|
+
erg_g: UnitConstant
|
12
|
+
erg_per_g: UnitConstant
|
13
|
+
gram_rad: UnitConstant
|
14
|
+
g_rad: UnitConstant
|
15
|
+
gray: UnitConstant
|
16
|
+
Gy: UnitConstant
|
17
|
+
rad: UnitConstant
|
18
|
+
milligray: UnitConstant
|
19
|
+
mGy: UnitConstant
|
20
|
+
microgray: UnitConstant
|
21
|
+
|
22
|
+
class AccelerationUnits:
|
23
|
+
"""Unit constants for Acceleration."""
|
24
|
+
__slots__: tuple[()]
|
25
|
+
|
26
|
+
meter_per_second_squared: UnitConstant
|
27
|
+
mathrm_m_mathrm_s_2: UnitConstant
|
28
|
+
m_per_s2: UnitConstant
|
29
|
+
foot_per_second_squared: UnitConstant
|
30
|
+
mathrm_ft_mathrm_s_2_or_mathrm_ft_mathrm_sec_2: UnitConstant
|
31
|
+
ft_per_s2: UnitConstant
|
32
|
+
fps2: UnitConstant
|
33
|
+
|
34
|
+
class ActivationEnergyUnits:
|
35
|
+
"""Unit constants for Activation Energy."""
|
36
|
+
__slots__: tuple[()]
|
37
|
+
|
38
|
+
btu_per_pound_mole: UnitConstant
|
39
|
+
Btu_lb_mol: UnitConstant
|
40
|
+
btu_per_lbmol: UnitConstant
|
41
|
+
calorie_mean_per_gram_mole: UnitConstant
|
42
|
+
cal_mol: UnitConstant
|
43
|
+
cal_mean_per_gmol: UnitConstant
|
44
|
+
joule_per_gram_mole: UnitConstant
|
45
|
+
J_mol: UnitConstant
|
46
|
+
joule_per_kilogram_mole: UnitConstant
|
47
|
+
J_kmol: UnitConstant
|
48
|
+
kilocalorie_per_kilogram_mole: UnitConstant
|
49
|
+
kcal_kmol: UnitConstant
|
50
|
+
|
51
|
+
class AmountOfSubstanceUnits:
|
52
|
+
"""Unit constants for Amount of Substance."""
|
53
|
+
__slots__: tuple[()]
|
54
|
+
|
55
|
+
kilogram_mol: UnitConstant
|
56
|
+
kmol: UnitConstant
|
57
|
+
mole: UnitConstant
|
58
|
+
mol: UnitConstant
|
59
|
+
pound_mole: UnitConstant
|
60
|
+
lb_mol_or_mole: UnitConstant
|
61
|
+
lb_mol: UnitConstant
|
62
|
+
mole: UnitConstant
|
63
|
+
millimole: UnitConstant
|
64
|
+
mmol: UnitConstant
|
65
|
+
micromole: UnitConstant
|
66
|
+
|
67
|
+
class AnglePlaneUnits:
|
68
|
+
"""Unit constants for Angle, Plane."""
|
69
|
+
__slots__: tuple[()]
|
70
|
+
|
71
|
+
degree: UnitConstant
|
72
|
+
circ: UnitConstant
|
73
|
+
gon: UnitConstant
|
74
|
+
grade: UnitConstant
|
75
|
+
minute_new: UnitConstant
|
76
|
+
c: UnitConstant
|
77
|
+
minute_of_angle: UnitConstant
|
78
|
+
unnamed: UnitConstant
|
79
|
+
percent: UnitConstant
|
80
|
+
plane_angle: UnitConstant
|
81
|
+
quadrant: UnitConstant
|
82
|
+
quadr: UnitConstant
|
83
|
+
radian: UnitConstant
|
84
|
+
rad: UnitConstant
|
85
|
+
right_angle: UnitConstant
|
86
|
+
perp: UnitConstant
|
87
|
+
round: UnitConstant
|
88
|
+
tr_or_r: UnitConstant
|
89
|
+
tr: UnitConstant
|
90
|
+
r: UnitConstant
|
91
|
+
second_new: UnitConstant
|
92
|
+
cc: UnitConstant
|
93
|
+
second_of_angle: UnitConstant
|
94
|
+
thousandth_us: UnitConstant
|
95
|
+
US: UnitConstant
|
96
|
+
turn: UnitConstant
|
97
|
+
turn_or_rev: UnitConstant
|
98
|
+
rev: UnitConstant
|
99
|
+
|
100
|
+
class AngleSolidUnits:
|
101
|
+
"""Unit constants for Angle, Solid."""
|
102
|
+
__slots__: tuple[()]
|
103
|
+
|
104
|
+
spat: UnitConstant
|
105
|
+
square_degree: UnitConstant
|
106
|
+
left_circ_right_2: UnitConstant
|
107
|
+
square_gon: UnitConstant
|
108
|
+
g_2: UnitConstant
|
109
|
+
steradian: UnitConstant
|
110
|
+
sr: UnitConstant
|
111
|
+
|
112
|
+
class AngularAccelerationUnits:
|
113
|
+
"""Unit constants for Angular Acceleration."""
|
114
|
+
__slots__: tuple[()]
|
115
|
+
|
116
|
+
radian_per_second_squared: UnitConstant
|
117
|
+
mathrm_rad_mathrm_s_2: UnitConstant
|
118
|
+
revolution_per_second_squared: UnitConstant
|
119
|
+
mathrm_rev_mathrm_sec_2: UnitConstant
|
120
|
+
rpm_or_revolution_per_minute: UnitConstant
|
121
|
+
mathrm_rev_mathrm_min_2_or_rpm_min: UnitConstant
|
122
|
+
rev_min_2: UnitConstant
|
123
|
+
rpm_min: UnitConstant
|
124
|
+
|
125
|
+
class AngularMomentumUnits:
|
126
|
+
"""Unit constants for Angular Momentum."""
|
127
|
+
__slots__: tuple[()]
|
128
|
+
|
129
|
+
gram_centimeter_squared_per_second: UnitConstant
|
130
|
+
mathrm_g_mathrm_cm_2_mathrm_s: UnitConstant
|
131
|
+
kilogram_meter_squared_per_second: UnitConstant
|
132
|
+
mathrm_kg_mathrm_m_2_mathrm_s: UnitConstant
|
133
|
+
pound_force_square_foot_per_second: UnitConstant
|
134
|
+
lb_ft_2_mathrm_sec: UnitConstant
|
135
|
+
|
136
|
+
class AreaUnits:
|
137
|
+
"""Unit constants for Area."""
|
138
|
+
__slots__: tuple[()]
|
139
|
+
|
140
|
+
acre_general: UnitConstant
|
141
|
+
ac: UnitConstant
|
142
|
+
are: UnitConstant
|
143
|
+
a: UnitConstant
|
144
|
+
arpent_quebec: UnitConstant
|
145
|
+
arp: UnitConstant
|
146
|
+
barn: UnitConstant
|
147
|
+
b: UnitConstant
|
148
|
+
circular_inch: UnitConstant
|
149
|
+
cin: UnitConstant
|
150
|
+
circular_mil: UnitConstant
|
151
|
+
cmil: UnitConstant
|
152
|
+
hectare: UnitConstant
|
153
|
+
ha: UnitConstant
|
154
|
+
shed: UnitConstant
|
155
|
+
square_centimeter: UnitConstant
|
156
|
+
mathrm_cm_2: UnitConstant
|
157
|
+
square_chain_ramsden: UnitConstant
|
158
|
+
sq_ch_Rams: UnitConstant
|
159
|
+
square_chain_survey_gunters: UnitConstant
|
160
|
+
sq_ch_surv: UnitConstant
|
161
|
+
square_decimeter: UnitConstant
|
162
|
+
mathrm_dm_2: UnitConstant
|
163
|
+
square_fermi: UnitConstant
|
164
|
+
mathrm_F_2: UnitConstant
|
165
|
+
square_foot: UnitConstant
|
166
|
+
sq_ft_or_ft_2: UnitConstant
|
167
|
+
sq_ft: UnitConstant
|
168
|
+
ft_2: UnitConstant
|
169
|
+
square_hectometer: UnitConstant
|
170
|
+
mathrm_hm_2: UnitConstant
|
171
|
+
square_inch: UnitConstant
|
172
|
+
sq_in_or_in_2: UnitConstant
|
173
|
+
sq_in: UnitConstant
|
174
|
+
in_2: UnitConstant
|
175
|
+
square_kilometer: UnitConstant
|
176
|
+
mathrm_km_2: UnitConstant
|
177
|
+
square_league_statute: UnitConstant
|
178
|
+
sq_lg_stat: UnitConstant
|
179
|
+
square_meter: UnitConstant
|
180
|
+
mathrm_m_2: UnitConstant
|
181
|
+
square_micron: UnitConstant
|
182
|
+
mu_mathrm_m_2_or_mu_2: UnitConstant
|
183
|
+
mu_m_2: UnitConstant
|
184
|
+
mu_2: UnitConstant
|
185
|
+
square_mile_statute: UnitConstant
|
186
|
+
sq_mi_stat: UnitConstant
|
187
|
+
square_mile_us_survey: UnitConstant
|
188
|
+
sq_mi_US_Surv: UnitConstant
|
189
|
+
square_millimeter: UnitConstant
|
190
|
+
mathrm_mm_2: UnitConstant
|
191
|
+
square_nanometer: UnitConstant
|
192
|
+
mathrm_nm_2: UnitConstant
|
193
|
+
square_yard: UnitConstant
|
194
|
+
sq_yd: UnitConstant
|
195
|
+
township_us: UnitConstant
|
196
|
+
twshp: UnitConstant
|
197
|
+
|
198
|
+
class AreaPerUnitVolumeUnits:
|
199
|
+
"""Unit constants for Area per Unit Volume."""
|
200
|
+
__slots__: tuple[()]
|
201
|
+
|
202
|
+
square_centimeter_per_cubic_centimeter: UnitConstant
|
203
|
+
mathrm_cm_2_mathrm_cc: UnitConstant
|
204
|
+
square_foot_per_cubic_foot: UnitConstant
|
205
|
+
mathrm_ft_2_mathrm_ft_3_or_sqft_cft: UnitConstant
|
206
|
+
ft_2_ft_3: UnitConstant
|
207
|
+
sqft_cft: UnitConstant
|
208
|
+
square_inch_per_cubic_inch: UnitConstant
|
209
|
+
mathrm_in_2_mathrm_in_3_or_sq_in_cu_in: UnitConstant
|
210
|
+
in_2_in_3: UnitConstant
|
211
|
+
sq_in_cu_in: UnitConstant
|
212
|
+
square_meter_per_cubic_meter: UnitConstant
|
213
|
+
mathrm_m_2_mathrm_m_3_or_1_mathrm_m_3: UnitConstant
|
214
|
+
m_2_m_3: UnitConstant
|
215
|
+
unit_1_m_3: UnitConstant
|
216
|
+
|
217
|
+
class AtomicWeightUnits:
|
218
|
+
"""Unit constants for Atomic Weight."""
|
219
|
+
__slots__: tuple[()]
|
220
|
+
|
221
|
+
atomic_mass_unit_12c: UnitConstant
|
222
|
+
amu: UnitConstant
|
223
|
+
grams_per_mole: UnitConstant
|
224
|
+
g_mol: UnitConstant
|
225
|
+
kilograms_per_kilomole: UnitConstant
|
226
|
+
kg_kmol: UnitConstant
|
227
|
+
pounds_per_pound_mole: UnitConstant
|
228
|
+
mathrm_lb_mathrm_lb_mol_or_mathrm_lb_mole: UnitConstant
|
229
|
+
lb_lb_mol: UnitConstant
|
230
|
+
lb_mole: UnitConstant
|
231
|
+
|
232
|
+
class ConcentrationUnits:
|
233
|
+
"""Unit constants for Concentration."""
|
234
|
+
__slots__: tuple[()]
|
235
|
+
|
236
|
+
grains_of_i_per_cubic_foot: UnitConstant
|
237
|
+
mathrm_gr_mathrm_ft_3_or_gr_cft: UnitConstant
|
238
|
+
gr_ft_3: UnitConstant
|
239
|
+
gr_cft: UnitConstant
|
240
|
+
grains_of_i_per_gallon_us: UnitConstant
|
241
|
+
gr_gal: UnitConstant
|
242
|
+
|
243
|
+
class DimensionlessUnits:
|
244
|
+
"""Unit constants for Dimensionless."""
|
245
|
+
__slots__: tuple[()]
|
246
|
+
|
247
|
+
dimensionless: UnitConstant
|
248
|
+
ratio: UnitConstant
|
249
|
+
parts_per_million: UnitConstant
|
250
|
+
ppm: UnitConstant
|
251
|
+
parts_per_billion: UnitConstant
|
252
|
+
ppb: UnitConstant
|
253
|
+
|
254
|
+
class DynamicFluidityUnits:
|
255
|
+
"""Unit constants for Dynamic Fluidity."""
|
256
|
+
__slots__: tuple[()]
|
257
|
+
|
258
|
+
meter_seconds_per_kilogram: UnitConstant
|
259
|
+
m_s_kg: UnitConstant
|
260
|
+
rhe: UnitConstant
|
261
|
+
square_foot_per_pound_second: UnitConstant
|
262
|
+
mathrm_ft_2_lb_sec: UnitConstant
|
263
|
+
square_meters_per_newton_per_second: UnitConstant
|
264
|
+
mathrm_m_2_mathrm_N_mathrm_s: UnitConstant
|
265
|
+
|
266
|
+
class ElectricCapacitanceUnits:
|
267
|
+
"""Unit constants for Electric Capacitance."""
|
268
|
+
__slots__: tuple[()]
|
269
|
+
|
270
|
+
cm: UnitConstant
|
271
|
+
abfarad: UnitConstant
|
272
|
+
emu_cgs: UnitConstant
|
273
|
+
farad: UnitConstant
|
274
|
+
F: UnitConstant
|
275
|
+
farad_intl: UnitConstant
|
276
|
+
F_int: UnitConstant
|
277
|
+
jar: UnitConstant
|
278
|
+
puff: UnitConstant
|
279
|
+
statfarad: UnitConstant
|
280
|
+
esu_cgs: UnitConstant
|
281
|
+
millifarad: UnitConstant
|
282
|
+
mF: UnitConstant
|
283
|
+
microfarad: UnitConstant
|
284
|
+
nanofarad: UnitConstant
|
285
|
+
nF: UnitConstant
|
286
|
+
picofarad: UnitConstant
|
287
|
+
pF: UnitConstant
|
288
|
+
|
289
|
+
class ElectricChargeUnits:
|
290
|
+
"""Unit constants for Electric Charge."""
|
291
|
+
__slots__: tuple[()]
|
292
|
+
|
293
|
+
abcoulomb: UnitConstant
|
294
|
+
ampere_hour: UnitConstant
|
295
|
+
Ah: UnitConstant
|
296
|
+
coulomb: UnitConstant
|
297
|
+
C: UnitConstant
|
298
|
+
faraday_c12: UnitConstant
|
299
|
+
franklin: UnitConstant
|
300
|
+
Fr: UnitConstant
|
301
|
+
statcoulomb: UnitConstant
|
302
|
+
u_a_charge: UnitConstant
|
303
|
+
u_a: UnitConstant
|
304
|
+
kilocoulomb: UnitConstant
|
305
|
+
kC: UnitConstant
|
306
|
+
millicoulomb: UnitConstant
|
307
|
+
mC: UnitConstant
|
308
|
+
microcoulomb: UnitConstant
|
309
|
+
nanocoulomb: UnitConstant
|
310
|
+
nC: UnitConstant
|
311
|
+
picocoulomb: UnitConstant
|
312
|
+
pC: UnitConstant
|
313
|
+
|
314
|
+
class ElectricCurrentIntensityUnits:
|
315
|
+
"""Unit constants for Electric Current Intensity."""
|
316
|
+
__slots__: tuple[()]
|
317
|
+
|
318
|
+
abampere: UnitConstant
|
319
|
+
ampere_intl_mean: UnitConstant
|
320
|
+
A_int_mean: UnitConstant
|
321
|
+
ampere_intl_us: UnitConstant
|
322
|
+
A_int_US: UnitConstant
|
323
|
+
ampere_or_amp: UnitConstant
|
324
|
+
A: UnitConstant
|
325
|
+
biot: UnitConstant
|
326
|
+
statampere: UnitConstant
|
327
|
+
u_a_or_current: UnitConstant
|
328
|
+
|
329
|
+
class ElectricDipoleMomentUnits:
|
330
|
+
"""Unit constants for Electric Dipole Moment."""
|
331
|
+
__slots__: tuple[()]
|
332
|
+
|
333
|
+
ampere_meter_second: UnitConstant
|
334
|
+
A_m_s: UnitConstant
|
335
|
+
coulomb_meter: UnitConstant
|
336
|
+
C_m: UnitConstant
|
337
|
+
debye: UnitConstant
|
338
|
+
D: UnitConstant
|
339
|
+
electron_meter: UnitConstant
|
340
|
+
e_m: UnitConstant
|
341
|
+
|
342
|
+
class ElectricFieldStrengthUnits:
|
343
|
+
"""Unit constants for Electric Field Strength."""
|
344
|
+
__slots__: tuple[()]
|
345
|
+
|
346
|
+
volt_per_centimeter: UnitConstant
|
347
|
+
V_cm: UnitConstant
|
348
|
+
volt_per_meter: UnitConstant
|
349
|
+
V_m: UnitConstant
|
350
|
+
|
351
|
+
class ElectricInductanceUnits:
|
352
|
+
"""Unit constants for Electric Inductance."""
|
353
|
+
__slots__: tuple[()]
|
354
|
+
|
355
|
+
abhenry: UnitConstant
|
356
|
+
cm: UnitConstant
|
357
|
+
henry: UnitConstant
|
358
|
+
H: UnitConstant
|
359
|
+
henry_intl_mean: UnitConstant
|
360
|
+
H_int_mean: UnitConstant
|
361
|
+
henry_intl_us: UnitConstant
|
362
|
+
H_int_US: UnitConstant
|
363
|
+
mic: UnitConstant
|
364
|
+
stathenry: UnitConstant
|
365
|
+
millihenry: UnitConstant
|
366
|
+
mH: UnitConstant
|
367
|
+
microhenry: UnitConstant
|
368
|
+
nanohenry: UnitConstant
|
369
|
+
nH: UnitConstant
|
370
|
+
|
371
|
+
class ElectricPotentialUnits:
|
372
|
+
"""Unit constants for Electric Potential."""
|
373
|
+
__slots__: tuple[()]
|
374
|
+
|
375
|
+
abvolt: UnitConstant
|
376
|
+
statvolt: UnitConstant
|
377
|
+
u_a_potential: UnitConstant
|
378
|
+
volt: UnitConstant
|
379
|
+
V: UnitConstant
|
380
|
+
volt_intl_mean: UnitConstant
|
381
|
+
V_int_mean: UnitConstant
|
382
|
+
volt_us: UnitConstant
|
383
|
+
V_int_US: UnitConstant
|
384
|
+
kilovolt: UnitConstant
|
385
|
+
kV: UnitConstant
|
386
|
+
millivolt: UnitConstant
|
387
|
+
mV: UnitConstant
|
388
|
+
microvolt: UnitConstant
|
389
|
+
nanovolt: UnitConstant
|
390
|
+
nV: UnitConstant
|
391
|
+
picovolt: UnitConstant
|
392
|
+
pV: UnitConstant
|
393
|
+
|
394
|
+
class ElectricResistanceUnits:
|
395
|
+
"""Unit constants for Electric Resistance."""
|
396
|
+
__slots__: tuple[()]
|
397
|
+
|
398
|
+
abohm: UnitConstant
|
399
|
+
jacobi: UnitConstant
|
400
|
+
lenz: UnitConstant
|
401
|
+
Metric: UnitConstant
|
402
|
+
ohm: UnitConstant
|
403
|
+
Omega: UnitConstant
|
404
|
+
ohm_intl_mean: UnitConstant
|
405
|
+
Omega_int_mean: UnitConstant
|
406
|
+
ohm_intl_us: UnitConstant
|
407
|
+
Omega_int_US: UnitConstant
|
408
|
+
ohm_legal: UnitConstant
|
409
|
+
Omega_legal: UnitConstant
|
410
|
+
preece: UnitConstant
|
411
|
+
statohm: UnitConstant
|
412
|
+
csu_cgs: UnitConstant
|
413
|
+
wheatstone: UnitConstant
|
414
|
+
kiloohm: UnitConstant
|
415
|
+
k_Omega: UnitConstant
|
416
|
+
megaohm: UnitConstant
|
417
|
+
M_Omega: UnitConstant
|
418
|
+
milliohm: UnitConstant
|
419
|
+
m_Omega: UnitConstant
|
420
|
+
|
421
|
+
class ElectricalConductanceUnits:
|
422
|
+
"""Unit constants for Electrical Conductance."""
|
423
|
+
__slots__: tuple[()]
|
424
|
+
|
425
|
+
emu_cgs: UnitConstant
|
426
|
+
abmho: UnitConstant
|
427
|
+
esu_cgs: UnitConstant
|
428
|
+
statmho: UnitConstant
|
429
|
+
mho: UnitConstant
|
430
|
+
microsiemens: UnitConstant
|
431
|
+
mu_mathrm_S: UnitConstant
|
432
|
+
siemens: UnitConstant
|
433
|
+
S: UnitConstant
|
434
|
+
millisiemens: UnitConstant
|
435
|
+
mS: UnitConstant
|
436
|
+
|
437
|
+
class ElectricalPermittivityUnits:
|
438
|
+
"""Unit constants for Electrical Permittivity."""
|
439
|
+
__slots__: tuple[()]
|
440
|
+
|
441
|
+
farad_per_meter: UnitConstant
|
442
|
+
F_m: UnitConstant
|
443
|
+
|
444
|
+
class ElectricalResistivityUnits:
|
445
|
+
"""Unit constants for Electrical Resistivity."""
|
446
|
+
__slots__: tuple[()]
|
447
|
+
|
448
|
+
circular_mil_ohm_per_foot: UnitConstant
|
449
|
+
circmil_Omega_mathrm_ft: UnitConstant
|
450
|
+
emu_cgs: UnitConstant
|
451
|
+
abohm_cm: UnitConstant
|
452
|
+
microhm_inch: UnitConstant
|
453
|
+
mu_Omega_in: UnitConstant
|
454
|
+
ohm_centimeter: UnitConstant
|
455
|
+
boldsymbol_Omega_mathbf_c_m: UnitConstant
|
456
|
+
ohm_meter: UnitConstant
|
457
|
+
Omega_mathrm_m: UnitConstant
|
458
|
+
|
459
|
+
class EnergyFluxUnits:
|
460
|
+
"""Unit constants for Energy Flux."""
|
461
|
+
__slots__: tuple[()]
|
462
|
+
|
463
|
+
btu_per_square_foot_per_hour: UnitConstant
|
464
|
+
mathrm_Btu_mathrm_ft_2_mathrm_hr: UnitConstant
|
465
|
+
calorie_per_square_centimeter_per_second: UnitConstant
|
466
|
+
mathrm_cal_mathrm_cm_2_mathrm_s_or_mathrm_cal_mathrm_cm_2_mathrm_s: UnitConstant
|
467
|
+
cal_cm_2_s: UnitConstant
|
468
|
+
celsius_heat_units_chu: UnitConstant
|
469
|
+
mathrm_Chu_mathrm_ft_2_mathrm_hr: UnitConstant
|
470
|
+
kilocalorie_per_square_foot_per_hour: UnitConstant
|
471
|
+
mathrm_kcal_left_mathrm_ft_2_mathrm_hr_right: UnitConstant
|
472
|
+
kilocalorie_per_square_meter_per_hour: UnitConstant
|
473
|
+
mathrm_kcal_left_mathrm_m_2_mathrm_hr_right: UnitConstant
|
474
|
+
watt_per_square_meter: UnitConstant
|
475
|
+
mathrm_W_mathrm_m_2: UnitConstant
|
476
|
+
|
477
|
+
class EnergyHeatWorkUnits:
|
478
|
+
"""Unit constants for Energy, Heat, Work."""
|
479
|
+
__slots__: tuple[()]
|
480
|
+
|
481
|
+
barrel_oil_equivalent_or_equivalent_barrel: UnitConstant
|
482
|
+
bboe_or_boe: UnitConstant
|
483
|
+
bboe: UnitConstant
|
484
|
+
boe: UnitConstant
|
485
|
+
billion_electronvolt: UnitConstant
|
486
|
+
BeV: UnitConstant
|
487
|
+
british_thermal_unit_4circ_mathrmc: UnitConstant
|
488
|
+
Btu_39_2_circ_mathrm_F: UnitConstant
|
489
|
+
british_thermal_unit_60circ_mathrmf: UnitConstant
|
490
|
+
Btu_60_circ_mathrm_F: UnitConstant
|
491
|
+
british_thermal_unit_international_steam_tables: UnitConstant
|
492
|
+
Btu_IT: UnitConstant
|
493
|
+
british_thermal_unit_isotc_12: UnitConstant
|
494
|
+
Btu_ISO: UnitConstant
|
495
|
+
british_thermal_unit_mean: UnitConstant
|
496
|
+
Btu_mean_or_Btu: UnitConstant
|
497
|
+
Btu_mean: UnitConstant
|
498
|
+
Btu: UnitConstant
|
499
|
+
british_thermal_unit_thermochemical: UnitConstant
|
500
|
+
Btu_therm: UnitConstant
|
501
|
+
calorie_20circ_mathrmc: UnitConstant
|
502
|
+
cal_20_circ_mathrm_C: UnitConstant
|
503
|
+
calorie_4circ_mathrmc: UnitConstant
|
504
|
+
cal_4_circ_mathrm_C: UnitConstant
|
505
|
+
calorie_international_steam_tables: UnitConstant
|
506
|
+
cal_IT: UnitConstant
|
507
|
+
calorie_mean: UnitConstant
|
508
|
+
cal_mean: UnitConstant
|
509
|
+
calorie_nutritional: UnitConstant
|
510
|
+
Cal_nutr: UnitConstant
|
511
|
+
calorie_thermochemical: UnitConstant
|
512
|
+
cal_therm: UnitConstant
|
513
|
+
celsius_heat_unit: UnitConstant
|
514
|
+
Chu: UnitConstant
|
515
|
+
celsius_heat_unit_15_circ_mathrmc: UnitConstant
|
516
|
+
Chu_15_circ_mathrm_C: UnitConstant
|
517
|
+
electron_volt: UnitConstant
|
518
|
+
eV: UnitConstant
|
519
|
+
erg: UnitConstant
|
520
|
+
foot_pound_force_duty: UnitConstant
|
521
|
+
ft_mathrm_lb_mathrm_f: UnitConstant
|
522
|
+
foot_poundal: UnitConstant
|
523
|
+
ft_pdl: UnitConstant
|
524
|
+
frigorie: UnitConstant
|
525
|
+
fg: UnitConstant
|
526
|
+
hartree_atomic_unit_of_energy: UnitConstant
|
527
|
+
mathrm_E_mathrm_H_a_u: UnitConstant
|
528
|
+
joule: UnitConstant
|
529
|
+
J: UnitConstant
|
530
|
+
joule_international: UnitConstant
|
531
|
+
J_intl: UnitConstant
|
532
|
+
kilocalorie_thermal: UnitConstant
|
533
|
+
kcal_therm: UnitConstant
|
534
|
+
kilogram_force_meter: UnitConstant
|
535
|
+
mathrm_kg_mathrm_f_m: UnitConstant
|
536
|
+
kiloton_tnt: UnitConstant
|
537
|
+
kt_TNT: UnitConstant
|
538
|
+
kilowatt_hour: UnitConstant
|
539
|
+
kWh: UnitConstant
|
540
|
+
liter_atmosphere: UnitConstant
|
541
|
+
L_atm: UnitConstant
|
542
|
+
megaton_tnt: UnitConstant
|
543
|
+
Mt_TNT: UnitConstant
|
544
|
+
pound_centigrade_unit_15circ_mathrmc: UnitConstant
|
545
|
+
pcu_15_circ_mathrm_C: UnitConstant
|
546
|
+
prout: UnitConstant
|
547
|
+
q_unit: UnitConstant
|
548
|
+
Q: UnitConstant
|
549
|
+
quad_quadrillion_btu: UnitConstant
|
550
|
+
quad: UnitConstant
|
551
|
+
rydberg: UnitConstant
|
552
|
+
Ry: UnitConstant
|
553
|
+
therm_eeg: UnitConstant
|
554
|
+
therm_EEG: UnitConstant
|
555
|
+
therm_refineries: UnitConstant
|
556
|
+
therm_refy_or_therm: UnitConstant
|
557
|
+
therm_refy: UnitConstant
|
558
|
+
therm: UnitConstant
|
559
|
+
therm_us: UnitConstant
|
560
|
+
therm_US_or_therm: UnitConstant
|
561
|
+
ton_coal_equivalent: UnitConstant
|
562
|
+
tce_tec: UnitConstant
|
563
|
+
ton_oil_equivalent: UnitConstant
|
564
|
+
toe_tep: UnitConstant
|
565
|
+
kilojoule: UnitConstant
|
566
|
+
kJ: UnitConstant
|
567
|
+
megajoule: UnitConstant
|
568
|
+
MJ: UnitConstant
|
569
|
+
gigajoule: UnitConstant
|
570
|
+
GJ: UnitConstant
|
571
|
+
|
572
|
+
class EnergyPerUnitAreaUnits:
|
573
|
+
"""Unit constants for Energy per Unit Area."""
|
574
|
+
__slots__: tuple[()]
|
575
|
+
|
576
|
+
british_thermal_unit_per_square_foot: UnitConstant
|
577
|
+
mathrm_Btu_mathrm_ft_2_or_Btu_sq_ft: UnitConstant
|
578
|
+
Btu_ft_2: UnitConstant
|
579
|
+
Btu_sq_ft: UnitConstant
|
580
|
+
joule_per_square_meter: UnitConstant
|
581
|
+
mathrm_J_mathrm_m_2: UnitConstant
|
582
|
+
langley: UnitConstant
|
583
|
+
Ly: UnitConstant
|
584
|
+
|
585
|
+
class ForceUnits:
|
586
|
+
"""Unit constants for Force."""
|
587
|
+
__slots__: tuple[()]
|
588
|
+
|
589
|
+
crinal: UnitConstant
|
590
|
+
dyne: UnitConstant
|
591
|
+
dyn: UnitConstant
|
592
|
+
funal: UnitConstant
|
593
|
+
kilogram_force: UnitConstant
|
594
|
+
mathrm_kg_mathrm_f: UnitConstant
|
595
|
+
kip_force: UnitConstant
|
596
|
+
operatorname_kip_mathrm_f: UnitConstant
|
597
|
+
newton: UnitConstant
|
598
|
+
N: UnitConstant
|
599
|
+
ounce_force: UnitConstant
|
600
|
+
mathrm_oz_mathrm_f_or_oz: UnitConstant
|
601
|
+
oz_f: UnitConstant
|
602
|
+
oz: UnitConstant
|
603
|
+
pond: UnitConstant
|
604
|
+
p: UnitConstant
|
605
|
+
pound_force: UnitConstant
|
606
|
+
mathrm_lb_mathrm_f_or_lb: UnitConstant
|
607
|
+
lb_f: UnitConstant
|
608
|
+
lb: UnitConstant
|
609
|
+
poundal: UnitConstant
|
610
|
+
pdl: UnitConstant
|
611
|
+
slug_force: UnitConstant
|
612
|
+
operatorname_slug_f: UnitConstant
|
613
|
+
sth_ne: UnitConstant
|
614
|
+
sn: UnitConstant
|
615
|
+
ton_force_long: UnitConstant
|
616
|
+
LT: UnitConstant
|
617
|
+
ton_force_metric: UnitConstant
|
618
|
+
MT: UnitConstant
|
619
|
+
ton_force_short: UnitConstant
|
620
|
+
T: UnitConstant
|
621
|
+
kilonewton: UnitConstant
|
622
|
+
kN: UnitConstant
|
623
|
+
millinewton: UnitConstant
|
624
|
+
mN: UnitConstant
|
625
|
+
|
626
|
+
class ForceBodyUnits:
|
627
|
+
"""Unit constants for Force (Body)."""
|
628
|
+
__slots__: tuple[()]
|
629
|
+
|
630
|
+
dyne_per_cubic_centimeter: UnitConstant
|
631
|
+
dyn_cc_or_dyn_mathrm_cm_3: UnitConstant
|
632
|
+
dyn_cc: UnitConstant
|
633
|
+
dyn_cm_3: UnitConstant
|
634
|
+
kilogram_force_per_cubic_centimeter: UnitConstant
|
635
|
+
mathrm_kg_mathrm_f_mathrm_cm_3: UnitConstant
|
636
|
+
kilogram_force_per_cubic_meter: UnitConstant
|
637
|
+
mathrm_kg_mathrm_f_mathrm_m_3: UnitConstant
|
638
|
+
newton_per_cubic_meter: UnitConstant
|
639
|
+
mathrm_N_mathrm_m_3: UnitConstant
|
640
|
+
pound_force_per_cubic_foot: UnitConstant
|
641
|
+
mathrm_lb_mathrm_f_mathrm_cft: UnitConstant
|
642
|
+
pound_force_per_cubic_inch: UnitConstant
|
643
|
+
mathrm_lb_mathrm_f_mathrm_cu_mathrm_in: UnitConstant
|
644
|
+
ton_force_per_cubic_foot: UnitConstant
|
645
|
+
ton_mathrm_f_mathrm_cft: UnitConstant
|
646
|
+
|
647
|
+
class ForcePerUnitMassUnits:
|
648
|
+
"""Unit constants for Force per Unit Mass."""
|
649
|
+
__slots__: tuple[()]
|
650
|
+
|
651
|
+
dyne_per_gram: UnitConstant
|
652
|
+
dyn_g: UnitConstant
|
653
|
+
kilogram_force_per_kilogram: UnitConstant
|
654
|
+
mathrm_kg_mathrm_f_mathrm_kg: UnitConstant
|
655
|
+
newton_per_kilogram: UnitConstant
|
656
|
+
N_kg: UnitConstant
|
657
|
+
pound_force_per_pound_mass: UnitConstant
|
658
|
+
mathrm_lb_mathrm_f_mathrm_lb_or_mathrm_lb_mathrm_f_mathrm_lb_mathrm_m: UnitConstant
|
659
|
+
lb_f_lb: UnitConstant
|
660
|
+
lb_f_lb_m: UnitConstant
|
661
|
+
pound_force_per_slug: UnitConstant
|
662
|
+
mathrm_lb_mathrm_f_slug: UnitConstant
|
663
|
+
|
664
|
+
class FrequencyVoltageRatioUnits:
|
665
|
+
"""Unit constants for Frequency Voltage Ratio."""
|
666
|
+
__slots__: tuple[()]
|
667
|
+
|
668
|
+
cycles_per_second_per_volt: UnitConstant
|
669
|
+
cycle_sec_V: UnitConstant
|
670
|
+
hertz_per_volt: UnitConstant
|
671
|
+
Hz_V: UnitConstant
|
672
|
+
terahertz_per_volt: UnitConstant
|
673
|
+
THz_V: UnitConstant
|
674
|
+
|
675
|
+
class FuelConsumptionUnits:
|
676
|
+
"""Unit constants for Fuel Consumption."""
|
677
|
+
__slots__: tuple[()]
|
678
|
+
|
679
|
+
unit_100_km_per_liter: UnitConstant
|
680
|
+
gallons_uk: UnitConstant
|
681
|
+
gal_UK_100_mi: UnitConstant
|
682
|
+
gallons_us: UnitConstant
|
683
|
+
gal_US_100_mi: UnitConstant
|
684
|
+
kilometers_per_gallon_uk: UnitConstant
|
685
|
+
km_gal_UK: UnitConstant
|
686
|
+
kilometers_per_gallon_us: UnitConstant
|
687
|
+
km_gal_US: UnitConstant
|
688
|
+
kilometers_per_liter: UnitConstant
|
689
|
+
km_l: UnitConstant
|
690
|
+
liters_per_100_km: UnitConstant
|
691
|
+
liters_per_kilometer: UnitConstant
|
692
|
+
unit_1_km: UnitConstant
|
693
|
+
meters_per_gallon_uk: UnitConstant
|
694
|
+
m_gal_UK: UnitConstant
|
695
|
+
meters_per_gallon_us: UnitConstant
|
696
|
+
unit_1_gal_US: UnitConstant
|
697
|
+
miles_per_gallon_uk: UnitConstant
|
698
|
+
mi_gal_UK_or_mpg_UK: UnitConstant
|
699
|
+
mi_gal_UK: UnitConstant
|
700
|
+
mpg_UK: UnitConstant
|
701
|
+
miles_per_gallon_us: UnitConstant
|
702
|
+
mi_gal_US_or_mpg_US: UnitConstant
|
703
|
+
mi_gal_US: UnitConstant
|
704
|
+
mpg_US: UnitConstant
|
705
|
+
miles_per_liter: UnitConstant
|
706
|
+
mi_l: UnitConstant
|
707
|
+
|
708
|
+
class HeatOfCombustionUnits:
|
709
|
+
"""Unit constants for Heat of Combustion."""
|
710
|
+
__slots__: tuple[()]
|
711
|
+
|
712
|
+
british_thermal_unit_per_pound: UnitConstant
|
713
|
+
Btu_lb: UnitConstant
|
714
|
+
calorie_per_gram: UnitConstant
|
715
|
+
mathrm_cal_mathrm_g: UnitConstant
|
716
|
+
chu_per_pound: UnitConstant
|
717
|
+
Chu_lb: UnitConstant
|
718
|
+
joule_per_kilogram: UnitConstant
|
719
|
+
J_kg: UnitConstant
|
720
|
+
|
721
|
+
class HeatOfFusionUnits:
|
722
|
+
"""Unit constants for Heat of Fusion."""
|
723
|
+
__slots__: tuple[()]
|
724
|
+
|
725
|
+
british_thermal_unit_mean: UnitConstant
|
726
|
+
Btu_mean_lb: UnitConstant
|
727
|
+
british_thermal_unit_per_pound: UnitConstant
|
728
|
+
calorie_per_gram: UnitConstant
|
729
|
+
chu_per_pound: UnitConstant
|
730
|
+
joule_per_kilogram: UnitConstant
|
731
|
+
|
732
|
+
class HeatOfVaporizationUnits:
|
733
|
+
"""Unit constants for Heat of Vaporization."""
|
734
|
+
__slots__: tuple[()]
|
735
|
+
|
736
|
+
british_thermal_unit_per_pound: UnitConstant
|
737
|
+
calorie_per_gram: UnitConstant
|
738
|
+
chu_per_pound: UnitConstant
|
739
|
+
joule_per_kilogram: UnitConstant
|
740
|
+
|
741
|
+
class HeatTransferCoefficientUnits:
|
742
|
+
"""Unit constants for Heat Transfer Coefficient."""
|
743
|
+
__slots__: tuple[()]
|
744
|
+
|
745
|
+
btu_per_square_foot_per_hour_per_degree_fahrenheit_or_rankine: UnitConstant
|
746
|
+
mathrm_Btu_left_mathrm_ft_2_mathrm_h_circ_mathrm_F_right: UnitConstant
|
747
|
+
watt_per_square_meter_per_degree_celsius_or_kelvin: UnitConstant
|
748
|
+
mathrm_W_left_mathrm_m_2_circ_mathrm_C_right: UnitConstant
|
749
|
+
|
750
|
+
class IlluminanceUnits:
|
751
|
+
"""Unit constants for Illuminance."""
|
752
|
+
__slots__: tuple[()]
|
753
|
+
|
754
|
+
foot_candle: UnitConstant
|
755
|
+
mathrm_ft_mathrm_C_or_mathrm_ft_mathrm_Cd: UnitConstant
|
756
|
+
ft_C: UnitConstant
|
757
|
+
ft_Cd: UnitConstant
|
758
|
+
lux: UnitConstant
|
759
|
+
lx: UnitConstant
|
760
|
+
nox: UnitConstant
|
761
|
+
phot: UnitConstant
|
762
|
+
ph: UnitConstant
|
763
|
+
skot: UnitConstant
|
764
|
+
|
765
|
+
class KineticEnergyOfTurbulenceUnits:
|
766
|
+
"""Unit constants for Kinetic Energy of Turbulence."""
|
767
|
+
__slots__: tuple[()]
|
768
|
+
|
769
|
+
square_foot_per_second_squared: UnitConstant
|
770
|
+
mathrm_ft_2_mathrm_s_2_or_sqft_sec_2: UnitConstant
|
771
|
+
ft_2_s_2: UnitConstant
|
772
|
+
sqft_sec_2: UnitConstant
|
773
|
+
square_meters_per_second_squared: UnitConstant
|
774
|
+
mathrm_m_2_mathrm_s_2: UnitConstant
|
775
|
+
|
776
|
+
class LengthUnits:
|
777
|
+
"""Unit constants for Length."""
|
778
|
+
__slots__: tuple[()]
|
779
|
+
|
780
|
+
ngstr_m: UnitConstant
|
781
|
+
AA: UnitConstant
|
782
|
+
arpent_quebec: UnitConstant
|
783
|
+
astronomic_unit: UnitConstant
|
784
|
+
AU: UnitConstant
|
785
|
+
attometer: UnitConstant
|
786
|
+
am: UnitConstant
|
787
|
+
calibre_centinch: UnitConstant
|
788
|
+
centimeter: UnitConstant
|
789
|
+
cm: UnitConstant
|
790
|
+
chain_engrs_or_ramsden: UnitConstant
|
791
|
+
ch_eng_or_Rams: UnitConstant
|
792
|
+
ch_eng: UnitConstant
|
793
|
+
Rams: UnitConstant
|
794
|
+
chain_gunters: UnitConstant
|
795
|
+
ch_Gunt: UnitConstant
|
796
|
+
chain_surveyors: UnitConstant
|
797
|
+
ch_surv: UnitConstant
|
798
|
+
cubit_uk: UnitConstant
|
799
|
+
cu_UK: UnitConstant
|
800
|
+
ell: UnitConstant
|
801
|
+
fathom: UnitConstant
|
802
|
+
fath: UnitConstant
|
803
|
+
femtometre: UnitConstant
|
804
|
+
fm: UnitConstant
|
805
|
+
fermi: UnitConstant
|
806
|
+
foot: UnitConstant
|
807
|
+
ft: UnitConstant
|
808
|
+
furlong_uk_and_us: UnitConstant
|
809
|
+
fur: UnitConstant
|
810
|
+
inch: UnitConstant
|
811
|
+
in_unit: UnitConstant
|
812
|
+
kilometer: UnitConstant
|
813
|
+
km: UnitConstant
|
814
|
+
league_us_statute: UnitConstant
|
815
|
+
lg_US_stat: UnitConstant
|
816
|
+
lieue_metric: UnitConstant
|
817
|
+
ligne_metric: UnitConstant
|
818
|
+
line_us: UnitConstant
|
819
|
+
li_US: UnitConstant
|
820
|
+
link_surveyors: UnitConstant
|
821
|
+
li_surv: UnitConstant
|
822
|
+
meter: UnitConstant
|
823
|
+
m: UnitConstant
|
824
|
+
micrometer: UnitConstant
|
825
|
+
mu_mathrm_m: UnitConstant
|
826
|
+
micron: UnitConstant
|
827
|
+
mu: UnitConstant
|
828
|
+
mil: UnitConstant
|
829
|
+
mile_geographical: UnitConstant
|
830
|
+
mi: UnitConstant
|
831
|
+
mile_us_nautical: UnitConstant
|
832
|
+
mi_US_naut: UnitConstant
|
833
|
+
mile_us_statute: UnitConstant
|
834
|
+
mile_us_survey: UnitConstant
|
835
|
+
mi_US_surv: UnitConstant
|
836
|
+
millimeter: UnitConstant
|
837
|
+
mm: UnitConstant
|
838
|
+
millimicron: UnitConstant
|
839
|
+
mathrm_m_mu: UnitConstant
|
840
|
+
nanometer_or_nanon: UnitConstant
|
841
|
+
nm: UnitConstant
|
842
|
+
parsec: UnitConstant
|
843
|
+
pc: UnitConstant
|
844
|
+
perche: UnitConstant
|
845
|
+
rod: UnitConstant
|
846
|
+
pica: UnitConstant
|
847
|
+
picometer: UnitConstant
|
848
|
+
pm: UnitConstant
|
849
|
+
point_didot: UnitConstant
|
850
|
+
pt_Didot: UnitConstant
|
851
|
+
point_us: UnitConstant
|
852
|
+
pt_US: UnitConstant
|
853
|
+
rod_or_pole: UnitConstant
|
854
|
+
span: UnitConstant
|
855
|
+
thou_millinch: UnitConstant
|
856
|
+
thou: UnitConstant
|
857
|
+
toise_metric: UnitConstant
|
858
|
+
yard: UnitConstant
|
859
|
+
yd: UnitConstant
|
860
|
+
nanometer: UnitConstant
|
861
|
+
|
862
|
+
class LinearMassDensityUnits:
|
863
|
+
"""Unit constants for Linear Mass Density."""
|
864
|
+
__slots__: tuple[()]
|
865
|
+
|
866
|
+
denier: UnitConstant
|
867
|
+
kilogram_per_centimeter: UnitConstant
|
868
|
+
kg_cm: UnitConstant
|
869
|
+
kilogram_per_meter: UnitConstant
|
870
|
+
kg_m: UnitConstant
|
871
|
+
pound_per_foot: UnitConstant
|
872
|
+
lb_ft: UnitConstant
|
873
|
+
pound_per_inch: UnitConstant
|
874
|
+
lb_in: UnitConstant
|
875
|
+
pound_per_yard: UnitConstant
|
876
|
+
lb_yd: UnitConstant
|
877
|
+
ton_metric: UnitConstant
|
878
|
+
t_km_or_MT_km: UnitConstant
|
879
|
+
t_km: UnitConstant
|
880
|
+
MT_km: UnitConstant
|
881
|
+
ton_metric: UnitConstant
|
882
|
+
t_m_or_MT_m: UnitConstant
|
883
|
+
t_m: UnitConstant
|
884
|
+
MT_m: UnitConstant
|
885
|
+
|
886
|
+
class LinearMomentumUnits:
|
887
|
+
"""Unit constants for Linear Momentum."""
|
888
|
+
__slots__: tuple[()]
|
889
|
+
|
890
|
+
foot_pounds_force_per_hour: UnitConstant
|
891
|
+
mathrm_ft_mathrm_lb_mathrm_f_mathrm_h_or_mathrm_ft_mathrm_lb_mathrm_hr: UnitConstant
|
892
|
+
ft_lb_f_h: UnitConstant
|
893
|
+
ft_lb_hr: UnitConstant
|
894
|
+
foot_pounds_force_per_minute: UnitConstant
|
895
|
+
mathrm_ft_mathrm_lb_mathrm_f_min_or_mathrm_ft_mathrm_lb_min: UnitConstant
|
896
|
+
ft_lb_f_min: UnitConstant
|
897
|
+
ft_lb_min: UnitConstant
|
898
|
+
foot_pounds_force_per_second: UnitConstant
|
899
|
+
mathrm_ft_mathrm_lb_mathrm_f_mathrm_s_or_ft_lb_sec: UnitConstant
|
900
|
+
ft_lb_f_s: UnitConstant
|
901
|
+
ft_lb_sec: UnitConstant
|
902
|
+
gram_centimeters_per_second: UnitConstant
|
903
|
+
mathrm_g_mathrm_cm_mathrm_s: UnitConstant
|
904
|
+
kilogram_meters_per_second: UnitConstant
|
905
|
+
mathrm_kg_mathrm_m_mathrm_s: UnitConstant
|
906
|
+
|
907
|
+
class LuminanceSelfUnits:
|
908
|
+
"""Unit constants for Luminance (self)."""
|
909
|
+
__slots__: tuple[()]
|
910
|
+
|
911
|
+
apostilb: UnitConstant
|
912
|
+
asb: UnitConstant
|
913
|
+
blondel: UnitConstant
|
914
|
+
B1: UnitConstant
|
915
|
+
candela_per_square_meter: UnitConstant
|
916
|
+
mathrm_cd_mathrm_m_2: UnitConstant
|
917
|
+
foot_lambert: UnitConstant
|
918
|
+
ft_L: UnitConstant
|
919
|
+
lambert: UnitConstant
|
920
|
+
L: UnitConstant
|
921
|
+
luxon: UnitConstant
|
922
|
+
nit: UnitConstant
|
923
|
+
stilb: UnitConstant
|
924
|
+
sb: UnitConstant
|
925
|
+
troland: UnitConstant
|
926
|
+
luxon: UnitConstant
|
927
|
+
|
928
|
+
class LuminousFluxUnits:
|
929
|
+
"""Unit constants for Luminous Flux."""
|
930
|
+
__slots__: tuple[()]
|
931
|
+
|
932
|
+
candela_steradian: UnitConstant
|
933
|
+
cd_sr: UnitConstant
|
934
|
+
lumen: UnitConstant
|
935
|
+
|
936
|
+
class LuminousIntensityUnits:
|
937
|
+
"""Unit constants for Luminous Intensity."""
|
938
|
+
__slots__: tuple[()]
|
939
|
+
|
940
|
+
candela: UnitConstant
|
941
|
+
cd: UnitConstant
|
942
|
+
candle_international: UnitConstant
|
943
|
+
Cd_int: UnitConstant
|
944
|
+
carcel: UnitConstant
|
945
|
+
hefner_unit: UnitConstant
|
946
|
+
HK: UnitConstant
|
947
|
+
|
948
|
+
class MagneticFieldUnits:
|
949
|
+
"""Unit constants for Magnetic Field."""
|
950
|
+
__slots__: tuple[()]
|
951
|
+
|
952
|
+
ampere_per_meter: UnitConstant
|
953
|
+
A_m: UnitConstant
|
954
|
+
lenz: UnitConstant
|
955
|
+
oersted: UnitConstant
|
956
|
+
Oe: UnitConstant
|
957
|
+
praoersted: UnitConstant
|
958
|
+
|
959
|
+
class MagneticFluxUnits:
|
960
|
+
"""Unit constants for Magnetic Flux."""
|
961
|
+
__slots__: tuple[()]
|
962
|
+
|
963
|
+
kapp_line: UnitConstant
|
964
|
+
line: UnitConstant
|
965
|
+
maxwell: UnitConstant
|
966
|
+
Mx: UnitConstant
|
967
|
+
unit_pole: UnitConstant
|
968
|
+
weber: UnitConstant
|
969
|
+
Wb: UnitConstant
|
970
|
+
milliweber: UnitConstant
|
971
|
+
mWb: UnitConstant
|
972
|
+
microweber: UnitConstant
|
973
|
+
|
974
|
+
class MagneticInductionFieldStrengthUnits:
|
975
|
+
"""Unit constants for Magnetic Induction Field Strength."""
|
976
|
+
__slots__: tuple[()]
|
977
|
+
|
978
|
+
gamma: UnitConstant
|
979
|
+
gauss: UnitConstant
|
980
|
+
G: UnitConstant
|
981
|
+
line_per_square_centimeter: UnitConstant
|
982
|
+
line_mathrm_cm_2: UnitConstant
|
983
|
+
maxwell_per_square_centimeter: UnitConstant
|
984
|
+
mathrm_Mx_mathrm_cm_2: UnitConstant
|
985
|
+
tesla: UnitConstant
|
986
|
+
u_a: UnitConstant
|
987
|
+
weber_per_square_meter: UnitConstant
|
988
|
+
mathrm_Wb_mathrm_m_2: UnitConstant
|
989
|
+
millitesla: UnitConstant
|
990
|
+
mT: UnitConstant
|
991
|
+
microtesla: UnitConstant
|
992
|
+
nanotesla: UnitConstant
|
993
|
+
nT: UnitConstant
|
994
|
+
|
995
|
+
class MagneticMomentUnits:
|
996
|
+
"""Unit constants for Magnetic Moment."""
|
997
|
+
__slots__: tuple[()]
|
998
|
+
|
999
|
+
bohr_magneton: UnitConstant
|
1000
|
+
Bohr_magneton: UnitConstant
|
1001
|
+
joule_per_tesla: UnitConstant
|
1002
|
+
J_T: UnitConstant
|
1003
|
+
nuclear_magneton: UnitConstant
|
1004
|
+
nucl_Magneton: UnitConstant
|
1005
|
+
|
1006
|
+
class MagneticPermeabilityUnits:
|
1007
|
+
"""Unit constants for Magnetic Permeability."""
|
1008
|
+
__slots__: tuple[()]
|
1009
|
+
|
1010
|
+
henrys_per_meter: UnitConstant
|
1011
|
+
H_m: UnitConstant
|
1012
|
+
newton_per_square_ampere: UnitConstant
|
1013
|
+
N_A_2: UnitConstant
|
1014
|
+
|
1015
|
+
class MagnetomotiveForceUnits:
|
1016
|
+
"""Unit constants for Magnetomotive Force."""
|
1017
|
+
__slots__: tuple[()]
|
1018
|
+
|
1019
|
+
abampere_turn: UnitConstant
|
1020
|
+
ampere: UnitConstant
|
1021
|
+
ampere_turn: UnitConstant
|
1022
|
+
A_turn: UnitConstant
|
1023
|
+
gilbert: UnitConstant
|
1024
|
+
Gb: UnitConstant
|
1025
|
+
kiloampere: UnitConstant
|
1026
|
+
kA: UnitConstant
|
1027
|
+
milliampere: UnitConstant
|
1028
|
+
mA: UnitConstant
|
1029
|
+
microampere: UnitConstant
|
1030
|
+
nanoampere: UnitConstant
|
1031
|
+
nA: UnitConstant
|
1032
|
+
picoampere: UnitConstant
|
1033
|
+
pA: UnitConstant
|
1034
|
+
|
1035
|
+
class MassUnits:
|
1036
|
+
"""Unit constants for Mass."""
|
1037
|
+
__slots__: tuple[()]
|
1038
|
+
|
1039
|
+
slug: UnitConstant
|
1040
|
+
sl: UnitConstant
|
1041
|
+
atomic_mass_unit_12_mathrmc: UnitConstant
|
1042
|
+
mathrm_u_left_12_mathrm_C_right_or_amu: UnitConstant
|
1043
|
+
uleft_12_Cright: UnitConstant
|
1044
|
+
carat_metric: UnitConstant
|
1045
|
+
ct: UnitConstant
|
1046
|
+
cental: UnitConstant
|
1047
|
+
sh_cwt_cH: UnitConstant
|
1048
|
+
centigram: UnitConstant
|
1049
|
+
cg: UnitConstant
|
1050
|
+
clove_uk: UnitConstant
|
1051
|
+
cl: UnitConstant
|
1052
|
+
drachm_apothecary: UnitConstant
|
1053
|
+
dr_ap: UnitConstant
|
1054
|
+
dram_avoirdupois: UnitConstant
|
1055
|
+
dr_av: UnitConstant
|
1056
|
+
dram_troy: UnitConstant
|
1057
|
+
dr_troy: UnitConstant
|
1058
|
+
grain: UnitConstant
|
1059
|
+
gr: UnitConstant
|
1060
|
+
gram: UnitConstant
|
1061
|
+
g: UnitConstant
|
1062
|
+
hundredweight_long_or_gross: UnitConstant
|
1063
|
+
cwt_lg_cwt: UnitConstant
|
1064
|
+
hundredweight_short_or_net: UnitConstant
|
1065
|
+
sh_cwt: UnitConstant
|
1066
|
+
kilogram: UnitConstant
|
1067
|
+
kg: UnitConstant
|
1068
|
+
kip: UnitConstant
|
1069
|
+
microgram: UnitConstant
|
1070
|
+
mu_mathrm_g: UnitConstant
|
1071
|
+
milligram: UnitConstant
|
1072
|
+
mg: UnitConstant
|
1073
|
+
ounce_apothecary: UnitConstant
|
1074
|
+
oz_ap: UnitConstant
|
1075
|
+
ounce_avoirdupois: UnitConstant
|
1076
|
+
ounce_troy: UnitConstant
|
1077
|
+
oz_troy: UnitConstant
|
1078
|
+
pennyweight_troy: UnitConstant
|
1079
|
+
dwt_troy: UnitConstant
|
1080
|
+
pood_russia: UnitConstant
|
1081
|
+
pood: UnitConstant
|
1082
|
+
pound_apothecary: UnitConstant
|
1083
|
+
lb_ap: UnitConstant
|
1084
|
+
pound_avoirdupois: UnitConstant
|
1085
|
+
lb_av: UnitConstant
|
1086
|
+
pound_troy: UnitConstant
|
1087
|
+
lb_troy: UnitConstant
|
1088
|
+
pound_mass: UnitConstant
|
1089
|
+
mathrm_lb_mathrm_m: UnitConstant
|
1090
|
+
quarter_uk: UnitConstant
|
1091
|
+
qt: UnitConstant
|
1092
|
+
quintal_metric: UnitConstant
|
1093
|
+
q_dt: UnitConstant
|
1094
|
+
quital_us: UnitConstant
|
1095
|
+
quint_US: UnitConstant
|
1096
|
+
scruple_avoirdupois: UnitConstant
|
1097
|
+
scf: UnitConstant
|
1098
|
+
stone_uk: UnitConstant
|
1099
|
+
st: UnitConstant
|
1100
|
+
ton_metric: UnitConstant
|
1101
|
+
t: UnitConstant
|
1102
|
+
ton_us_long: UnitConstant
|
1103
|
+
lg_ton: UnitConstant
|
1104
|
+
ton_us_short: UnitConstant
|
1105
|
+
sh_ton: UnitConstant
|
1106
|
+
|
1107
|
+
class MassDensityUnits:
|
1108
|
+
"""Unit constants for Mass Density."""
|
1109
|
+
__slots__: tuple[()]
|
1110
|
+
|
1111
|
+
gram_per_cubic_centimeter: UnitConstant
|
1112
|
+
g_cc_or_g_ml: UnitConstant
|
1113
|
+
g_cc: UnitConstant
|
1114
|
+
g_ml: UnitConstant
|
1115
|
+
gram_per_cubic_decimeter: UnitConstant
|
1116
|
+
mathrm_g_mathrm_dm_3: UnitConstant
|
1117
|
+
gram_per_cubic_meter: UnitConstant
|
1118
|
+
mathrm_g_mathrm_m_3: UnitConstant
|
1119
|
+
gram_per_liter: UnitConstant
|
1120
|
+
mathrm_g_mathrm_l_or_g_L: UnitConstant
|
1121
|
+
g_l: UnitConstant
|
1122
|
+
g_L: UnitConstant
|
1123
|
+
kilogram_per_cubic_meter: UnitConstant
|
1124
|
+
mathrm_kg_mathrm_m_3: UnitConstant
|
1125
|
+
ounce_avdp: UnitConstant
|
1126
|
+
oz_gal: UnitConstant
|
1127
|
+
pound_avdp: UnitConstant
|
1128
|
+
mathrm_lb_mathrm_cu_mathrm_ft_or_lb_ft_3: UnitConstant
|
1129
|
+
lb_cu_ft: UnitConstant
|
1130
|
+
lb_ft_3: UnitConstant
|
1131
|
+
pound_avdp: UnitConstant
|
1132
|
+
lb_gal: UnitConstant
|
1133
|
+
pound_mass: UnitConstant
|
1134
|
+
mathrm_lb_mathrm_cu_in_or_mathrm_lb_mathrm_in_3: UnitConstant
|
1135
|
+
lb_cu_in: UnitConstant
|
1136
|
+
lb_in_3: UnitConstant
|
1137
|
+
ton_metric: UnitConstant
|
1138
|
+
mathrm_t_mathrm_m_3_or_MT_mathrm_m_3: UnitConstant
|
1139
|
+
t_m_3: UnitConstant
|
1140
|
+
MT_m_3: UnitConstant
|
1141
|
+
|
1142
|
+
class MassFlowRateUnits:
|
1143
|
+
"""Unit constants for Mass Flow Rate."""
|
1144
|
+
__slots__: tuple[()]
|
1145
|
+
|
1146
|
+
kilograms_per_day: UnitConstant
|
1147
|
+
kg_d: UnitConstant
|
1148
|
+
kilograms_per_hour: UnitConstant
|
1149
|
+
kg_h: UnitConstant
|
1150
|
+
kilograms_per_minute: UnitConstant
|
1151
|
+
kg_min: UnitConstant
|
1152
|
+
kilograms_per_second: UnitConstant
|
1153
|
+
kg_s: UnitConstant
|
1154
|
+
metric_tons_per_day: UnitConstant
|
1155
|
+
MT_d_or_MTD: UnitConstant
|
1156
|
+
MT_d: UnitConstant
|
1157
|
+
MTD: UnitConstant
|
1158
|
+
metric_tons_per_hour: UnitConstant
|
1159
|
+
MT_h_or_MTD: UnitConstant
|
1160
|
+
MT_h: UnitConstant
|
1161
|
+
metric_tons_per_minute: UnitConstant
|
1162
|
+
metric_tons_per_second: UnitConstant
|
1163
|
+
MT_s: UnitConstant
|
1164
|
+
metric_tons_per_year_365_d: UnitConstant
|
1165
|
+
MT_yr_or_MTY: UnitConstant
|
1166
|
+
MT_yr: UnitConstant
|
1167
|
+
MTY: UnitConstant
|
1168
|
+
pounds_per_day: UnitConstant
|
1169
|
+
mathrm_lb_mathrm_d_or_mathrm_lb_mathrm_da_or_PPD: UnitConstant
|
1170
|
+
lb_d: UnitConstant
|
1171
|
+
lb_da: UnitConstant
|
1172
|
+
PPD: UnitConstant
|
1173
|
+
pounds_per_hour: UnitConstant
|
1174
|
+
mathrm_lb_mathrm_h_or_lb_hr_or_PPH: UnitConstant
|
1175
|
+
lb_h: UnitConstant
|
1176
|
+
lb_hr: UnitConstant
|
1177
|
+
PPH: UnitConstant
|
1178
|
+
pounds_per_minute: UnitConstant
|
1179
|
+
mathrm_lb_mathrm_min_or_PPM: UnitConstant
|
1180
|
+
lb_min: UnitConstant
|
1181
|
+
PPM: UnitConstant
|
1182
|
+
pounds_per_second: UnitConstant
|
1183
|
+
mathrm_lb_mathrm_s_or_lb_sec_or_PPS: UnitConstant
|
1184
|
+
lb_s: UnitConstant
|
1185
|
+
lb_sec: UnitConstant
|
1186
|
+
PPS: UnitConstant
|
1187
|
+
|
1188
|
+
class MassFluxUnits:
|
1189
|
+
"""Unit constants for Mass Flux."""
|
1190
|
+
__slots__: tuple[()]
|
1191
|
+
|
1192
|
+
kilogram_per_square_meter_per_day: UnitConstant
|
1193
|
+
mathrm_kg_left_mathrm_m_2_mathrm_d_right: UnitConstant
|
1194
|
+
kilogram_per_square_meter_per_hour: UnitConstant
|
1195
|
+
mathrm_kg_left_mathrm_m_2_mathrm_h_right: UnitConstant
|
1196
|
+
kilogram_per_square_meter_per_minute: UnitConstant
|
1197
|
+
mathrm_kg_left_mathrm_m_2_mathrm_min_right: UnitConstant
|
1198
|
+
kilogram_per_square_meter_per_second: UnitConstant
|
1199
|
+
mathrm_kg_left_mathrm_m_2_mathrm_s_right: UnitConstant
|
1200
|
+
pound_per_square_foot_per_day: UnitConstant
|
1201
|
+
mathrm_lb_left_mathrm_ft_2_mathrm_d_right_or_lb_sqft_da: UnitConstant
|
1202
|
+
lb_left_ft_2_dright: UnitConstant
|
1203
|
+
lb_sqft_da: UnitConstant
|
1204
|
+
pound_per_square_foot_per_hour: UnitConstant
|
1205
|
+
mathrm_lb_left_mathrm_ft_2_mathrm_h_right_or_lb_sqft_hr: UnitConstant
|
1206
|
+
lb_left_ft_2_hright: UnitConstant
|
1207
|
+
lb_sqft_hr: UnitConstant
|
1208
|
+
pound_per_square_foot_per_minute: UnitConstant
|
1209
|
+
mathrm_lb_left_mathrm_ft_2_min_right_or_lb_sqft_min: UnitConstant
|
1210
|
+
lb_left_ft_2_min_right: UnitConstant
|
1211
|
+
lb_sqft_min: UnitConstant
|
1212
|
+
pound_per_square_foot_per_second: UnitConstant
|
1213
|
+
mathrm_lb_left_mathrm_ft_2_mathrm_s_right_or_lb_sqft_sec: UnitConstant
|
1214
|
+
lb_left_ft_2_sright: UnitConstant
|
1215
|
+
lb_sqft_sec: UnitConstant
|
1216
|
+
|
1217
|
+
class MassFractionOfIUnits:
|
1218
|
+
"""Unit constants for Mass Fraction of "i"."""
|
1219
|
+
__slots__: tuple[()]
|
1220
|
+
|
1221
|
+
grains_of_i_per_pound_total: UnitConstant
|
1222
|
+
mathrm_gr_mathrm_i_mathrm_lb: UnitConstant
|
1223
|
+
gram_of_i_per_kilogram_total: UnitConstant
|
1224
|
+
mathrm_g_mathrm_i_mathrm_kg: UnitConstant
|
1225
|
+
kilogram_of_i_per_kilogram_total: UnitConstant
|
1226
|
+
mathrm_kg_mathrm_i_mathrm_kg: UnitConstant
|
1227
|
+
pound_of_i_per_pound_total: UnitConstant
|
1228
|
+
mathrm_lb_mathrm_i_mathrm_lb: UnitConstant
|
1229
|
+
|
1230
|
+
class MassTransferCoefficientUnits:
|
1231
|
+
"""Unit constants for Mass Transfer Coefficient."""
|
1232
|
+
__slots__: tuple[()]
|
1233
|
+
|
1234
|
+
gram_per_square_centimeter_per_second: UnitConstant
|
1235
|
+
kilogram_per_square_meter_per_second: UnitConstant
|
1236
|
+
pounds_force_per_cubic_foot_per_hour: UnitConstant
|
1237
|
+
mathrm_lb_mathrm_f_mathrm_ft_3_mathrm_h_or_mathrm_lb_mathrm_f_mathrm_cft_mathrm_hr: UnitConstant
|
1238
|
+
lb_f_ft_3_h: UnitConstant
|
1239
|
+
lb_f_cft_hr: UnitConstant
|
1240
|
+
pounds_mass_per_square_foot_per_hour: UnitConstant
|
1241
|
+
lb_ft_2_mathrm_hr_or_lb_sqft_hr: UnitConstant
|
1242
|
+
lb_ft_2_hr: UnitConstant
|
1243
|
+
pounds_mass_per_square_foot_per_second: UnitConstant
|
1244
|
+
|
1245
|
+
class MolalityOfSoluteIUnits:
|
1246
|
+
"""Unit constants for Molality of Solute "i"."""
|
1247
|
+
__slots__: tuple[()]
|
1248
|
+
|
1249
|
+
gram_moles_of_i_per_kilogram: UnitConstant
|
1250
|
+
mathrm_mol_mathrm_i_mathrm_kg: UnitConstant
|
1251
|
+
kilogram_mols_of_i_per_kilogram: UnitConstant
|
1252
|
+
mathrm_kmol_mathrm_i_mathrm_kg: UnitConstant
|
1253
|
+
kmols_of_i_per_kilogram: UnitConstant
|
1254
|
+
mols_of_i_per_gram: UnitConstant
|
1255
|
+
mathrm_mol_mathrm_i_mathrm_g: UnitConstant
|
1256
|
+
pound_moles_of_i_per_pound_mass: UnitConstant
|
1257
|
+
mole_mathrm_i_mathrm_lb_mass: UnitConstant
|
1258
|
+
|
1259
|
+
class MolarConcentrationByMassUnits:
|
1260
|
+
"""Unit constants for Molar Concentration by Mass."""
|
1261
|
+
__slots__: tuple[()]
|
1262
|
+
|
1263
|
+
gram_mole_or_mole_per_gram: UnitConstant
|
1264
|
+
mol_g: UnitConstant
|
1265
|
+
gram_mole_or_mole_per_kilogram: UnitConstant
|
1266
|
+
mol_kg: UnitConstant
|
1267
|
+
kilogram_mole_or_kmol_per_kilogram: UnitConstant
|
1268
|
+
kmol_kg: UnitConstant
|
1269
|
+
micromole_per_gram: UnitConstant
|
1270
|
+
mu_mathrm_mol_mathrm_g: UnitConstant
|
1271
|
+
millimole_per_gram: UnitConstant
|
1272
|
+
mmol_g: UnitConstant
|
1273
|
+
picomole_per_gram: UnitConstant
|
1274
|
+
pmol_g: UnitConstant
|
1275
|
+
pound_mole_per_pound: UnitConstant
|
1276
|
+
mathrm_lb_mathrm_mol_mathrm_lb_or_mole_lb: UnitConstant
|
1277
|
+
lb_mol_lb: UnitConstant
|
1278
|
+
mole_lb: UnitConstant
|
1279
|
+
|
1280
|
+
class MolarFlowRateUnits:
|
1281
|
+
"""Unit constants for Molar Flow Rate."""
|
1282
|
+
__slots__: tuple[()]
|
1283
|
+
|
1284
|
+
gram_mole_per_day: UnitConstant
|
1285
|
+
mol_d: UnitConstant
|
1286
|
+
gram_mole_per_hour: UnitConstant
|
1287
|
+
mol_h: UnitConstant
|
1288
|
+
gram_mole_per_minute: UnitConstant
|
1289
|
+
mol_min: UnitConstant
|
1290
|
+
gram_mole_per_second: UnitConstant
|
1291
|
+
mol_s: UnitConstant
|
1292
|
+
kilogram_mole_or_kmol_per_day: UnitConstant
|
1293
|
+
kmol_d: UnitConstant
|
1294
|
+
kilogram_mole_or_kmol_per_hour: UnitConstant
|
1295
|
+
kmol_h: UnitConstant
|
1296
|
+
kilogram_mole_or_kmol_per_minute: UnitConstant
|
1297
|
+
kmol_min: UnitConstant
|
1298
|
+
kilogram_mole_or_kmol_per_second: UnitConstant
|
1299
|
+
kmol_s: UnitConstant
|
1300
|
+
pound_mole_or_lb_mol_per_day: UnitConstant
|
1301
|
+
lb_mol_d_or_mole_da: UnitConstant
|
1302
|
+
lb_mol_d: UnitConstant
|
1303
|
+
mole_da: UnitConstant
|
1304
|
+
pound_mole_or_lb_mol_per_hour: UnitConstant
|
1305
|
+
lb_mol_h_or_mole_hr: UnitConstant
|
1306
|
+
lb_mol_h: UnitConstant
|
1307
|
+
mole_hr: UnitConstant
|
1308
|
+
pound_mole_or_lb_mol_per_minute: UnitConstant
|
1309
|
+
lb_mol_min_or_mole_min: UnitConstant
|
1310
|
+
lb_mol_min: UnitConstant
|
1311
|
+
mole_min: UnitConstant
|
1312
|
+
pound_mole_or_lb_mol_per_second: UnitConstant
|
1313
|
+
mathrm_lb_mathrm_mol_mathrm_s_or_mole_sec: UnitConstant
|
1314
|
+
lb_mol_s: UnitConstant
|
1315
|
+
mole_sec: UnitConstant
|
1316
|
+
|
1317
|
+
class MolarFluxUnits:
|
1318
|
+
"""Unit constants for Molar Flux."""
|
1319
|
+
__slots__: tuple[()]
|
1320
|
+
|
1321
|
+
kmol_per_square_meter_per_day: UnitConstant
|
1322
|
+
mathrm_kmol_left_mathrm_m_2_mathrm_d_right: UnitConstant
|
1323
|
+
kmol_per_square_meter_per_hour: UnitConstant
|
1324
|
+
mathrm_kmol_left_mathrm_m_2_mathrm_h_right: UnitConstant
|
1325
|
+
kmol_per_square_meter_per_minute: UnitConstant
|
1326
|
+
mathrm_kmol_left_mathrm_m_2_right_amin: UnitConstant
|
1327
|
+
kmol_per_square_meter_per_second: UnitConstant
|
1328
|
+
mathrm_kmol_left_mathrm_m_2_mathrm_s_right: UnitConstant
|
1329
|
+
pound_mole_per_square_foot_per_day: UnitConstant
|
1330
|
+
mathrm_lb_mathrm_mol_left_mathrm_ft_2_mathrm_d_right_or_mole_sqft_da: UnitConstant
|
1331
|
+
lb_mol_left_ft_2_dright: UnitConstant
|
1332
|
+
mole_sqft_da: UnitConstant
|
1333
|
+
pound_mole_per_square_foot_per_hour: UnitConstant
|
1334
|
+
mathrm_lb_mathrm_mol_left_mathrm_ft_2_mathrm_h_right_or_mole_sqft_hr: UnitConstant
|
1335
|
+
lb_mol_left_ft_2_hright: UnitConstant
|
1336
|
+
mole_sqft_hr: UnitConstant
|
1337
|
+
pound_mole_per_square_foot_per_minute: UnitConstant
|
1338
|
+
mathrm_lb_mathrm_mol_left_mathrm_ft_2_mathrm_min_right_or_mole_sqft_min: UnitConstant
|
1339
|
+
lb_mol_left_ft_2_minright: UnitConstant
|
1340
|
+
mole_sqft_min: UnitConstant
|
1341
|
+
pound_mole_per_square_foot_per_second: UnitConstant
|
1342
|
+
mathrm_lb_mathrm_mol_left_mathrm_ft_2_mathrm_s_right_or_mole_sqft_sec: UnitConstant
|
1343
|
+
lb_mol_left_ft_2_sright: UnitConstant
|
1344
|
+
mole_sqft_sec: UnitConstant
|
1345
|
+
|
1346
|
+
class MolarHeatCapacityUnits:
|
1347
|
+
"""Unit constants for Molar Heat Capacity."""
|
1348
|
+
__slots__: tuple[()]
|
1349
|
+
|
1350
|
+
btu_per_pound_mole_per_degree_fahrenheit_or_degree_rankine: UnitConstant
|
1351
|
+
Btu_lb_mol_circ_mathrm_F: UnitConstant
|
1352
|
+
calories_per_gram_mole_per_kelvin_or_degree_celsius: UnitConstant
|
1353
|
+
cal_mol_K: UnitConstant
|
1354
|
+
joule_per_gram_mole_per_kelvin_or_degree_celsius: UnitConstant
|
1355
|
+
J_mol_K: UnitConstant
|
1356
|
+
|
1357
|
+
class MolarityOfIUnits:
|
1358
|
+
"""Unit constants for Molarity of "i"."""
|
1359
|
+
__slots__: tuple[()]
|
1360
|
+
|
1361
|
+
gram_moles_of_i_per_cubic_meter: UnitConstant
|
1362
|
+
mathrm_mol_mathrm_i_mathrm_m_3_or_mathrm_c_mathrm_i: UnitConstant
|
1363
|
+
mol_i_m_3: UnitConstant
|
1364
|
+
c_i: UnitConstant
|
1365
|
+
gram_moles_of_i_per_liter: UnitConstant
|
1366
|
+
mathrm_mol_mathrm_i_mathrm_l: UnitConstant
|
1367
|
+
kilogram_moles_of_i_per_cubic_meter: UnitConstant
|
1368
|
+
mathrm_kmol_mathrm_i_mathrm_m_3: UnitConstant
|
1369
|
+
kilogram_moles_of_i_per_liter: UnitConstant
|
1370
|
+
mathrm_kmol_mathrm_i_mathrm_l: UnitConstant
|
1371
|
+
pound_moles_of_i_per_cubic_foot: UnitConstant
|
1372
|
+
lb_mathrm_mol_mathrm_i_mathrm_ft_3_or_mathrm_mole_mathrm_i_cft: UnitConstant
|
1373
|
+
lb_mol_i_ft_3: UnitConstant
|
1374
|
+
mole_i_cft: UnitConstant
|
1375
|
+
pound_moles_of_i_per_gallon_us: UnitConstant
|
1376
|
+
lb_mathrm_mol_mathrm_i_mathrm_gal_or_mathrm_mole_mathrm_i_gal: UnitConstant
|
1377
|
+
lb_mol_i_gal: UnitConstant
|
1378
|
+
mole_i_gal: UnitConstant
|
1379
|
+
|
1380
|
+
class MoleFractionOfIUnits:
|
1381
|
+
"""Unit constants for Mole Fraction of "i"."""
|
1382
|
+
__slots__: tuple[()]
|
1383
|
+
|
1384
|
+
gram_mole_of_i_per_gram_mole_total: UnitConstant
|
1385
|
+
mathrm_mol_mathrm_i_mathrm_mol: UnitConstant
|
1386
|
+
kilogram_mole_of_i_per_kilogram_mole_total: UnitConstant
|
1387
|
+
mathrm_kmol_mathrm_i_mathrm_kmol: UnitConstant
|
1388
|
+
kilomole_of_i_per_kilomole_total: UnitConstant
|
1389
|
+
pound_mole_of_i_per_pound_mole_total: UnitConstant
|
1390
|
+
lb_mathrm_mol_mathrm_i_mathrm_lb_mathrm_mol: UnitConstant
|
1391
|
+
|
1392
|
+
class MomentOfInertiaUnits:
|
1393
|
+
"""Unit constants for Moment of Inertia."""
|
1394
|
+
__slots__: tuple[()]
|
1395
|
+
|
1396
|
+
gram_force_centimeter_square_second: UnitConstant
|
1397
|
+
mathrm_g_mathrm_f_mathrm_cm_mathrm_s_2: UnitConstant
|
1398
|
+
gram_square_centimeter: UnitConstant
|
1399
|
+
mathrm_g_mathrm_cm_2: UnitConstant
|
1400
|
+
kilogram_force_centimeter_square_second: UnitConstant
|
1401
|
+
mathrm_kg_mathrm_f_mathrm_cm_mathrm_s_2: UnitConstant
|
1402
|
+
kilogram_force_meter_square_second: UnitConstant
|
1403
|
+
mathrm_kg_mathrm_f_mathrm_m_mathrm_s_2: UnitConstant
|
1404
|
+
kilogram_square_centimeter: UnitConstant
|
1405
|
+
mathrm_kg_mathrm_cm_2: UnitConstant
|
1406
|
+
kilogram_square_meter: UnitConstant
|
1407
|
+
mathrm_kg_mathrm_m_2: UnitConstant
|
1408
|
+
ounce_force_inch_square_second: UnitConstant
|
1409
|
+
mathrm_oz_mathrm_f_in_mathrm_s_2: UnitConstant
|
1410
|
+
ounce_mass_square_inch: UnitConstant
|
1411
|
+
oz_in_2: UnitConstant
|
1412
|
+
pound_mass_square_foot: UnitConstant
|
1413
|
+
lb_ft_2_or_lb_sq_ft: UnitConstant
|
1414
|
+
lb_ft_2: UnitConstant
|
1415
|
+
lb_sq_ft: UnitConstant
|
1416
|
+
pound_mass_square_inch: UnitConstant
|
1417
|
+
mathrm_lb_mathrm_in_2: UnitConstant
|
1418
|
+
|
1419
|
+
class MomentumFlowRateUnits:
|
1420
|
+
"""Unit constants for Momentum Flow Rate."""
|
1421
|
+
__slots__: tuple[()]
|
1422
|
+
|
1423
|
+
foot_pounds_per_square_hour: UnitConstant
|
1424
|
+
mathrm_ft_mathrm_lb_mathrm_h_2_or_mathrm_ft_mathrm_lb_mathrm_hr_2: UnitConstant
|
1425
|
+
ft_lb_h_2: UnitConstant
|
1426
|
+
ft_lb_hr_2: UnitConstant
|
1427
|
+
foot_pounds_per_square_minute: UnitConstant
|
1428
|
+
mathrm_ft_mathrm_lb_mathrm_min_2: UnitConstant
|
1429
|
+
foot_pounds_per_square_second: UnitConstant
|
1430
|
+
mathrm_ft_mathrm_lb_mathrm_s_2_or_ft_lb_sec_2: UnitConstant
|
1431
|
+
ft_lb_s_2: UnitConstant
|
1432
|
+
ft_lb_sec_2: UnitConstant
|
1433
|
+
gram_centimeters_per_square_second: UnitConstant
|
1434
|
+
mathrm_g_mathrm_cm_mathrm_s_2: UnitConstant
|
1435
|
+
kilogram_meters_per_square_second: UnitConstant
|
1436
|
+
mathrm_kg_mathrm_m_mathrm_s_2: UnitConstant
|
1437
|
+
|
1438
|
+
class MomentumFluxUnits:
|
1439
|
+
"""Unit constants for Momentum Flux."""
|
1440
|
+
__slots__: tuple[()]
|
1441
|
+
|
1442
|
+
dyne_per_square_centimeter: UnitConstant
|
1443
|
+
dyn_mathrm_cm_2: UnitConstant
|
1444
|
+
gram_per_centimeter_per_square_second: UnitConstant
|
1445
|
+
newton_per_square_meter: UnitConstant
|
1446
|
+
mathrm_N_mathrm_m_2: UnitConstant
|
1447
|
+
pound_force_per_square_foot: UnitConstant
|
1448
|
+
mathrm_lb_mathrm_f_mathrm_sq_mathrm_ft: UnitConstant
|
1449
|
+
pound_mass_per_foot_per_square_second: UnitConstant
|
1450
|
+
mathrm_lb_mathrm_m_mathrm_ft_mathrm_s_2_or_mathrm_lb_mathrm_ft_mathrm_sec_2: UnitConstant
|
1451
|
+
lb_m_ft_s_2: UnitConstant
|
1452
|
+
lb_ft_sec_2: UnitConstant
|
1453
|
+
|
1454
|
+
class NormalityOfSolutionUnits:
|
1455
|
+
"""Unit constants for Normality of Solution."""
|
1456
|
+
__slots__: tuple[()]
|
1457
|
+
|
1458
|
+
gram_equivalents_per_cubic_meter: UnitConstant
|
1459
|
+
mathrm_eq_mathrm_m_3: UnitConstant
|
1460
|
+
gram_equivalents_per_liter: UnitConstant
|
1461
|
+
eq_l: UnitConstant
|
1462
|
+
pound_equivalents_per_cubic_foot: UnitConstant
|
1463
|
+
mathrm_lb_mathrm_eq_mathrm_ft_3_or_lb_eq_cft: UnitConstant
|
1464
|
+
lb_eq_ft_3: UnitConstant
|
1465
|
+
lb_eq_cft: UnitConstant
|
1466
|
+
pound_equivalents_per_gallon: UnitConstant
|
1467
|
+
lb_eq_gal_US: UnitConstant
|
1468
|
+
|
1469
|
+
class ParticleDensityUnits:
|
1470
|
+
"""Unit constants for Particle Density."""
|
1471
|
+
__slots__: tuple[()]
|
1472
|
+
|
1473
|
+
particles_per_cubic_centimeter: UnitConstant
|
1474
|
+
part_cm_3_or_part_cc: UnitConstant
|
1475
|
+
part_cm_3: UnitConstant
|
1476
|
+
part_cc: UnitConstant
|
1477
|
+
particles_per_cubic_foot: UnitConstant
|
1478
|
+
part_mathrm_ft_3_or_part_cft: UnitConstant
|
1479
|
+
part_ft_3: UnitConstant
|
1480
|
+
part_cft: UnitConstant
|
1481
|
+
particles_per_cubic_meter: UnitConstant
|
1482
|
+
part_mathrm_m_3: UnitConstant
|
1483
|
+
particles_per_gallon_us: UnitConstant
|
1484
|
+
part_gal: UnitConstant
|
1485
|
+
particles_per_liter: UnitConstant
|
1486
|
+
part_l: UnitConstant
|
1487
|
+
particles_per_milliliter: UnitConstant
|
1488
|
+
part_ml: UnitConstant
|
1489
|
+
|
1490
|
+
class PercentUnits:
|
1491
|
+
"""Unit constants for Percent."""
|
1492
|
+
__slots__: tuple[()]
|
1493
|
+
|
1494
|
+
percent: UnitConstant
|
1495
|
+
per_mille: UnitConstant
|
1496
|
+
basis_point: UnitConstant
|
1497
|
+
bp: UnitConstant
|
1498
|
+
bps: UnitConstant
|
1499
|
+
|
1500
|
+
class PermeabilityUnits:
|
1501
|
+
"""Unit constants for Permeability."""
|
1502
|
+
__slots__: tuple[()]
|
1503
|
+
|
1504
|
+
darcy: UnitConstant
|
1505
|
+
square_feet: UnitConstant
|
1506
|
+
mathrm_ft_2_or_sq_ft: UnitConstant
|
1507
|
+
square_meters: UnitConstant
|
1508
|
+
|
1509
|
+
class PhotonEmissionRateUnits:
|
1510
|
+
"""Unit constants for Photon Emission Rate."""
|
1511
|
+
__slots__: tuple[()]
|
1512
|
+
|
1513
|
+
rayleigh: UnitConstant
|
1514
|
+
R: UnitConstant
|
1515
|
+
reciprocal_square_meter_second: UnitConstant
|
1516
|
+
|
1517
|
+
class PowerPerUnitMassUnits:
|
1518
|
+
"""Unit constants for Power per Unit Mass or Specific Power."""
|
1519
|
+
__slots__: tuple[()]
|
1520
|
+
|
1521
|
+
british_thermal_unit_per_hour_per_pound_mass: UnitConstant
|
1522
|
+
Btu_h_lb_or_Btu_lb_hr: UnitConstant
|
1523
|
+
Btu_h_lb: UnitConstant
|
1524
|
+
Btu_lb_hr: UnitConstant
|
1525
|
+
calorie_per_second_per_gram: UnitConstant
|
1526
|
+
cal_s_g_or_cal_g_sec: UnitConstant
|
1527
|
+
cal_s_g: UnitConstant
|
1528
|
+
cal_g_sec: UnitConstant
|
1529
|
+
kilocalorie_per_hour_per_kilogram: UnitConstant
|
1530
|
+
kcal_h_kg_or_kcal_kg_hr: UnitConstant
|
1531
|
+
kcal_h_kg: UnitConstant
|
1532
|
+
kcal_kg_hr: UnitConstant
|
1533
|
+
watt_per_kilogram: UnitConstant
|
1534
|
+
W_kg: UnitConstant
|
1535
|
+
|
1536
|
+
class PowerPerUnitVolumeUnits:
|
1537
|
+
"""Unit constants for Power per Unit Volume or Power Density."""
|
1538
|
+
__slots__: tuple[()]
|
1539
|
+
|
1540
|
+
british_thermal_unit_per_hour_per_cubic_foot: UnitConstant
|
1541
|
+
mathrm_Btu_mathrm_h_mathrm_ft_3_or_mathrm_Btu_mathrm_hr_cft: UnitConstant
|
1542
|
+
Btu_h_ft_3: UnitConstant
|
1543
|
+
Btu_hr_cft: UnitConstant
|
1544
|
+
calorie_per_second_per_cubic_centimeter: UnitConstant
|
1545
|
+
mathrm_cal_mathrm_s_mathrm_cm_3_or_mathrm_cal_mathrm_s_mathrm_cc: UnitConstant
|
1546
|
+
cal_s_cm_3: UnitConstant
|
1547
|
+
cal_s_cc: UnitConstant
|
1548
|
+
chu_per_hour_per_cubic_foot: UnitConstant
|
1549
|
+
Chu_h_ft3_or_Chu_hr_cft: UnitConstant
|
1550
|
+
Chu_h_ft3: UnitConstant
|
1551
|
+
Chu_hr_cft: UnitConstant
|
1552
|
+
kilocalorie_per_hour_per_cubic_centimeter: UnitConstant
|
1553
|
+
mathrm_kcal_mathrm_h_mathrm_cm_3_or_mathrm_kcal_hr_cc: UnitConstant
|
1554
|
+
kcal_h_cm_3: UnitConstant
|
1555
|
+
kcal_hr_cc: UnitConstant
|
1556
|
+
kilocalorie_per_hour_per_cubic_foot: UnitConstant
|
1557
|
+
mathrm_kcal_mathrm_h_mathrm_ft_3_or_mathrm_kcal_mathrm_hr_cft: UnitConstant
|
1558
|
+
kcal_h_ft_3: UnitConstant
|
1559
|
+
kcal_hr_cft: UnitConstant
|
1560
|
+
kilocalorie_per_second_per_cubic_centimeter: UnitConstant
|
1561
|
+
kcal_s_cm_3_or_kcal_s_cc: UnitConstant
|
1562
|
+
kcal_s_cm_3: UnitConstant
|
1563
|
+
kcal_s_cc: UnitConstant
|
1564
|
+
watt_per_cubic_meter: UnitConstant
|
1565
|
+
mathrm_W_mathrm_m_3: UnitConstant
|
1566
|
+
|
1567
|
+
class PowerThermalDutyUnits:
|
1568
|
+
"""Unit constants for Power, Thermal Duty."""
|
1569
|
+
__slots__: tuple[()]
|
1570
|
+
|
1571
|
+
abwatt_emu_of_power: UnitConstant
|
1572
|
+
emu: UnitConstant
|
1573
|
+
boiler_horsepower: UnitConstant
|
1574
|
+
HP_boiler: UnitConstant
|
1575
|
+
british_thermal_unit_mean: UnitConstant
|
1576
|
+
Btu_mean_hr_or_Btu_hr: UnitConstant
|
1577
|
+
Btu_mean_hr: UnitConstant
|
1578
|
+
Btu_hr: UnitConstant
|
1579
|
+
british_thermal_unit_mean: UnitConstant
|
1580
|
+
Btu_min_or_Btu_mean_min: UnitConstant
|
1581
|
+
Btu_min: UnitConstant
|
1582
|
+
Btu_mean_min: UnitConstant
|
1583
|
+
british_thermal_unit_thermochemical: UnitConstant
|
1584
|
+
Btu_therm_hr_or_Btu_hr: UnitConstant
|
1585
|
+
Btu_therm_hr: UnitConstant
|
1586
|
+
british_thermal_unit_thermochemical: UnitConstant
|
1587
|
+
mathrm_Btu_mathrm_min_or_Btu_therm_min: UnitConstant
|
1588
|
+
Btu_therm_min: UnitConstant
|
1589
|
+
calorie_mean: UnitConstant
|
1590
|
+
cal_mean_hr: UnitConstant
|
1591
|
+
calorie_thermochemical: UnitConstant
|
1592
|
+
cal_therm_hr: UnitConstant
|
1593
|
+
donkey: UnitConstant
|
1594
|
+
erg_per_second: UnitConstant
|
1595
|
+
erg_s: UnitConstant
|
1596
|
+
foot_pondal_per_second: UnitConstant
|
1597
|
+
ft_pdl_s: UnitConstant
|
1598
|
+
foot_pound_force_per_hour: UnitConstant
|
1599
|
+
mathrm_ft_mathrm_lb_mathrm_f_mathrm_hr: UnitConstant
|
1600
|
+
foot_pound_force_per_minute: UnitConstant
|
1601
|
+
mathrm_ft_mathrm_lb_mathrm_f_min: UnitConstant
|
1602
|
+
foot_pound_force_per_second: UnitConstant
|
1603
|
+
mathrm_ft_mathrm_lb_mathrm_f_mathrm_s: UnitConstant
|
1604
|
+
horsepower_550_mathrmft_mathrmlb_mathrmf_mathrms: UnitConstant
|
1605
|
+
HP: UnitConstant
|
1606
|
+
horsepower_electric: UnitConstant
|
1607
|
+
HP_elect: UnitConstant
|
1608
|
+
horsepower_uk: UnitConstant
|
1609
|
+
HP_UK: UnitConstant
|
1610
|
+
kcal_per_hour: UnitConstant
|
1611
|
+
kcal_hr: UnitConstant
|
1612
|
+
kilogram_force_meter_per_second: UnitConstant
|
1613
|
+
mathrm_kg_mathrm_f_mathrm_m_mathrm_s: UnitConstant
|
1614
|
+
kilowatt: UnitConstant
|
1615
|
+
kW: UnitConstant
|
1616
|
+
megawatt: UnitConstant
|
1617
|
+
MW: UnitConstant
|
1618
|
+
metric_horsepower: UnitConstant
|
1619
|
+
HP_metric: UnitConstant
|
1620
|
+
million_british_thermal_units_per_hour_petroleum: UnitConstant
|
1621
|
+
MMBtu_hr: UnitConstant
|
1622
|
+
million_kilocalorie_per_hour: UnitConstant
|
1623
|
+
MM_kcal_hr: UnitConstant
|
1624
|
+
prony: UnitConstant
|
1625
|
+
ton_of_refrigeration_us: UnitConstant
|
1626
|
+
CTR_US: UnitConstant
|
1627
|
+
ton_or_refrigeration_uk: UnitConstant
|
1628
|
+
CTR_UK: UnitConstant
|
1629
|
+
volt_ampere: UnitConstant
|
1630
|
+
VA: UnitConstant
|
1631
|
+
water_horsepower: UnitConstant
|
1632
|
+
HP_water: UnitConstant
|
1633
|
+
watt: UnitConstant
|
1634
|
+
W: UnitConstant
|
1635
|
+
watt_international_mean: UnitConstant
|
1636
|
+
W_int_mean: UnitConstant
|
1637
|
+
watt_international_us: UnitConstant
|
1638
|
+
watt_int_US: UnitConstant
|
1639
|
+
gigawatt: UnitConstant
|
1640
|
+
GW: UnitConstant
|
1641
|
+
milliwatt: UnitConstant
|
1642
|
+
mW: UnitConstant
|
1643
|
+
microwatt: UnitConstant
|
1644
|
+
|
1645
|
+
class PressureUnits:
|
1646
|
+
"""Unit constants for Pressure."""
|
1647
|
+
__slots__: tuple[()]
|
1648
|
+
|
1649
|
+
atmosphere_standard: UnitConstant
|
1650
|
+
atm: UnitConstant
|
1651
|
+
bar: UnitConstant
|
1652
|
+
barye: UnitConstant
|
1653
|
+
dyne_per_square_centimeter: UnitConstant
|
1654
|
+
foot_of_mercury_60_circ_mathrmf: UnitConstant
|
1655
|
+
ft_Hg_60_circ_mathrm_F: UnitConstant
|
1656
|
+
foot_of_water_60_circ_mathrmf: UnitConstant
|
1657
|
+
ft_mathrm_H_2_mathrm_O_left_60_circ_mathrm_F_right: UnitConstant
|
1658
|
+
gigapascal: UnitConstant
|
1659
|
+
GPa: UnitConstant
|
1660
|
+
hectopascal: UnitConstant
|
1661
|
+
hPa: UnitConstant
|
1662
|
+
inch_of_mercury_60_circ_mathrmf: UnitConstant
|
1663
|
+
in_mathrm_Hg_left_60_circ_mathrm_F_right: UnitConstant
|
1664
|
+
inch_of_water_60_circ_mathrmf: UnitConstant
|
1665
|
+
in_mathrm_H_2_mathrm_O_left_60_circ_mathrm_F_right: UnitConstant
|
1666
|
+
kilogram_force_per_square_centimeter: UnitConstant
|
1667
|
+
at_or_mathrm_kg_mathrm_f_mathrm_cm_2: UnitConstant
|
1668
|
+
at: UnitConstant
|
1669
|
+
kg_f_cm_2: UnitConstant
|
1670
|
+
kilogram_force_per_square_meter: UnitConstant
|
1671
|
+
mathrm_kg_mathrm_f_mathrm_m_2: UnitConstant
|
1672
|
+
kip_force_per_square_inch: UnitConstant
|
1673
|
+
KSI_or_ksi_or_kip_f_mathrm_in_2: UnitConstant
|
1674
|
+
KSI: UnitConstant
|
1675
|
+
ksi: UnitConstant
|
1676
|
+
kip_f_in_2: UnitConstant
|
1677
|
+
megapascal: UnitConstant
|
1678
|
+
MPa: UnitConstant
|
1679
|
+
meter_of_water_4circ_mathrmc: UnitConstant
|
1680
|
+
mathrm_m_mathrm_H_2_mathrm_O_left_4_circ_mathrm_C_right: UnitConstant
|
1681
|
+
microbar: UnitConstant
|
1682
|
+
mu_mathrm_bar: UnitConstant
|
1683
|
+
millibar: UnitConstant
|
1684
|
+
mbar: UnitConstant
|
1685
|
+
millimeter_of_mercury_4circ_mathrmc: UnitConstant
|
1686
|
+
mathrm_mm_mathrm_Hg_left_4_circ_mathrm_C_right: UnitConstant
|
1687
|
+
millimeter_of_water_4circ_mathrmc: UnitConstant
|
1688
|
+
mathrm_mm_mathrm_H_2_mathrm_O_left_4_circ_mathrm_C_right: UnitConstant
|
1689
|
+
newton_per_square_meter: UnitConstant
|
1690
|
+
ounce_force_per_square_inch: UnitConstant
|
1691
|
+
OSI_or_osi_or_mathrm_oz_mathrm_f_mathrm_in_2: UnitConstant
|
1692
|
+
OSI: UnitConstant
|
1693
|
+
osi: UnitConstant
|
1694
|
+
pascal: UnitConstant
|
1695
|
+
Pa: UnitConstant
|
1696
|
+
pi_ze: UnitConstant
|
1697
|
+
pz: UnitConstant
|
1698
|
+
pound_force_per_square_foot: UnitConstant
|
1699
|
+
PSF_or_psf_or_mathrm_lb_mathrm_f_mathrm_ft_2: UnitConstant
|
1700
|
+
psf: UnitConstant
|
1701
|
+
pound_force_per_square_inch: UnitConstant
|
1702
|
+
psi: UnitConstant
|
1703
|
+
torr: UnitConstant
|
1704
|
+
torr_or_mm_Hg_0_circ_C: UnitConstant
|
1705
|
+
mm_Hg_0_circ_C: UnitConstant
|
1706
|
+
kilopascal: UnitConstant
|
1707
|
+
kPa: UnitConstant
|
1708
|
+
|
1709
|
+
class RadiationDoseEquivalentUnits:
|
1710
|
+
"""Unit constants for Radiation Dose Equivalent."""
|
1711
|
+
__slots__: tuple[()]
|
1712
|
+
|
1713
|
+
rem: UnitConstant
|
1714
|
+
sievert: UnitConstant
|
1715
|
+
Sv: UnitConstant
|
1716
|
+
millisievert: UnitConstant
|
1717
|
+
mSv: UnitConstant
|
1718
|
+
microsievert: UnitConstant
|
1719
|
+
|
1720
|
+
class RadiationExposureUnits:
|
1721
|
+
"""Unit constants for Radiation Exposure."""
|
1722
|
+
__slots__: tuple[()]
|
1723
|
+
|
1724
|
+
coulomb_per_kilogram: UnitConstant
|
1725
|
+
C_kg: UnitConstant
|
1726
|
+
d_unit: UnitConstant
|
1727
|
+
D_unit: UnitConstant
|
1728
|
+
pastille_dose_b_unit: UnitConstant
|
1729
|
+
B_unit: UnitConstant
|
1730
|
+
r_entgen: UnitConstant
|
1731
|
+
|
1732
|
+
class RadioactivityUnits:
|
1733
|
+
"""Unit constants for Radioactivity."""
|
1734
|
+
__slots__: tuple[()]
|
1735
|
+
|
1736
|
+
becquerel: UnitConstant
|
1737
|
+
Bq: UnitConstant
|
1738
|
+
curie: UnitConstant
|
1739
|
+
Ci: UnitConstant
|
1740
|
+
mache_unit: UnitConstant
|
1741
|
+
Mache: UnitConstant
|
1742
|
+
rutherford: UnitConstant
|
1743
|
+
Rd: UnitConstant
|
1744
|
+
stat: UnitConstant
|
1745
|
+
kilobecquerel: UnitConstant
|
1746
|
+
kBq: UnitConstant
|
1747
|
+
megabecquerel: UnitConstant
|
1748
|
+
MBq: UnitConstant
|
1749
|
+
gigabecquerel: UnitConstant
|
1750
|
+
GBq: UnitConstant
|
1751
|
+
|
1752
|
+
class SecondMomentOfAreaUnits:
|
1753
|
+
"""Unit constants for Second Moment of Area."""
|
1754
|
+
__slots__: tuple[()]
|
1755
|
+
|
1756
|
+
inch_quadrupled: UnitConstant
|
1757
|
+
in_4: UnitConstant
|
1758
|
+
centimeter_quadrupled: UnitConstant
|
1759
|
+
mathrm_cm_4: UnitConstant
|
1760
|
+
foot_quadrupled: UnitConstant
|
1761
|
+
mathrm_ft_4: UnitConstant
|
1762
|
+
meter_quadrupled: UnitConstant
|
1763
|
+
mathrm_m_4: UnitConstant
|
1764
|
+
|
1765
|
+
class SecondRadiationConstantPlanckUnits:
|
1766
|
+
"""Unit constants for Second Radiation Constant (Planck)."""
|
1767
|
+
__slots__: tuple[()]
|
1768
|
+
|
1769
|
+
meter_kelvin: UnitConstant
|
1770
|
+
m_K: UnitConstant
|
1771
|
+
|
1772
|
+
class SpecificEnthalpyUnits:
|
1773
|
+
"""Unit constants for Specific Enthalpy."""
|
1774
|
+
__slots__: tuple[()]
|
1775
|
+
|
1776
|
+
british_thermal_unit_mean: UnitConstant
|
1777
|
+
british_thermal_unit_per_pound: UnitConstant
|
1778
|
+
calorie_per_gram: UnitConstant
|
1779
|
+
chu_per_pound: UnitConstant
|
1780
|
+
joule_per_kilogram: UnitConstant
|
1781
|
+
kilojoule_per_kilogram: UnitConstant
|
1782
|
+
kJ_kg: UnitConstant
|
1783
|
+
|
1784
|
+
class SpecificGravityUnits:
|
1785
|
+
"""Unit constants for Specific Gravity."""
|
1786
|
+
__slots__: tuple[()]
|
1787
|
+
|
1788
|
+
dimensionless: UnitConstant
|
1789
|
+
Dmls: UnitConstant
|
1790
|
+
|
1791
|
+
class SpecificHeatCapacityConstantPressureUnits:
|
1792
|
+
"""Unit constants for Specific Heat Capacity (Constant Pressure)."""
|
1793
|
+
__slots__: tuple[()]
|
1794
|
+
|
1795
|
+
btu_per_pound_per_degree_fahrenheit_or_degree_rankine: UnitConstant
|
1796
|
+
Btu_lb_circ_mathrm_F: UnitConstant
|
1797
|
+
calories_per_gram_per_kelvin_or_degree_celsius: UnitConstant
|
1798
|
+
cal_g_K: UnitConstant
|
1799
|
+
joules_per_kilogram_per_kelvin_or_degree_celsius: UnitConstant
|
1800
|
+
J_kg_K: UnitConstant
|
1801
|
+
|
1802
|
+
class SpecificLengthUnits:
|
1803
|
+
"""Unit constants for Specific Length."""
|
1804
|
+
__slots__: tuple[()]
|
1805
|
+
|
1806
|
+
centimeter_per_gram: UnitConstant
|
1807
|
+
cm_g: UnitConstant
|
1808
|
+
cotton_count: UnitConstant
|
1809
|
+
ft_per_pound: UnitConstant
|
1810
|
+
ft_lb: UnitConstant
|
1811
|
+
meters_per_kilogram: UnitConstant
|
1812
|
+
m_kg: UnitConstant
|
1813
|
+
newton_meter: UnitConstant
|
1814
|
+
Nm: UnitConstant
|
1815
|
+
worsted: UnitConstant
|
1816
|
+
|
1817
|
+
class SpecificSurfaceUnits:
|
1818
|
+
"""Unit constants for Specific Surface."""
|
1819
|
+
__slots__: tuple[()]
|
1820
|
+
|
1821
|
+
square_centimeter_per_gram: UnitConstant
|
1822
|
+
mathrm_cm_2_mathrm_g: UnitConstant
|
1823
|
+
square_foot_per_kilogram: UnitConstant
|
1824
|
+
mathrm_ft_2_mathrm_kg_or_sq_ft_kg: UnitConstant
|
1825
|
+
ft_2_kg: UnitConstant
|
1826
|
+
sq_ft_kg: UnitConstant
|
1827
|
+
square_foot_per_pound: UnitConstant
|
1828
|
+
mathrm_ft_2_mathrm_lb_or_sq_ft_lb: UnitConstant
|
1829
|
+
ft_2_lb: UnitConstant
|
1830
|
+
sq_ft_lb: UnitConstant
|
1831
|
+
square_meter_per_gram: UnitConstant
|
1832
|
+
mathrm_m_2_mathrm_g: UnitConstant
|
1833
|
+
square_meter_per_kilogram: UnitConstant
|
1834
|
+
mathrm_m_2_mathrm_kg: UnitConstant
|
1835
|
+
|
1836
|
+
class SpecificVolumeUnits:
|
1837
|
+
"""Unit constants for Specific Volume."""
|
1838
|
+
__slots__: tuple[()]
|
1839
|
+
|
1840
|
+
cubic_centimeter_per_gram: UnitConstant
|
1841
|
+
mathrm_cm_3_mathrm_g_or_mathrm_cc_mathrm_g: UnitConstant
|
1842
|
+
cm_3_g: UnitConstant
|
1843
|
+
cc_g: UnitConstant
|
1844
|
+
cubic_foot_per_kilogram: UnitConstant
|
1845
|
+
mathrm_ft_3_mathrm_kg_or_mathrm_cft_mathrm_kg: UnitConstant
|
1846
|
+
ft_3_kg: UnitConstant
|
1847
|
+
cft_kg: UnitConstant
|
1848
|
+
cubic_foot_per_pound: UnitConstant
|
1849
|
+
mathrm_ft_3_mathrm_lb_or_mathrm_cft_mathrm_lb: UnitConstant
|
1850
|
+
ft_3_lb: UnitConstant
|
1851
|
+
cft_lb: UnitConstant
|
1852
|
+
cubic_meter_per_kilogram: UnitConstant
|
1853
|
+
mathrm_m_3_mathrm_kg: UnitConstant
|
1854
|
+
|
1855
|
+
class StressUnits:
|
1856
|
+
"""Unit constants for Stress."""
|
1857
|
+
__slots__: tuple[()]
|
1858
|
+
|
1859
|
+
dyne_per_square_centimeter: UnitConstant
|
1860
|
+
gigapascal: UnitConstant
|
1861
|
+
hectopascal: UnitConstant
|
1862
|
+
kilogram_force_per_square_centimeter: UnitConstant
|
1863
|
+
kilogram_force_per_square_meter: UnitConstant
|
1864
|
+
kip_force_per_square_inch: UnitConstant
|
1865
|
+
megapascal: UnitConstant
|
1866
|
+
newton_per_square_meter: UnitConstant
|
1867
|
+
ounce_force_per_square_inch: UnitConstant
|
1868
|
+
oz_f_in_2: UnitConstant
|
1869
|
+
pascal: UnitConstant
|
1870
|
+
pound_force_per_square_foot: UnitConstant
|
1871
|
+
PSF: UnitConstant
|
1872
|
+
lb_f_ft_2: UnitConstant
|
1873
|
+
pound_force_per_square_inch: UnitConstant
|
1874
|
+
|
1875
|
+
class SurfaceMassDensityUnits:
|
1876
|
+
"""Unit constants for Surface Mass Density."""
|
1877
|
+
__slots__: tuple[()]
|
1878
|
+
|
1879
|
+
gram_per_square_centimeter: UnitConstant
|
1880
|
+
gram_per_square_meter: UnitConstant
|
1881
|
+
mathrm_g_mathrm_m_2: UnitConstant
|
1882
|
+
kilogram_per_square_meter: UnitConstant
|
1883
|
+
pound_mass: UnitConstant
|
1884
|
+
mathrm_lb_mathrm_ft_2: UnitConstant
|
1885
|
+
pound_mass: UnitConstant
|
1886
|
+
|
1887
|
+
class SurfaceTensionUnits:
|
1888
|
+
"""Unit constants for Surface Tension."""
|
1889
|
+
__slots__: tuple[()]
|
1890
|
+
|
1891
|
+
dyne_per_centimeter: UnitConstant
|
1892
|
+
dyn_cm: UnitConstant
|
1893
|
+
gram_force_per_centimeter: UnitConstant
|
1894
|
+
mathrm_g_mathrm_f_mathrm_cm: UnitConstant
|
1895
|
+
newton_per_meter: UnitConstant
|
1896
|
+
N_m: UnitConstant
|
1897
|
+
pound_force_per_foot: UnitConstant
|
1898
|
+
mathrm_lb_mathrm_f_mathrm_ft: UnitConstant
|
1899
|
+
pound_force_per_inch: UnitConstant
|
1900
|
+
mathrm_lb_mathrm_f_mathrm_in: UnitConstant
|
1901
|
+
|
1902
|
+
class TemperatureUnits:
|
1903
|
+
"""Unit constants for Temperature."""
|
1904
|
+
__slots__: tuple[()]
|
1905
|
+
|
1906
|
+
degree_celsius_unit_size: UnitConstant
|
1907
|
+
mathrm_C_circ: UnitConstant
|
1908
|
+
degree_fahrenheit_unit_size: UnitConstant
|
1909
|
+
mathrm_F_circ: UnitConstant
|
1910
|
+
degree_r_aumur_unit_size: UnitConstant
|
1911
|
+
R_circ: UnitConstant
|
1912
|
+
kelvin_absolute_scale: UnitConstant
|
1913
|
+
K: UnitConstant
|
1914
|
+
rankine_absolute_scale: UnitConstant
|
1915
|
+
circ_mathrm_R: UnitConstant
|
1916
|
+
|
1917
|
+
class ThermalConductivityUnits:
|
1918
|
+
"""Unit constants for Thermal Conductivity."""
|
1919
|
+
__slots__: tuple[()]
|
1920
|
+
|
1921
|
+
btu_it: UnitConstant
|
1922
|
+
Btu_IT_in_hr_circ_mathrm_F: UnitConstant
|
1923
|
+
btu_therm: UnitConstant
|
1924
|
+
mathrm_Btu_left_mathrm_ft_mathrm_hr_circ_mathrm_F_right: UnitConstant
|
1925
|
+
btu_therm: UnitConstant
|
1926
|
+
Btu_in_hr_circ_mathrm_F: UnitConstant
|
1927
|
+
calorie_therm: UnitConstant
|
1928
|
+
operatorname_cal_mathrm_IT_left_mathrm_cm_mathrm_s_circ_mathrm_C_right: UnitConstant
|
1929
|
+
joule_per_second_per_centimeter_per_kelvin: UnitConstant
|
1930
|
+
J_cm_s_K: UnitConstant
|
1931
|
+
watt_per_centimeter_per_kelvin: UnitConstant
|
1932
|
+
W_cm_K: UnitConstant
|
1933
|
+
watt_per_meter_per_kelvin: UnitConstant
|
1934
|
+
W_m_K: UnitConstant
|
1935
|
+
|
1936
|
+
class TimeUnits:
|
1937
|
+
"""Unit constants for Time."""
|
1938
|
+
__slots__: tuple[()]
|
1939
|
+
|
1940
|
+
blink: UnitConstant
|
1941
|
+
century: UnitConstant
|
1942
|
+
chronon_or_tempon: UnitConstant
|
1943
|
+
gigan_or_eon: UnitConstant
|
1944
|
+
Ga_or_eon: UnitConstant
|
1945
|
+
Ga: UnitConstant
|
1946
|
+
eon: UnitConstant
|
1947
|
+
hour: UnitConstant
|
1948
|
+
h_or_hr: UnitConstant
|
1949
|
+
h: UnitConstant
|
1950
|
+
hr: UnitConstant
|
1951
|
+
julian_year: UnitConstant
|
1952
|
+
a_jul_or_yr: UnitConstant
|
1953
|
+
a_jul: UnitConstant
|
1954
|
+
yr: UnitConstant
|
1955
|
+
mean_solar_day: UnitConstant
|
1956
|
+
da_or_d: UnitConstant
|
1957
|
+
da: UnitConstant
|
1958
|
+
d: UnitConstant
|
1959
|
+
millenium: UnitConstant
|
1960
|
+
minute: UnitConstant
|
1961
|
+
min: UnitConstant
|
1962
|
+
second: UnitConstant
|
1963
|
+
s: UnitConstant
|
1964
|
+
shake: UnitConstant
|
1965
|
+
sidereal_year_1900_ad: UnitConstant
|
1966
|
+
a_sider_or_yr: UnitConstant
|
1967
|
+
a_sider: UnitConstant
|
1968
|
+
tropical_year: UnitConstant
|
1969
|
+
a_trop: UnitConstant
|
1970
|
+
wink: UnitConstant
|
1971
|
+
year: UnitConstant
|
1972
|
+
a_or_y_or_yr: UnitConstant
|
1973
|
+
y: UnitConstant
|
1974
|
+
millisecond: UnitConstant
|
1975
|
+
ms: UnitConstant
|
1976
|
+
microsecond: UnitConstant
|
1977
|
+
nanosecond: UnitConstant
|
1978
|
+
ns: UnitConstant
|
1979
|
+
picosecond: UnitConstant
|
1980
|
+
ps: UnitConstant
|
1981
|
+
|
1982
|
+
class TorqueUnits:
|
1983
|
+
"""Unit constants for Torque."""
|
1984
|
+
__slots__: tuple[()]
|
1985
|
+
|
1986
|
+
centimeter_kilogram_force: UnitConstant
|
1987
|
+
cm_kg_mathrm_f: UnitConstant
|
1988
|
+
dyne_centimeter: UnitConstant
|
1989
|
+
foot_kilogram_force: UnitConstant
|
1990
|
+
mathrm_ft_mathrm_kg_mathrm_f: UnitConstant
|
1991
|
+
foot_pound_force: UnitConstant
|
1992
|
+
mathrm_ft_mathrm_lb_mathrm_f: UnitConstant
|
1993
|
+
foot_poundal: UnitConstant
|
1994
|
+
in_pound_force: UnitConstant
|
1995
|
+
in_mathrm_lb_mathrm_f: UnitConstant
|
1996
|
+
inch_ounce_force: UnitConstant
|
1997
|
+
in_mathrm_OZ_mathrm_f: UnitConstant
|
1998
|
+
meter_kilogram_force: UnitConstant
|
1999
|
+
mathrm_m_mathrm_kg_mathrm_f: UnitConstant
|
2000
|
+
newton_centimeter: UnitConstant
|
2001
|
+
N_cm: UnitConstant
|
2002
|
+
newton_meter: UnitConstant
|
2003
|
+
|
2004
|
+
class TurbulenceEnergyDissipationRateUnits:
|
2005
|
+
"""Unit constants for Turbulence Energy Dissipation Rate."""
|
2006
|
+
__slots__: tuple[()]
|
2007
|
+
|
2008
|
+
square_foot_per_cubic_second: UnitConstant
|
2009
|
+
mathrm_ft_2_mathrm_s_3_or_sq_ft_sec_3: UnitConstant
|
2010
|
+
ft_2_s_3: UnitConstant
|
2011
|
+
sq_ft_sec_3: UnitConstant
|
2012
|
+
square_meter_per_cubic_second: UnitConstant
|
2013
|
+
mathrm_m_2_mathrm_s_3: UnitConstant
|
2014
|
+
|
2015
|
+
class VelocityAngularUnits:
|
2016
|
+
"""Unit constants for Velocity, Angular."""
|
2017
|
+
__slots__: tuple[()]
|
2018
|
+
|
2019
|
+
degree_per_minute: UnitConstant
|
2020
|
+
deg_min_or_circ_mathrm_min: UnitConstant
|
2021
|
+
deg_min: UnitConstant
|
2022
|
+
circ_min: UnitConstant
|
2023
|
+
degree_per_second: UnitConstant
|
2024
|
+
deg_s_or_circ_s: UnitConstant
|
2025
|
+
deg_s: UnitConstant
|
2026
|
+
circ_s: UnitConstant
|
2027
|
+
grade_per_minute: UnitConstant
|
2028
|
+
gon_min_or_grad_min: UnitConstant
|
2029
|
+
gon_min: UnitConstant
|
2030
|
+
grad_min: UnitConstant
|
2031
|
+
radian_per_minute: UnitConstant
|
2032
|
+
mathrm_rad_mathrm_min: UnitConstant
|
2033
|
+
radian_per_second: UnitConstant
|
2034
|
+
mathrm_rad_mathrm_s: UnitConstant
|
2035
|
+
revolution_per_minute: UnitConstant
|
2036
|
+
rev_m_or_rpm: UnitConstant
|
2037
|
+
rev_m: UnitConstant
|
2038
|
+
rpm: UnitConstant
|
2039
|
+
revolution_per_second: UnitConstant
|
2040
|
+
rev_s_or_rps: UnitConstant
|
2041
|
+
rev_s: UnitConstant
|
2042
|
+
rps: UnitConstant
|
2043
|
+
turn_per_minute: UnitConstant
|
2044
|
+
tr_min: UnitConstant
|
2045
|
+
|
2046
|
+
class VelocityLinearUnits:
|
2047
|
+
"""Unit constants for Velocity, Linear."""
|
2048
|
+
__slots__: tuple[()]
|
2049
|
+
|
2050
|
+
foot_per_hour: UnitConstant
|
2051
|
+
ft_h_or_ft_hr_or_fph: UnitConstant
|
2052
|
+
ft_h: UnitConstant
|
2053
|
+
ft_hr: UnitConstant
|
2054
|
+
fph: UnitConstant
|
2055
|
+
foot_per_minute: UnitConstant
|
2056
|
+
ft_min_or_fpm: UnitConstant
|
2057
|
+
ft_min: UnitConstant
|
2058
|
+
fpm: UnitConstant
|
2059
|
+
foot_per_second: UnitConstant
|
2060
|
+
ft_s_or_fps: UnitConstant
|
2061
|
+
ft_s: UnitConstant
|
2062
|
+
fps: UnitConstant
|
2063
|
+
inch_per_second: UnitConstant
|
2064
|
+
in_s_or_ips: UnitConstant
|
2065
|
+
in_s: UnitConstant
|
2066
|
+
ips: UnitConstant
|
2067
|
+
international_knot: UnitConstant
|
2068
|
+
knot: UnitConstant
|
2069
|
+
kilometer_per_hour: UnitConstant
|
2070
|
+
km_h_ot_kph: UnitConstant
|
2071
|
+
kilometer_per_second: UnitConstant
|
2072
|
+
km_s: UnitConstant
|
2073
|
+
meter_per_second: UnitConstant
|
2074
|
+
mathrm_m_mathrm_s: UnitConstant
|
2075
|
+
mile_per_hour: UnitConstant
|
2076
|
+
mathrm_mi_mathrm_h_or_mathrm_mi_mathrm_hr_or_mph: UnitConstant
|
2077
|
+
mi_h: UnitConstant
|
2078
|
+
mi_hr: UnitConstant
|
2079
|
+
mph: UnitConstant
|
2080
|
+
|
2081
|
+
class ViscosityDynamicUnits:
|
2082
|
+
"""Unit constants for Viscosity, Dynamic."""
|
2083
|
+
__slots__: tuple[()]
|
2084
|
+
|
2085
|
+
centipoise: UnitConstant
|
2086
|
+
cP_or_cPo: UnitConstant
|
2087
|
+
cP: UnitConstant
|
2088
|
+
cPo: UnitConstant
|
2089
|
+
dyne_second_per_square_centimeter: UnitConstant
|
2090
|
+
dyn_s_mathrm_cm_2: UnitConstant
|
2091
|
+
kilopound_second_per_square_meter: UnitConstant
|
2092
|
+
kip_mathrm_s_mathrm_m_2: UnitConstant
|
2093
|
+
millipoise: UnitConstant
|
2094
|
+
mP_or_mPo: UnitConstant
|
2095
|
+
mP: UnitConstant
|
2096
|
+
mPo: UnitConstant
|
2097
|
+
newton_second_per_square_meter: UnitConstant
|
2098
|
+
mathrm_N_mathrm_s_mathrm_m_2: UnitConstant
|
2099
|
+
pascal_second: UnitConstant
|
2100
|
+
Pa_s_or_PI: UnitConstant
|
2101
|
+
Pa_s: UnitConstant
|
2102
|
+
PI: UnitConstant
|
2103
|
+
poise: UnitConstant
|
2104
|
+
P_or_Po: UnitConstant
|
2105
|
+
P: UnitConstant
|
2106
|
+
Po: UnitConstant
|
2107
|
+
pound_force_hour_per_square_foot: UnitConstant
|
2108
|
+
mathrm_lb_mathrm_f_mathrm_h_mathrm_ft_2_or_mathrm_lb_mathrm_hr_mathrm_sq_ft: UnitConstant
|
2109
|
+
lb_f_h_ft_2: UnitConstant
|
2110
|
+
lb_hr_sq_ft: UnitConstant
|
2111
|
+
pound_force_second_per_square_foot: UnitConstant
|
2112
|
+
mathrm_lb_mathrm_f_mathrm_s_mathrm_ft_2_or_mathrm_lb_mathrm_sec_mathrm_sq_ft: UnitConstant
|
2113
|
+
lb_f_s_ft_2: UnitConstant
|
2114
|
+
lb_sec_sq_ft: UnitConstant
|
2115
|
+
|
2116
|
+
class ViscosityKinematicUnits:
|
2117
|
+
"""Unit constants for Viscosity, Kinematic."""
|
2118
|
+
__slots__: tuple[()]
|
2119
|
+
|
2120
|
+
centistokes: UnitConstant
|
2121
|
+
cSt: UnitConstant
|
2122
|
+
millistokes: UnitConstant
|
2123
|
+
mSt: UnitConstant
|
2124
|
+
square_centimeter_per_second: UnitConstant
|
2125
|
+
mathrm_cm_2_mathrm_s: UnitConstant
|
2126
|
+
square_foot_per_hour: UnitConstant
|
2127
|
+
mathrm_ft_2_mathrm_h_or_mathrm_ft_2_mathrm_hr: UnitConstant
|
2128
|
+
ft_2_h: UnitConstant
|
2129
|
+
ft_2_hr: UnitConstant
|
2130
|
+
square_foot_per_second: UnitConstant
|
2131
|
+
mathrm_ft_2_mathrm_s: UnitConstant
|
2132
|
+
square_meters_per_second: UnitConstant
|
2133
|
+
mathrm_m_2_mathrm_s: UnitConstant
|
2134
|
+
stokes: UnitConstant
|
2135
|
+
St: UnitConstant
|
2136
|
+
|
2137
|
+
class VolumeUnits:
|
2138
|
+
"""Unit constants for Volume."""
|
2139
|
+
__slots__: tuple[()]
|
2140
|
+
|
2141
|
+
acre_foot: UnitConstant
|
2142
|
+
ac_ft: UnitConstant
|
2143
|
+
acre_inch: UnitConstant
|
2144
|
+
ac_in: UnitConstant
|
2145
|
+
barrel_us_liquid: UnitConstant
|
2146
|
+
bbl_US_liq: UnitConstant
|
2147
|
+
barrel_us_petro: UnitConstant
|
2148
|
+
bbl: UnitConstant
|
2149
|
+
board_foot_measure: UnitConstant
|
2150
|
+
BM_or_fbm: UnitConstant
|
2151
|
+
BM: UnitConstant
|
2152
|
+
fbm: UnitConstant
|
2153
|
+
bushel_us_dry: UnitConstant
|
2154
|
+
bu_US_dry: UnitConstant
|
2155
|
+
centiliter: UnitConstant
|
2156
|
+
cl_or_cL: UnitConstant
|
2157
|
+
cL: UnitConstant
|
2158
|
+
cord: UnitConstant
|
2159
|
+
cord_or_cd: UnitConstant
|
2160
|
+
cord_foot: UnitConstant
|
2161
|
+
cord_ft: UnitConstant
|
2162
|
+
cubic_centimeter: UnitConstant
|
2163
|
+
mathrm_cm_3_or_cc: UnitConstant
|
2164
|
+
cm_3: UnitConstant
|
2165
|
+
cubic_decameter: UnitConstant
|
2166
|
+
dam_3: UnitConstant
|
2167
|
+
cubic_decimeter: UnitConstant
|
2168
|
+
mathrm_dm_3: UnitConstant
|
2169
|
+
cubic_foot: UnitConstant
|
2170
|
+
cu_ft_or_ft_3: UnitConstant
|
2171
|
+
cu_ft: UnitConstant
|
2172
|
+
ft_3: UnitConstant
|
2173
|
+
cubic_inch: UnitConstant
|
2174
|
+
cu_in_or_mathrm_in_3: UnitConstant
|
2175
|
+
cu_in: UnitConstant
|
2176
|
+
in_3: UnitConstant
|
2177
|
+
cubic_kilometer: UnitConstant
|
2178
|
+
mathrm_km_3: UnitConstant
|
2179
|
+
cubic_meter: UnitConstant
|
2180
|
+
mathrm_m_3: UnitConstant
|
2181
|
+
cubic_micrometer: UnitConstant
|
2182
|
+
mu_mathrm_m_3: UnitConstant
|
2183
|
+
cubic_mile_us_intl: UnitConstant
|
2184
|
+
cu_mi: UnitConstant
|
2185
|
+
cubic_millimeter: UnitConstant
|
2186
|
+
mathrm_mm_3: UnitConstant
|
2187
|
+
cubic_yard: UnitConstant
|
2188
|
+
cu_yd_or_mathrm_yd_3: UnitConstant
|
2189
|
+
cu_yd: UnitConstant
|
2190
|
+
yd_3: UnitConstant
|
2191
|
+
decast_re: UnitConstant
|
2192
|
+
dast: UnitConstant
|
2193
|
+
deciliter: UnitConstant
|
2194
|
+
dl_or_dL: UnitConstant
|
2195
|
+
dl: UnitConstant
|
2196
|
+
dL: UnitConstant
|
2197
|
+
fluid_drachm_uk: UnitConstant
|
2198
|
+
fl_dr_UK: UnitConstant
|
2199
|
+
fluid_dram_us: UnitConstant
|
2200
|
+
fl_dr_US_liq: UnitConstant
|
2201
|
+
fluid_ounce_us: UnitConstant
|
2202
|
+
fl_oz: UnitConstant
|
2203
|
+
gallon_imperial_uk: UnitConstant
|
2204
|
+
gal_UK_or_Imp_gal: UnitConstant
|
2205
|
+
gal_UK: UnitConstant
|
2206
|
+
Imp_gal: UnitConstant
|
2207
|
+
gallon_us_dry: UnitConstant
|
2208
|
+
gal_US_dry: UnitConstant
|
2209
|
+
gallon_us_liquid: UnitConstant
|
2210
|
+
gal: UnitConstant
|
2211
|
+
last: UnitConstant
|
2212
|
+
liter: UnitConstant
|
2213
|
+
unit_1_or_L: UnitConstant
|
2214
|
+
unit_1: UnitConstant
|
2215
|
+
microliter: UnitConstant
|
2216
|
+
mu_mathrm_l_or_mu_mathrm_L: UnitConstant
|
2217
|
+
mu_l: UnitConstant
|
2218
|
+
mu_L: UnitConstant
|
2219
|
+
milliliter: UnitConstant
|
2220
|
+
ml: UnitConstant
|
2221
|
+
mohr_centicube: UnitConstant
|
2222
|
+
pint_uk: UnitConstant
|
2223
|
+
pt_UK: UnitConstant
|
2224
|
+
pint_us_dry: UnitConstant
|
2225
|
+
pt_US_dry: UnitConstant
|
2226
|
+
pint_us_liquid: UnitConstant
|
2227
|
+
pt: UnitConstant
|
2228
|
+
quart_us_dry: UnitConstant
|
2229
|
+
qt_US_dry: UnitConstant
|
2230
|
+
st_re: UnitConstant
|
2231
|
+
tablespoon_metric: UnitConstant
|
2232
|
+
tbsp_Metric: UnitConstant
|
2233
|
+
tablespoon_us: UnitConstant
|
2234
|
+
tbsp: UnitConstant
|
2235
|
+
teaspoon_us: UnitConstant
|
2236
|
+
tsp: UnitConstant
|
2237
|
+
|
2238
|
+
class VolumeFractionOfIUnits:
|
2239
|
+
"""Unit constants for Volume Fraction of "i"."""
|
2240
|
+
__slots__: tuple[()]
|
2241
|
+
|
2242
|
+
cubic_centimeters_of_i_per_cubic_meter_total: UnitConstant
|
2243
|
+
mathrm_cm_mathrm_i_3_mathrm_m_3_or_mathrm_cc_mathrm_i_mathrm_m_3: UnitConstant
|
2244
|
+
cm_i_3_m_3: UnitConstant
|
2245
|
+
cc_i_m_3: UnitConstant
|
2246
|
+
cubic_foot_of_i_per_cubic_foot_total: UnitConstant
|
2247
|
+
mathrm_ft_mathrm_i_3_mathrm_ft_3_or_mathrm_cft_mathrm_i_mathrm_cft: UnitConstant
|
2248
|
+
ft_i_3_ft_3: UnitConstant
|
2249
|
+
cft_i_cft: UnitConstant
|
2250
|
+
cubic_meters_of_i_per_cubic_meter_total: UnitConstant
|
2251
|
+
mathrm_m_mathrm_i_3_mathrm_m_3: UnitConstant
|
2252
|
+
gallons_of_i_per_gallon_total: UnitConstant
|
2253
|
+
mathrm_gal_mathrm_i_mathrm_gal: UnitConstant
|
2254
|
+
|
2255
|
+
class VolumetricCalorificHeatingValueUnits:
|
2256
|
+
"""Unit constants for Volumetric Calorific (Heating) Value."""
|
2257
|
+
__slots__: tuple[()]
|
2258
|
+
|
2259
|
+
british_thermal_unit_per_cubic_foot: UnitConstant
|
2260
|
+
mathrm_Btu_mathrm_ft_3_or_Btu_cft: UnitConstant
|
2261
|
+
Btu_ft_3: UnitConstant
|
2262
|
+
Btu_cft: UnitConstant
|
2263
|
+
british_thermal_unit_per_gallon_uk: UnitConstant
|
2264
|
+
Btu_gal_UK: UnitConstant
|
2265
|
+
british_thermal_unit_per_gallon_us: UnitConstant
|
2266
|
+
Btu_gal_US: UnitConstant
|
2267
|
+
calorie_per_cubic_centimeter: UnitConstant
|
2268
|
+
mathrm_cal_mathrm_cm_3_or_mathrm_cal_mathrm_cc: UnitConstant
|
2269
|
+
cal_cm_3: UnitConstant
|
2270
|
+
cal_cc: UnitConstant
|
2271
|
+
chu_per_cubic_foot: UnitConstant
|
2272
|
+
mathrm_Chu_mathrm_ft_3_or_mathrm_Chu_mathrm_cft: UnitConstant
|
2273
|
+
Chu_ft_3: UnitConstant
|
2274
|
+
Chu_cft: UnitConstant
|
2275
|
+
joule_per_cubic_meter: UnitConstant
|
2276
|
+
mathrm_J_mathrm_m_3: UnitConstant
|
2277
|
+
kilocalorie_per_cubic_foot: UnitConstant
|
2278
|
+
mathrm_kcal_mathrm_ft_3_or_mathrm_kcal_mathrm_cft: UnitConstant
|
2279
|
+
kcal_ft_3: UnitConstant
|
2280
|
+
kcal_cft: UnitConstant
|
2281
|
+
kilocalorie_per_cubic_meter: UnitConstant
|
2282
|
+
mathrm_kcal_mathrm_m_3: UnitConstant
|
2283
|
+
therm_100_k_btu: UnitConstant
|
2284
|
+
thm_cft: UnitConstant
|
2285
|
+
|
2286
|
+
class VolumetricCoefficientOfExpansionUnits:
|
2287
|
+
"""Unit constants for Volumetric Coefficient of Expansion."""
|
2288
|
+
__slots__: tuple[()]
|
2289
|
+
|
2290
|
+
gram_per_cubic_centimeter_per_kelvin_or_degree_celsius: UnitConstant
|
2291
|
+
mathrm_g_mathrm_cm_3_mathrm_K_or_g_cc_circ_mathrm_C: UnitConstant
|
2292
|
+
g_cm_3_K: UnitConstant
|
2293
|
+
g_cc_circ_C: UnitConstant
|
2294
|
+
kilogram_per_cubic_meter_per_kelvin_or_degree_celsius: UnitConstant
|
2295
|
+
mathrm_kg_mathrm_m_3_mathrm_K_or_mathrm_kg_mathrm_m_3_circ_C: UnitConstant
|
2296
|
+
kg_m_3_K: UnitConstant
|
2297
|
+
kg_m_3_circ_C: UnitConstant
|
2298
|
+
pound_per_cubic_foot_per_degree_fahrenheit_or_degree_rankine: UnitConstant
|
2299
|
+
mathrm_lb_mathrm_ft_3_circ_mathrm_R_or_mathrm_lb_mathrm_cft_circ_mathrm_F: UnitConstant
|
2300
|
+
lb_ft_3_circ_R: UnitConstant
|
2301
|
+
lb_cft_circ_F: UnitConstant
|
2302
|
+
pound_per_cubic_foot_per_kelvin_or_degree_celsius: UnitConstant
|
2303
|
+
mathrm_lb_mathrm_ft_3_mathrm_K_or_mathrm_lb_mathrm_cft_circ_mathrm_C: UnitConstant
|
2304
|
+
lb_ft_3_K: UnitConstant
|
2305
|
+
lb_cft_circ_C: UnitConstant
|
2306
|
+
|
2307
|
+
class VolumetricFlowRateUnits:
|
2308
|
+
"""Unit constants for Volumetric Flow Rate."""
|
2309
|
+
__slots__: tuple[()]
|
2310
|
+
|
2311
|
+
cubic_feet_per_day: UnitConstant
|
2312
|
+
mathrm_ft_3_mathrm_d_or_mathrm_cft_mathrm_da_or_cfd: UnitConstant
|
2313
|
+
ft_3_d: UnitConstant
|
2314
|
+
cft_da: UnitConstant
|
2315
|
+
cfd: UnitConstant
|
2316
|
+
cubic_feet_per_hour: UnitConstant
|
2317
|
+
mathrm_ft_3_mathrm_h_or_mathrm_cft_mathrm_hr_or_cfh: UnitConstant
|
2318
|
+
ft_3_h: UnitConstant
|
2319
|
+
cft_hr: UnitConstant
|
2320
|
+
cfh: UnitConstant
|
2321
|
+
cubic_feet_per_minute: UnitConstant
|
2322
|
+
mathrm_ft_3_mathrm_min_or_mathrm_cft_mathrm_min_or_cfm: UnitConstant
|
2323
|
+
ft_3_min: UnitConstant
|
2324
|
+
cft_min: UnitConstant
|
2325
|
+
cfm: UnitConstant
|
2326
|
+
cubic_feet_per_second: UnitConstant
|
2327
|
+
mathrm_ft_3_mathrm_s_or_cft_sec_or_cfs: UnitConstant
|
2328
|
+
ft_3_s: UnitConstant
|
2329
|
+
cft_sec: UnitConstant
|
2330
|
+
cfs: UnitConstant
|
2331
|
+
cubic_meters_per_day: UnitConstant
|
2332
|
+
mathrm_m_3_mathrm_d: UnitConstant
|
2333
|
+
cubic_meters_per_hour: UnitConstant
|
2334
|
+
mathrm_m_3_mathrm_h: UnitConstant
|
2335
|
+
cubic_meters_per_minute: UnitConstant
|
2336
|
+
mathrm_m_3_min: UnitConstant
|
2337
|
+
cubic_meters_per_second: UnitConstant
|
2338
|
+
mathrm_m_3_mathrm_s: UnitConstant
|
2339
|
+
gallons_per_day: UnitConstant
|
2340
|
+
gal_d_or_gpd_or_gal_da: UnitConstant
|
2341
|
+
gal_d: UnitConstant
|
2342
|
+
gpd: UnitConstant
|
2343
|
+
gal_da: UnitConstant
|
2344
|
+
gallons_per_hour: UnitConstant
|
2345
|
+
gal_h_or_gph_or_gal_hr: UnitConstant
|
2346
|
+
gal_h: UnitConstant
|
2347
|
+
gph: UnitConstant
|
2348
|
+
gal_hr: UnitConstant
|
2349
|
+
gallons_per_minute: UnitConstant
|
2350
|
+
gal_min_or_gpm: UnitConstant
|
2351
|
+
gal_min: UnitConstant
|
2352
|
+
gpm: UnitConstant
|
2353
|
+
gallons_per_second: UnitConstant
|
2354
|
+
gal_s_or_gps_or_gal_sec: UnitConstant
|
2355
|
+
gal_s: UnitConstant
|
2356
|
+
gps: UnitConstant
|
2357
|
+
gal_sec: UnitConstant
|
2358
|
+
liters_per_day: UnitConstant
|
2359
|
+
unit_1_d: UnitConstant
|
2360
|
+
liters_per_hour: UnitConstant
|
2361
|
+
unit_1_h: UnitConstant
|
2362
|
+
liters_per_minute: UnitConstant
|
2363
|
+
liters_per_second: UnitConstant
|
2364
|
+
unit_1_s: UnitConstant
|
2365
|
+
|
2366
|
+
class VolumetricFluxUnits:
|
2367
|
+
"""Unit constants for Volumetric Flux."""
|
2368
|
+
__slots__: tuple[()]
|
2369
|
+
|
2370
|
+
cubic_feet_per_square_foot_per_day: UnitConstant
|
2371
|
+
mathrm_ft_3_left_mathrm_ft_2_mathrm_d_right_or_mathrm_cft_mathrm_sqft_da: UnitConstant
|
2372
|
+
ft_3_left_ft_2_dright: UnitConstant
|
2373
|
+
cft_sqft_da: UnitConstant
|
2374
|
+
cubic_feet_per_square_foot_per_hour: UnitConstant
|
2375
|
+
mathrm_ft_3_left_mathrm_ft_2_mathrm_h_right_or_mathrm_cft_mathrm_sqft_hr: UnitConstant
|
2376
|
+
ft_3_left_ft_2_hright: UnitConstant
|
2377
|
+
cft_sqft_hr: UnitConstant
|
2378
|
+
cubic_feet_per_square_foot_per_minute: UnitConstant
|
2379
|
+
mathrm_ft_3_left_mathrm_ft_2_min_right_or_mathrm_cft_sqft_min: UnitConstant
|
2380
|
+
ft_3_left_ft_2_min_right: UnitConstant
|
2381
|
+
cft_sqft_min: UnitConstant
|
2382
|
+
cubic_feet_per_square_foot_per_second: UnitConstant
|
2383
|
+
mathrm_ft_3_left_mathrm_ft_2_mathrm_s_right_or_cft_sqft_sec: UnitConstant
|
2384
|
+
ft_3_left_ft_2_sright: UnitConstant
|
2385
|
+
cft_sqft_sec: UnitConstant
|
2386
|
+
cubic_meters_per_square_meter_per_day: UnitConstant
|
2387
|
+
mathrm_m_3_left_mathrm_m_2_mathrm_d_right: UnitConstant
|
2388
|
+
cubic_meters_per_square_meter_per_hour: UnitConstant
|
2389
|
+
mathrm_m_3_left_mathrm_m_2_mathrm_h_right: UnitConstant
|
2390
|
+
cubic_meters_per_square_meter_per_minute: UnitConstant
|
2391
|
+
mathrm_m_3_left_mathrm_m_2_mathrm_min_right: UnitConstant
|
2392
|
+
cubic_meters_per_square_meter_per_second: UnitConstant
|
2393
|
+
mathrm_m_3_left_mathrm_m_2_mathrm_s_right: UnitConstant
|
2394
|
+
gallons_per_square_foot_per_day: UnitConstant
|
2395
|
+
mathrm_gal_left_mathrm_ft_2_mathrm_d_right_or_gal_sqft_da: UnitConstant
|
2396
|
+
gal_left_ft_2_dright: UnitConstant
|
2397
|
+
gal_sqft_da: UnitConstant
|
2398
|
+
gallons_per_square_foot_per_hour: UnitConstant
|
2399
|
+
mathrm_gal_left_mathrm_ft_2_mathrm_h_right_or_gal_sqft_hr: UnitConstant
|
2400
|
+
gal_left_ft_2_hright: UnitConstant
|
2401
|
+
gal_sqft_hr: UnitConstant
|
2402
|
+
gallons_per_square_foot_per_minute: UnitConstant
|
2403
|
+
mathrm_gal_left_mathrm_ft_2_mathrm_min_right_or_gal_sqft_min_or_gpm_sqft: UnitConstant
|
2404
|
+
gal_left_ft_2_minright: UnitConstant
|
2405
|
+
gal_sqft_min: UnitConstant
|
2406
|
+
gpm_sqft: UnitConstant
|
2407
|
+
gallons_per_square_foot_per_second: UnitConstant
|
2408
|
+
mathrm_gal_left_mathrm_ft_2_mathrm_s_right_or_gal_mathrm_sqft_mathrm_sec: UnitConstant
|
2409
|
+
gal_left_ft_2_sright: UnitConstant
|
2410
|
+
gal_sqft_sec: UnitConstant
|
2411
|
+
liters_per_square_meter_per_day: UnitConstant
|
2412
|
+
liters_per_square_meter_per_hour: UnitConstant
|
2413
|
+
liters_per_square_meter_per_minute: UnitConstant
|
2414
|
+
liters_per_square_meter_per_second: UnitConstant
|
2415
|
+
|
2416
|
+
class VolumetricMassFlowRateUnits:
|
2417
|
+
"""Unit constants for Volumetric Mass Flow Rate."""
|
2418
|
+
__slots__: tuple[()]
|
2419
|
+
|
2420
|
+
gram_per_second_per_cubic_centimeter: UnitConstant
|
2421
|
+
mathrm_g_left_mathrm_s_mathrm_cm_3_right_or_g_s_cc_or_mathrm_g_mathrm_cc_mathrm_sec: UnitConstant
|
2422
|
+
g_left_s_cm_3right: UnitConstant
|
2423
|
+
g_s_cc: UnitConstant
|
2424
|
+
g_cc_sec: UnitConstant
|
2425
|
+
kilogram_per_hour_per_cubic_foot: UnitConstant
|
2426
|
+
kg_h_ft_3_or_kg_hr_cft: UnitConstant
|
2427
|
+
kg_h_ft_3: UnitConstant
|
2428
|
+
kg_hr_cft: UnitConstant
|
2429
|
+
kilogram_per_hour_per_cubic_meter: UnitConstant
|
2430
|
+
kg_h_m3_or_kg_hr_cu_m: UnitConstant
|
2431
|
+
kg_h_m3: UnitConstant
|
2432
|
+
kg_hr_cu_m: UnitConstant
|
2433
|
+
kilogram_per_second_per_cubic_meter: UnitConstant
|
2434
|
+
mathrm_kg_left_mathrm_s_mathrm_m_3_right_or_kg_sec_cu_m: UnitConstant
|
2435
|
+
kg_left_s_m_3right: UnitConstant
|
2436
|
+
kg_sec_cu_m: UnitConstant
|
2437
|
+
pound_per_hour_per_cubic_foot: UnitConstant
|
2438
|
+
mathrm_lb_left_mathrm_h_mathrm_ft_3_right_or_mathrm_lb_mathrm_hr_mathrm_cft_or_PPH_cft: UnitConstant
|
2439
|
+
lb_left_h_ft_3right: UnitConstant
|
2440
|
+
lb_hr_cft: UnitConstant
|
2441
|
+
PPH_cft: UnitConstant
|
2442
|
+
pound_per_minute_per_cubic_foot: UnitConstant
|
2443
|
+
lb_min_mathrm_ft_3_or_lb_mathrm_min_mathrm_cft: UnitConstant
|
2444
|
+
lb_min_ft_3: UnitConstant
|
2445
|
+
lb_min_cft: UnitConstant
|
2446
|
+
pound_per_second_per_cubic_foot: UnitConstant
|
2447
|
+
b_s_ft_3_or_lb_sec_cft: UnitConstant
|
2448
|
+
b_s_ft_3: UnitConstant
|
2449
|
+
lb_sec_cft: UnitConstant
|
2450
|
+
|
2451
|
+
class WavenumberUnits:
|
2452
|
+
"""Unit constants for Wavenumber."""
|
2453
|
+
__slots__: tuple[()]
|
2454
|
+
|
2455
|
+
diopter: UnitConstant
|
2456
|
+
kayser: UnitConstant
|
2457
|
+
reciprocal_meter: UnitConstant
|
2458
|
+
unit_1_m: UnitConstant
|
2459
|
+
|
2460
|
+
def register_all_units() -> None: ...
|
2461
|
+
|