qnty 0.0.2__py3-none-any.whl → 0.0.3__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 +174 -2
- qnty/dimension.py +110 -12
- qnty/prefixes.py +229 -0
- qnty/unit.py +68 -0
- qnty/unit_types/__init__.py +0 -0
- qnty/unit_types/base.py +47 -0
- qnty/units.py +8079 -33
- qnty/variable.py +2 -1
- qnty/variable_types/__init__.py +0 -0
- qnty/variable_types/base.py +58 -0
- qnty/variable_types/expression_variable.py +68 -0
- qnty/variable_types/typed_variable.py +92 -0
- qnty/variables.py +2270 -196
- qnty/variables.pyi +6097 -0
- {qnty-0.0.2.dist-info → qnty-0.0.3.dist-info}/METADATA +1 -1
- qnty-0.0.3.dist-info/RECORD +19 -0
- qnty-0.0.2.dist-info/RECORD +0 -11
- {qnty-0.0.2.dist-info → qnty-0.0.3.dist-info}/WHEEL +0 -0
qnty/variables.py
CHANGED
@@ -1,229 +1,2303 @@
|
|
1
1
|
"""
|
2
|
-
|
3
|
-
|
2
|
+
Consolidated Variables Module - Complete Edition
|
3
|
+
===============================================
|
4
4
|
|
5
|
-
|
6
|
-
|
5
|
+
Consolidated variable definitions for all variable types.
|
6
|
+
Uses the exact same source of truth and approach as consolidated units system.
|
7
|
+
Auto-generated from unit_data.json and dimension_mapping.json.
|
7
8
|
"""
|
8
9
|
|
9
|
-
from
|
10
|
+
from typing import Any, cast
|
10
11
|
|
11
|
-
from
|
12
|
+
from .dimension import (
|
13
|
+
ABSORBED_DOSE,
|
14
|
+
ACCELERATION,
|
15
|
+
ACTIVATION_ENERGY,
|
16
|
+
AMOUNT_OF_SUBSTANCE,
|
17
|
+
ANGLE_PLANE,
|
18
|
+
ANGLE_SOLID,
|
19
|
+
ANGULAR_ACCELERATION,
|
20
|
+
ANGULAR_MOMENTUM,
|
21
|
+
AREA,
|
22
|
+
AREA_PER_UNIT_VOLUME,
|
23
|
+
ATOMIC_WEIGHT,
|
24
|
+
CONCENTRATION,
|
25
|
+
DIMENSIONLESS,
|
26
|
+
DYNAMIC_FLUIDITY,
|
27
|
+
ELECTRICAL_CONDUCTANCE,
|
28
|
+
ELECTRICAL_PERMITTIVITY,
|
29
|
+
ELECTRICAL_RESISTIVITY,
|
30
|
+
ELECTRIC_CAPACITANCE,
|
31
|
+
ELECTRIC_CHARGE,
|
32
|
+
ELECTRIC_CURRENT_INTENSITY,
|
33
|
+
ELECTRIC_DIPOLE_MOMENT,
|
34
|
+
ELECTRIC_FIELD_STRENGTH,
|
35
|
+
ELECTRIC_INDUCTANCE,
|
36
|
+
ELECTRIC_POTENTIAL,
|
37
|
+
ELECTRIC_RESISTANCE,
|
38
|
+
ENERGY_FLUX,
|
39
|
+
ENERGY_HEAT_WORK,
|
40
|
+
ENERGY_PER_UNIT_AREA,
|
41
|
+
FORCE,
|
42
|
+
FORCE_BODY,
|
43
|
+
FORCE_PER_UNIT_MASS,
|
44
|
+
FREQUENCY_VOLTAGE_RATIO,
|
45
|
+
FUEL_CONSUMPTION,
|
46
|
+
HEAT_OF_COMBUSTION,
|
47
|
+
HEAT_OF_FUSION,
|
48
|
+
HEAT_OF_VAPORIZATION,
|
49
|
+
HEAT_TRANSFER_COEFFICIENT,
|
50
|
+
ILLUMINANCE,
|
51
|
+
KINETIC_ENERGY_OF_TURBULENCE,
|
52
|
+
LENGTH,
|
53
|
+
LINEAR_MASS_DENSITY,
|
54
|
+
LINEAR_MOMENTUM,
|
55
|
+
LUMINANCE_SELF,
|
56
|
+
LUMINOUS_FLUX,
|
57
|
+
LUMINOUS_INTENSITY,
|
58
|
+
MAGNETIC_FIELD,
|
59
|
+
MAGNETIC_FLUX,
|
60
|
+
MAGNETIC_INDUCTION_FIELD_STRENGTH,
|
61
|
+
MAGNETIC_MOMENT,
|
62
|
+
MAGNETIC_PERMEABILITY,
|
63
|
+
MAGNETOMOTIVE_FORCE,
|
64
|
+
MASS,
|
65
|
+
MASS_DENSITY,
|
66
|
+
MASS_FLOW_RATE,
|
67
|
+
MASS_FLUX,
|
68
|
+
MASS_FRACTION_OF_I,
|
69
|
+
MASS_TRANSFER_COEFFICIENT,
|
70
|
+
MOLALITY_OF_SOLUTE_I,
|
71
|
+
MOLARITY_OF_I,
|
72
|
+
MOLAR_CONCENTRATION_BY_MASS,
|
73
|
+
MOLAR_FLOW_RATE,
|
74
|
+
MOLAR_FLUX,
|
75
|
+
MOLAR_HEAT_CAPACITY,
|
76
|
+
MOLE_FRACTION_OF_I,
|
77
|
+
MOMENTUM_FLOW_RATE,
|
78
|
+
MOMENTUM_FLUX,
|
79
|
+
MOMENT_OF_INERTIA,
|
80
|
+
NORMALITY_OF_SOLUTION,
|
81
|
+
PARTICLE_DENSITY,
|
82
|
+
PERMEABILITY,
|
83
|
+
PHOTON_EMISSION_RATE,
|
84
|
+
POWER_PER_UNIT_MASS,
|
85
|
+
POWER_PER_UNIT_VOLUME,
|
86
|
+
POWER_THERMAL_DUTY,
|
87
|
+
PRESSURE,
|
88
|
+
RADIATION_DOSE_EQUIVALENT,
|
89
|
+
RADIATION_EXPOSURE,
|
90
|
+
RADIOACTIVITY,
|
91
|
+
SECOND_MOMENT_OF_AREA,
|
92
|
+
SECOND_RADIATION_CONSTANT_PLANCK,
|
93
|
+
SPECIFIC_ENTHALPY,
|
94
|
+
SPECIFIC_GRAVITY,
|
95
|
+
SPECIFIC_HEAT_CAPACITY_CONSTANT_PRESSURE,
|
96
|
+
SPECIFIC_LENGTH,
|
97
|
+
SPECIFIC_SURFACE,
|
98
|
+
SPECIFIC_VOLUME,
|
99
|
+
STRESS,
|
100
|
+
SURFACE_MASS_DENSITY,
|
101
|
+
SURFACE_TENSION,
|
102
|
+
TEMPERATURE,
|
103
|
+
THERMAL_CONDUCTIVITY,
|
104
|
+
TIME,
|
105
|
+
TORQUE,
|
106
|
+
TURBULENCE_ENERGY_DISSIPATION_RATE,
|
107
|
+
VELOCITY_ANGULAR,
|
108
|
+
VELOCITY_LINEAR,
|
109
|
+
VISCOSITY_DYNAMIC,
|
110
|
+
VISCOSITY_KINEMATIC,
|
111
|
+
VOLUME,
|
112
|
+
VOLUMETRIC_CALORIFIC_HEATING_VALUE,
|
113
|
+
VOLUMETRIC_COEFFICIENT_OF_EXPANSION,
|
114
|
+
VOLUMETRIC_FLOW_RATE,
|
115
|
+
VOLUMETRIC_FLUX,
|
116
|
+
VOLUMETRIC_MASS_FLOW_RATE,
|
117
|
+
VOLUME_FRACTION_OF_I,
|
118
|
+
WAVENUMBER
|
119
|
+
)
|
120
|
+
from .unit import UnitConstant, UnitDefinition
|
121
|
+
from .units import DimensionlessUnits
|
122
|
+
from .variable import FastQuantity, TypeSafeSetter
|
123
|
+
from .variable_types.typed_variable import TypedVariable
|
12
124
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
125
|
+
# Consolidated variable definitions
|
126
|
+
VARIABLE_DEFINITIONS = {
|
127
|
+
"AbsorbedDose": {
|
128
|
+
"dimension": ABSORBED_DOSE,
|
129
|
+
"default_unit": "gray",
|
130
|
+
"units": [
|
131
|
+
("erg per gram", "erg_per_gram", 0.0001, "erg/g", ['erg_per_g']),
|
132
|
+
("gram-rad", "gram_rad", 0.01, "g-rad", ['g_rad']),
|
133
|
+
("gray", "gray", 1.0, "Gy", ['Gy']),
|
134
|
+
("rad", "rad", 0.01, "rad", []),
|
135
|
+
("milligray", "milligray", 0.001, "mGy", ['mGy']),
|
136
|
+
("microgray", "microgray", 1e-06, "μGy", ['μGy'])
|
137
|
+
],
|
138
|
+
"field_name": "absorbed_dose",
|
139
|
+
"display_name": "Absorbed Radiation Dose",
|
140
|
+
},
|
141
|
+
"Acceleration": {
|
142
|
+
"dimension": ACCELERATION,
|
143
|
+
"default_unit": "meter_per_second_squared",
|
144
|
+
"units": [
|
145
|
+
("meter per second squared", "meter_per_second_squared", 1.0, "$\\mathrm{m} / \\mathrm{s}^{2}$", ['m_per_s2']),
|
146
|
+
("foot per second squared", "foot_per_second_squared", 0.3048, "$\\mathrm{ft} / \\mathrm{s}^{2}$ or $\\mathrm{ft} / \\mathrm{sec}^{2}$", ['ft_per_s2', 'fps2'])
|
147
|
+
],
|
148
|
+
"field_name": "acceleration",
|
149
|
+
"display_name": "Acceleration",
|
150
|
+
},
|
151
|
+
"ActivationEnergy": {
|
152
|
+
"dimension": ACTIVATION_ENERGY,
|
153
|
+
"default_unit": "joule_per_gram_mole",
|
154
|
+
"units": [
|
155
|
+
("Btu per pound mole", "Btu_per_pound_mole", 2326.0, "Btu/lb-mol", ['btu_per_lbmol']),
|
156
|
+
("calorie (mean) per gram mole", "calorie_(mean)_per_gram_mole", 4.18675, "cal/mol", ['cal_mean_per_gmol']),
|
157
|
+
("joule per gram mole", "joule_per_gram_mole", 1.0, "J/mol", []),
|
158
|
+
("joule per kilogram mole", "joule_per_kilogram_mole", 1000.0, "J/kmol", []),
|
159
|
+
("kilocalorie per kilogram mole", "kilocalorie_per_kilogram_mole", 4.18675, "kcal/kmol", [])
|
160
|
+
],
|
161
|
+
"field_name": "activation_energy",
|
162
|
+
"display_name": "Activation Energy",
|
163
|
+
},
|
164
|
+
"AmountOfSubstance": {
|
165
|
+
"dimension": AMOUNT_OF_SUBSTANCE,
|
166
|
+
"default_unit": "mole_(gram)",
|
167
|
+
"units": [
|
168
|
+
("kilogram mol or kmol", "kilogram_mol_or_kmol", 1000.0, "kmol", ['kmol']),
|
169
|
+
("mole (gram)", "mole_(gram)", 1.0, "mol", ['mol']),
|
170
|
+
("pound-mole", "pound_mole", 453.6, "lb-mol or mole", ['lb-mol', 'mole']),
|
171
|
+
("millimole (gram)", "millimole_(gram)", 0.001, "mmol", ['mmol']),
|
172
|
+
("micromole (gram)", "micromole_(gram)", 1e-06, "μmol", ['μmol'])
|
173
|
+
],
|
174
|
+
"field_name": "amount_of_substance",
|
175
|
+
"display_name": "Amount of Substance",
|
176
|
+
},
|
177
|
+
"AnglePlane": {
|
178
|
+
"dimension": ANGLE_PLANE,
|
179
|
+
"default_unit": "radian",
|
180
|
+
"units": [
|
181
|
+
("degree", "degree", 0.0174533, "${ }^{\\circ}$", []),
|
182
|
+
("gon", "gon", 0.015708, "g or gon", ['g']),
|
183
|
+
("grade", "grade", 0.015708, "g or grad", ['g', 'grad']),
|
184
|
+
("minute (new)", "minute_(new)", 0.00015708, "c", ['c']),
|
185
|
+
("minute of angle", "minute_of_angle", 0.000290888, "'", []),
|
186
|
+
("percent", "percent", 0.062832, "\\%", []),
|
187
|
+
("plane angle", "plane_angle", 3.141593, "-", []),
|
188
|
+
("quadrant", "quadrant", 1.570796, "quadr", []),
|
189
|
+
("radian", "radian", 1.0, "rad", ['rad']),
|
190
|
+
("right angle", "right_angle", 1.570796, "$\\perp$", ['perp']),
|
191
|
+
("round", "round", 6.283185, "tr or r", ['tr', 'r']),
|
192
|
+
("second (new)", "second_(new)", 1.5707999999999999e-06, "cc", ['cc']),
|
193
|
+
("second of angle", "second_of_angle", 4.848099999999999e-06, "\"", []),
|
194
|
+
("thousandth (US)", "thousandth_(US)", 0.0015708, "\\% (US)", []),
|
195
|
+
("turn", "turn", 6.283185, "turn or rev", ['rev'])
|
196
|
+
],
|
197
|
+
"field_name": "angle_plane",
|
198
|
+
"display_name": "Angle, Plane",
|
199
|
+
},
|
200
|
+
"AngleSolid": {
|
201
|
+
"dimension": ANGLE_SOLID,
|
202
|
+
"default_unit": "steradian",
|
203
|
+
"units": [
|
204
|
+
("spat", "spat", 12.5663, "spat", ['spat']),
|
205
|
+
("square degree", "square_degree", 0.000304617, "$\\left({ }^{\\circ}\\right)^{2}$", []),
|
206
|
+
("square gon", "square_gon", 0.00024674, "(g) ${ }^{2}$", []),
|
207
|
+
("steradian", "steradian", 1.0, "sr", ['sr'])
|
208
|
+
],
|
209
|
+
"field_name": "angle_solid",
|
210
|
+
"display_name": "Angle, Solid",
|
211
|
+
},
|
212
|
+
"AngularAcceleration": {
|
213
|
+
"dimension": ANGULAR_ACCELERATION,
|
214
|
+
"default_unit": "radian_per_second_squared",
|
215
|
+
"units": [
|
216
|
+
("radian per second squared", "radian_per_second_squared", 1.0, "$\\mathrm{rad} / \\mathrm{s}^{2}$", []),
|
217
|
+
("revolution per second squared", "revolution_per_second_squared", 6.2832, "$\\mathrm{rev} / \\mathrm{sec}^{2}$", []),
|
218
|
+
("rpm (or revolution per minute) per minute", "rpm_(or_revolution_per_minute)_per_minute", 0.001745, "$\\mathrm{rev} / \\mathrm{min}^{2}$ or rpm/min", ['rev / min^{2', 'rpm/min'])
|
219
|
+
],
|
220
|
+
"field_name": "angular_acceleration",
|
221
|
+
"display_name": "Angular Acceleration",
|
222
|
+
},
|
223
|
+
"AngularMomentum": {
|
224
|
+
"dimension": ANGULAR_MOMENTUM,
|
225
|
+
"default_unit": "kilogram_meter_squared_per_second",
|
226
|
+
"units": [
|
227
|
+
("gram centimeter squared per second", "gram_centimeter_squared_per_second", 1e-07, "$\\mathrm{g} \\mathrm{cm}^{2} / \\mathrm{s}$", []),
|
228
|
+
("kilogram meter squared per second", "kilogram_meter_squared_per_second", 1.0, "$\\mathrm{kg} \\mathrm{m}^{2} / \\mathrm{s}$", []),
|
229
|
+
("pound force square foot per second", "pound_force_square_foot_per_second", 0.04214, "lb ft ${ }^{2} / \\mathrm{sec}$", [])
|
230
|
+
],
|
231
|
+
"field_name": "angular_momentum",
|
232
|
+
"display_name": "Angular Momentum",
|
233
|
+
},
|
234
|
+
"Area": {
|
235
|
+
"dimension": AREA,
|
236
|
+
"default_unit": "square_meter",
|
237
|
+
"units": [
|
238
|
+
("acre (general)", "acre_(general)", 4046.856, "ac", ['ac']),
|
239
|
+
("are", "are", 100.0, "a", ['a']),
|
240
|
+
("arpent (Quebec)", "arpent_(Quebec)", 3418.89, "arp", ['arp']),
|
241
|
+
("barn", "barn", 1e-28, "b", ['b']),
|
242
|
+
("circular inch", "circular_inch", 0.000506707, "cin", ['cin']),
|
243
|
+
("circular mil", "circular_mil", 5.07e-10, "cmil", ['cmil']),
|
244
|
+
("hectare", "hectare", 10000.0, "ha", ['ha']),
|
245
|
+
("shed", "shed", 1e-52, "shed", ['shed']),
|
246
|
+
("square centimeter", "square_centimeter", 0.0001, "$\\mathrm{cm}^{2}$", []),
|
247
|
+
("square chain (Ramsden)", "square_chain_(Ramsden)", 929.03, "sq ch (Rams)", []),
|
248
|
+
("square chain (Survey, Gunter's)", "square_chain_(Survey,_Gunter's)", 404.6856, "sq ch (surv)", []),
|
249
|
+
("square decimeter", "square_decimeter", 0.01, "$\\mathrm{dm}^{2}$", []),
|
250
|
+
("square fermi", "square_fermi", 1e-30, "$\\mathrm{F}^{2}$", []),
|
251
|
+
("square foot", "square_foot", 0.092903, "sq ft or ft ${ }^{2}$", ['sq ft', 'ft { ^{2']),
|
252
|
+
("square hectometer", "square_hectometer", 10000.0, "$\\mathrm{hm}^{2}$", []),
|
253
|
+
("square inch", "square_inch", 0.00064516, "sq in or in ${ }^{2}$", ['sq in', 'in { ^{2']),
|
254
|
+
("square kilometer", "square_kilometer", 1000000.0, "$\\mathrm{km}^{2}$", []),
|
255
|
+
("square league (statute)", "square_league_(statute)", 23310000.0, "sq lg (stat)", []),
|
256
|
+
("square meter", "square_meter", 1.0, "$\\mathrm{m}^{2}$", []),
|
257
|
+
("square micron", "square_micron", 1e-12, "$\\mu \\mathrm{m}^{2}$ or $\\mu^{2}$", ['mu m^{2', 'mu^{2']),
|
258
|
+
("square mile (statute)", "square_mile_(statute)", 2590000.0, "sq mi (stat)", []),
|
259
|
+
("square mile (US survey)", "square_mile_(US_survey)", 2590000.0, "sq mi (US Surv)", []),
|
260
|
+
("square millimeter", "square_millimeter", 1e-06, "$\\mathrm{mm}^{2}$", []),
|
261
|
+
("square nanometer", "square_nanometer", 1e-18, "$\\mathrm{nm}^{2}$", []),
|
262
|
+
("square yard", "square_yard", 0.836131, "sq yd", []),
|
263
|
+
("township (US)", "township_(US)", 93240000.0, "twshp", [])
|
264
|
+
],
|
265
|
+
"field_name": "area",
|
266
|
+
"display_name": "Area",
|
267
|
+
},
|
268
|
+
"AreaPerUnitVolume": {
|
269
|
+
"dimension": AREA_PER_UNIT_VOLUME,
|
270
|
+
"default_unit": "square_inch_per_cubic_inch",
|
271
|
+
"units": [
|
272
|
+
("square centimeter per cubic centimeter", "square_centimeter_per_cubic_centimeter", 100.0, "$\\mathrm{cm}^{2} / \\mathrm{cc}$", []),
|
273
|
+
("square foot per cubic foot", "square_foot_per_cubic_foot", 3.2808, "$\\mathrm{ft}^{2} / \\mathrm{ft}^{3}$ or sqft/cft", ['ft^{2 / ft^{3', 'sqft/cft']),
|
274
|
+
("square inch per cubic inch", "square_inch_per_cubic_inch", 1.0, "$\\mathrm{in}^{2} / \\mathrm{in}^{3}$ or sq.in./cu. in.", ['in^{2 / in^{3', 'sq.in./cu. in.']),
|
275
|
+
("square meter per cubic meter", "square_meter_per_cubic_meter", 1.0, "$\\mathrm{m}^{2} / \\mathrm{m}^{3}$ or $1 / \\mathrm{m}^{3}$", ['m^{2 / m^{3', '1 / m^{3'])
|
276
|
+
],
|
277
|
+
"field_name": "area_per_unit_volume",
|
278
|
+
"display_name": "Area per Unit Volume",
|
279
|
+
},
|
280
|
+
"AtomicWeight": {
|
281
|
+
"dimension": ATOMIC_WEIGHT,
|
282
|
+
"default_unit": "atomic_mass_unit_(12C)",
|
283
|
+
"units": [
|
284
|
+
("atomic mass unit (12C)", "atomic_mass_unit_(12C)", 1.0, "amu", ['amu']),
|
285
|
+
("grams per mole", "grams_per_mole", 1.0, "g/mol", []),
|
286
|
+
("kilograms per kilomole", "kilograms_per_kilomole", 1.0, "kg/kmol", []),
|
287
|
+
("pounds per pound mole", "pounds_per_pound_mole", 1.0, "$\\mathrm{lb} / \\mathrm{lb}-$ mol or $\\mathrm{lb} /$ mole", ['lb / lb- mol', 'lb / mole'])
|
288
|
+
],
|
289
|
+
"field_name": "atomic_weight",
|
290
|
+
"display_name": "Atomic Weight",
|
291
|
+
},
|
292
|
+
"Concentration": {
|
293
|
+
"dimension": CONCENTRATION,
|
294
|
+
"default_unit": "grains_of_\"i\"_per_cubic_foot",
|
295
|
+
"units": [
|
296
|
+
("grains of \"i\" per cubic foot", "grains_of_\"i\"_per_cubic_foot", 0.002288, "$\\mathrm{gr} / \\mathrm{ft}^{3}$ or gr/cft", ['gr / ft^{3', 'gr/cft']),
|
297
|
+
("grains of \"i\" per gallon (US)", "grains_of_\"i\"_per_gallon_(US)", 0.017115, "gr/gal", [])
|
298
|
+
],
|
299
|
+
"field_name": "concentration",
|
300
|
+
"display_name": "Concentration",
|
301
|
+
},
|
302
|
+
"DynamicFluidity": {
|
303
|
+
"dimension": DYNAMIC_FLUIDITY,
|
304
|
+
"default_unit": "meter_seconds_per_kilogram",
|
305
|
+
"units": [
|
306
|
+
("meter-seconds per kilogram", "meter_seconds_per_kilogram", 1.0, "m s/kg", []),
|
307
|
+
("rhe", "rhe", 1.0, "rhe", ['rhe']),
|
308
|
+
("square foot per pound second", "square_foot_per_pound_second", 0.002086, "$\\mathrm{ft}^{2}$ /(lb sec)", []),
|
309
|
+
("square meters per newton per second", "square_meters_per_newton_per_second", 1.0, "$\\mathrm{m}^{2} /(\\mathrm{N} \\mathrm{s})$", [])
|
310
|
+
],
|
311
|
+
"field_name": "dynamic_fluidity",
|
312
|
+
"display_name": "Dynamic Fluidity",
|
313
|
+
},
|
314
|
+
"ElectricCapacitance": {
|
315
|
+
"dimension": ELECTRIC_CAPACITANCE,
|
316
|
+
"default_unit": "farad",
|
317
|
+
"units": [
|
318
|
+
("\"cm\"", "\"cm\"", 1.1111e-12, "\"cm\"", []),
|
319
|
+
("abfarad", "abfarad", 1000000000.0, "emu cgs", []),
|
320
|
+
("farad", "farad", 1.0, "F", ['F']),
|
321
|
+
("farad (intl)", "farad_(intl)", 0.99951, "F (int)", []),
|
322
|
+
("jar", "jar", 1.1111e-09, "jar", ['jar']),
|
323
|
+
("puff", "puff", 1e-12, "puff", ['puff']),
|
324
|
+
("statfarad", "statfarad", 1.113e-12, "esu cgs", []),
|
325
|
+
("millifarad", "millifarad", 0.001, "mF", ['mF']),
|
326
|
+
("microfarad", "microfarad", 1e-06, "μF", ['μF']),
|
327
|
+
("nanofarad", "nanofarad", 1e-09, "nF", ['nF']),
|
328
|
+
("picofarad", "picofarad", 1e-12, "pF", ['pF'])
|
329
|
+
],
|
330
|
+
"field_name": "electric_capacitance",
|
331
|
+
"display_name": "Electric Capacitance",
|
332
|
+
},
|
333
|
+
"ElectricCharge": {
|
334
|
+
"dimension": ELECTRIC_CHARGE,
|
335
|
+
"default_unit": "faraday_(C12)",
|
336
|
+
"units": [
|
337
|
+
("abcoulomb", "abcoulomb", 0.000103643, "emu cgs", []),
|
338
|
+
("ampere-hour", "ampere_hour", 0.03731138, "Ah", ['Ah']),
|
339
|
+
("coulomb", "coulomb", 1.0364000000000001e-05, "C", ['C']),
|
340
|
+
("faraday (C12)", "faraday_(C12)", 1.0, "F", ['F']),
|
341
|
+
("franklin", "franklin", 3.45715e-15, "Fr", ['Fr']),
|
342
|
+
("statcoulomb", "statcoulomb", 3.45715e-15, "esu cgs", []),
|
343
|
+
("u.a. charge", "u_a__charge", 1.66054e-24, "u.a.", []),
|
344
|
+
("kilocoulomb", "kilocoulomb", 0.010364000000000002, "kC", ['kC']),
|
345
|
+
("millicoulomb", "millicoulomb", 1.0364000000000001e-08, "mC", ['mC']),
|
346
|
+
("microcoulomb", "microcoulomb", 1.0364e-11, "μC", ['μC']),
|
347
|
+
("nanocoulomb", "nanocoulomb", 1.0364000000000002e-14, "nC", ['nC']),
|
348
|
+
("picocoulomb", "picocoulomb", 1.0364000000000001e-17, "pC", ['pC'])
|
349
|
+
],
|
350
|
+
"field_name": "electric_charge",
|
351
|
+
"display_name": "Electric Charge",
|
352
|
+
},
|
353
|
+
"ElectricCurrentIntensity": {
|
354
|
+
"dimension": ELECTRIC_CURRENT_INTENSITY,
|
355
|
+
"default_unit": "ampere_or_amp",
|
356
|
+
"units": [
|
357
|
+
("abampere", "abampere", 10.0, "emu cgs", []),
|
358
|
+
("ampere (intl mean)", "ampere_(intl_mean)", 0.99985, "A (int mean)", []),
|
359
|
+
("ampere (intl US)", "ampere_(intl_US)", 0.999835, "A (int US)", []),
|
360
|
+
("ampere or amp", "ampere_or_amp", 1.0, "A", ['A']),
|
361
|
+
("biot", "biot", 10.0, "biot", ['biot']),
|
362
|
+
("statampere", "statampere", 3.33564e-10, "esu cgs", []),
|
363
|
+
("u.a. or current", "u_a__or_current", 0.00662362, "u.a.", [])
|
364
|
+
],
|
365
|
+
"field_name": "electric_current_intensity",
|
366
|
+
"display_name": "Electric Current Intensity",
|
367
|
+
},
|
368
|
+
"ElectricDipoleMoment": {
|
369
|
+
"dimension": ELECTRIC_DIPOLE_MOMENT,
|
370
|
+
"default_unit": "ampere_meter_second",
|
371
|
+
"units": [
|
372
|
+
("ampere meter second", "ampere_meter_second", 1.0, "A m s", []),
|
373
|
+
("coulomb meter", "coulomb_meter", 1.0, "C m", []),
|
374
|
+
("debye", "debye", 3.3356e-30, "D", ['D']),
|
375
|
+
("electron meter", "electron_meter", 1.6022e-19, "e m", [])
|
376
|
+
],
|
377
|
+
"field_name": "electric_dipole_moment",
|
378
|
+
"display_name": "Electric Dipole Moment",
|
379
|
+
},
|
380
|
+
"ElectricFieldStrength": {
|
381
|
+
"dimension": ELECTRIC_FIELD_STRENGTH,
|
382
|
+
"default_unit": "volt_per_meter",
|
383
|
+
"units": [
|
384
|
+
("volt per centimeter", "volt_per_centimeter", 100.0, "V/cm", []),
|
385
|
+
("volt per meter", "volt_per_meter", 1.0, "V/m", [])
|
386
|
+
],
|
387
|
+
"field_name": "electric_field_strength",
|
388
|
+
"display_name": "Electric Field Strength",
|
389
|
+
},
|
390
|
+
"ElectricInductance": {
|
391
|
+
"dimension": ELECTRIC_INDUCTANCE,
|
392
|
+
"default_unit": "henry",
|
393
|
+
"units": [
|
394
|
+
("abhenry", "abhenry", 1e-09, "emu cgs", []),
|
395
|
+
("cm", "cm", 1e-09, "cm", ['cm']),
|
396
|
+
("henry", "henry", 1.0, "H", ['H']),
|
397
|
+
("henry (intl mean)", "henry_(intl_mean)", 1.00049, "H (int mean)", []),
|
398
|
+
("henry (intl US)", "henry_(intl_US)", 1.000495, "H (int US)", []),
|
399
|
+
("mic", "mic", 1e-06, "mic", ['mic']),
|
400
|
+
("stathenry", "stathenry", 898760000000.0, "esu cgs", []),
|
401
|
+
("millihenry", "millihenry", 0.001, "mH", ['mH']),
|
402
|
+
("microhenry", "microhenry", 1e-06, "μH", ['μH']),
|
403
|
+
("nanohenry", "nanohenry", 1e-09, "nH", ['nH'])
|
404
|
+
],
|
405
|
+
"field_name": "electric_inductance",
|
406
|
+
"display_name": "Electric Inductance",
|
407
|
+
},
|
408
|
+
"ElectricPotential": {
|
409
|
+
"dimension": ELECTRIC_POTENTIAL,
|
410
|
+
"default_unit": "volt",
|
411
|
+
"units": [
|
412
|
+
("abvolt", "abvolt", 1e-08, "emu cgs", []),
|
413
|
+
("statvolt", "statvolt", 299.792, "esu cgs", []),
|
414
|
+
("u.a. potential", "u_a__potential", 27.2114, "u.a.", []),
|
415
|
+
("volt", "volt", 1.0, "V", ['V']),
|
416
|
+
("volt (intl mean)", "volt_(intl_mean)", 1.00034, "V (int mean)", []),
|
417
|
+
("volt (US)", "volt_(US)", 1.00033, "V (int US)", []),
|
418
|
+
("kilovolt", "kilovolt", 1000.0, "kV", ['kV']),
|
419
|
+
("millivolt", "millivolt", 0.001, "mV", ['mV']),
|
420
|
+
("microvolt", "microvolt", 1e-06, "μV", ['μV']),
|
421
|
+
("nanovolt", "nanovolt", 1e-09, "nV", ['nV']),
|
422
|
+
("picovolt", "picovolt", 1e-12, "pV", ['pV'])
|
423
|
+
],
|
424
|
+
"field_name": "electric_potential",
|
425
|
+
"display_name": "Electric Potential",
|
426
|
+
},
|
427
|
+
"ElectricResistance": {
|
428
|
+
"dimension": ELECTRIC_RESISTANCE,
|
429
|
+
"default_unit": "ohm",
|
430
|
+
"units": [
|
431
|
+
("abohm", "abohm", 1e-09, "emu cgs", []),
|
432
|
+
("jacobi", "jacobi", 0.64, "-", []),
|
433
|
+
("lenz", "lenz", 80000.0, "Metric", []),
|
434
|
+
("ohm", "ohm", 1.0, "$\\Omega$", []),
|
435
|
+
("ohm (intl mean)", "ohm_(intl_mean)", 1.00049, "$\\Omega$ (int mean)", []),
|
436
|
+
("ohm (intl US)", "ohm_(intl_US)", 1.000495, "$\\Omega$ (int US)", []),
|
437
|
+
("ohm (legal)", "ohm_(legal)", 0.9972, "$\\Omega$ (legal)", []),
|
438
|
+
("preece", "preece", 1000000.0, "preece", []),
|
439
|
+
("statohm", "statohm", 8.987552, "csu cgs", []),
|
440
|
+
("wheatstone", "wheatstone", 0.0025, "-", []),
|
441
|
+
("kiloohm", "kiloohm", 1000.0, "k$\\Omega$", ['k$\\\\Omega$']),
|
442
|
+
("megaohm", "megaohm", 1000000.0, "M$\\Omega$", ['M$\\\\Omega$']),
|
443
|
+
("milliohm", "milliohm", 0.001, "m$\\Omega$", ['m$\\\\Omega$'])
|
444
|
+
],
|
445
|
+
"field_name": "electric_resistance",
|
446
|
+
"display_name": "Electric Resistance",
|
447
|
+
},
|
448
|
+
"ElectricalConductance": {
|
449
|
+
"dimension": ELECTRICAL_CONDUCTANCE,
|
450
|
+
"default_unit": "mho",
|
451
|
+
"units": [
|
452
|
+
("emu cgs", "emu_cgs", 1000000000.0, "abmho", []),
|
453
|
+
("esu cgs", "esu_cgs", 1.1127e-12, "statmho", []),
|
454
|
+
("mho", "mho", 1.0, "mho", ['mho']),
|
455
|
+
("microsiemens", "microsiemens", 1e-06, "$\\mu \\mathrm{S}$", []),
|
456
|
+
("siemens", "siemens", 1.0, "S", ['S']),
|
457
|
+
("millisiemens", "millisiemens", 0.001, "mS", ['mS'])
|
458
|
+
],
|
459
|
+
"field_name": "electrical_conductance",
|
460
|
+
"display_name": "Electrical Conductance",
|
461
|
+
},
|
462
|
+
"ElectricalPermittivity": {
|
463
|
+
"dimension": ELECTRICAL_PERMITTIVITY,
|
464
|
+
"default_unit": "farad_per_meter",
|
465
|
+
"units": [
|
466
|
+
("farad per meter", "farad_per_meter", 1.0, "F/m", [])
|
467
|
+
],
|
468
|
+
"field_name": "electrical_permittivity",
|
469
|
+
"display_name": "Electrical Permittivity",
|
470
|
+
},
|
471
|
+
"ElectricalResistivity": {
|
472
|
+
"dimension": ELECTRICAL_RESISTIVITY,
|
473
|
+
"default_unit": "ohm_meter",
|
474
|
+
"units": [
|
475
|
+
("circular mil-ohm per foot", "circular_mil_ohm_per_foot", 1.6624000000000002e-09, "circmil $\\Omega / \\mathrm{ft}$", []),
|
476
|
+
("emu cgs", "emu_cgs", 1e-11, "abohm cm", []),
|
477
|
+
("microhm-inch", "microhm_inch", 2.5400000000000002e-08, "$\\mu \\Omega$ in", []),
|
478
|
+
("ohm-centimeter", "ohm_centimeter", 0.01, "$\\boldsymbol{\\Omega} \\mathbf{c m}$", []),
|
479
|
+
("ohm-meter", "ohm_meter", 1.0, "$\\Omega \\mathrm{m}$", [])
|
480
|
+
],
|
481
|
+
"field_name": "electrical_resistivity",
|
482
|
+
"display_name": "Electrical Resistivity",
|
483
|
+
},
|
484
|
+
"EnergyFlux": {
|
485
|
+
"dimension": ENERGY_FLUX,
|
486
|
+
"default_unit": "watt_per_square_meter",
|
487
|
+
"units": [
|
488
|
+
("Btu per square foot per hour", "Btu_per_square_foot_per_hour", 3.1546, "$\\mathrm{Btu} / \\mathrm{ft}^{2} / \\mathrm{hr}$", []),
|
489
|
+
("calorie per square centimeter per second", "calorie_per_square_centimeter_per_second", 41868.0, "$\\mathrm{cal} / \\mathrm{cm}^{2} / \\mathrm{s}$ or $\\mathrm{cal} /$ ( $\\mathrm{cm}^{2} \\mathrm{~s}$ )", ['cal / cm^{2 / s', 'cal / ( cm^{2 ~s )']),
|
490
|
+
("Celsius heat units (Chu) per square foot per hour", "Celsius_heat_units_(Chu)_per_square_foot_per_hour", 5.6784, "$\\mathrm{Chu} / \\mathrm{ft}^{2} / \\mathrm{hr}$", []),
|
491
|
+
("kilocalorie per square foot per hour", "kilocalorie_per_square_foot_per_hour", 12.518, "$\\mathrm{kcal} /\\left(\\mathrm{ft}^{2} \\mathrm{hr}\\right)$", []),
|
492
|
+
("kilocalorie per square meter per hour", "kilocalorie_per_square_meter_per_hour", 1.163, "$\\mathrm{kcal} /\\left(\\mathrm{m}^{2} \\mathrm{hr}\\right)$", []),
|
493
|
+
("watt per square meter", "watt_per_square_meter", 1.0, "$\\mathrm{W} / \\mathrm{m}^{2}$", [])
|
494
|
+
],
|
495
|
+
"field_name": "energy_flux",
|
496
|
+
"display_name": "Energy Flux",
|
497
|
+
},
|
498
|
+
"EnergyHeatWork": {
|
499
|
+
"dimension": ENERGY_HEAT_WORK,
|
500
|
+
"default_unit": "joule",
|
501
|
+
"units": [
|
502
|
+
("barrel oil equivalent or equivalent barrel", "barrel_oil_equivalent_or_equivalent_barrel", 6120000000.0, "bboe or boe", ['bboe', 'boe']),
|
503
|
+
("billion electronvolt", "billion_electronvolt", 1.6022000000000002e-10, "BeV", ['BeV']),
|
504
|
+
("British thermal unit ( $4^{\\circ} \\mathrm{C}$ )", "British_thermal_unit_(_$4^{\\circ}_\\mathrm{C}$_)", 1059.67, "Btu ( $39.2{ }^{\\circ} \\mathrm{F}$ )", []),
|
505
|
+
("British thermal unit ( $60^{\\circ} \\mathrm{F}$ )", "British_thermal_unit_(_$60^{\\circ}_\\mathrm{F}$_)", 1054.678, "Btu ( $60{ }^{\\circ} \\mathrm{F}$ )", []),
|
506
|
+
("British thermal unit (international steam tables)", "British_thermal_unit_(international_steam_tables)", 1055.055853, "Btu (IT)", []),
|
507
|
+
("British thermal unit (ISO/TC 12)", "British_thermal_unit_(ISO/TC_12)", 1055.06, "Btu (ISO)", []),
|
508
|
+
("British thermal unit (mean)", "British_thermal_unit_(mean)", 1055.87, "Btu (mean) or Btu", ['Btu (mean)', 'Btu']),
|
509
|
+
("British thermal unit (thermochemical)", "British_thermal_unit_(thermochemical)", 1054.35, "Btu (therm)", []),
|
510
|
+
("calorie ( $20^{\\circ} \\mathrm{C}$ )", "calorie_(_$20^{\\circ}_\\mathrm{C}$_)", 4.1819, "cal ( $20^{\\circ} \\mathrm{C}$ )", []),
|
511
|
+
("calorie ( $4^{\\circ} \\mathrm{C}$ )", "calorie_(_$4^{\\circ}_\\mathrm{C}$_)", 4.2045, "cal ( $4^{\\circ} \\mathrm{C}$ )", []),
|
512
|
+
("calorie (international steam tables)", "calorie_(international_steam_tables)", 4.18674, "cal (IT)", []),
|
513
|
+
("calorie (mean)", "calorie_(mean)", 4.19002, "cal (mean)", []),
|
514
|
+
("Calorie (nutritional)", "Calorie_(nutritional)", 4184.0, "Cal (nutr)", []),
|
515
|
+
("calorie (thermochemical)", "calorie_(thermochemical)", 4.184, "cal (therm)", []),
|
516
|
+
("Celsius heat unit", "Celsius_heat_unit", 1899.18, "Chu", ['Chu']),
|
517
|
+
("Celsius heat unit ( $15{ }^{\\circ} \\mathrm{C}$ )", "Celsius_heat_unit_(_$15{_}^{\\circ}_\\mathrm{C}$_)", 1899.1, "Chu ( $15{ }^{\\circ} \\mathrm{C}$ )", []),
|
518
|
+
("electron volt", "electron_volt", 1.6022e-19, "eV", ['eV']),
|
519
|
+
("erg", "erg", 1e-07, "erg", ['erg']),
|
520
|
+
("foot pound force (duty)", "foot_pound_force_(duty)", 1.355818, "ft $\\mathrm{lb}_{\\mathrm{f}}$", []),
|
521
|
+
("foot-poundal", "foot_poundal", 0.04214, "ft pdl", []),
|
522
|
+
("frigorie", "frigorie", 4190.0, "fg", ['fg']),
|
523
|
+
("hartree (atomic unit of energy)", "hartree_(atomic_unit_of_energy)", 4.359700000000001e-18, "$\\mathrm{E}_{\\mathrm{H}}$ a.u.", []),
|
524
|
+
("joule", "joule", 1.0, "J", ['J']),
|
525
|
+
("joule (international)", "joule_(international)", 1.000165, "J (intl)", []),
|
526
|
+
("kilocalorie (thermal)", "kilocalorie_(thermal)", 4184.0, "kcal (therm)", []),
|
527
|
+
("kilogram force meter", "kilogram_force_meter", 9.80665, "$\\mathrm{kg}_{\\mathrm{f}}$ m", []),
|
528
|
+
("kiloton (TNT)", "kiloton_(TNT)", 4.1799999999999995e+18, "kt (TNT)", []),
|
529
|
+
("kilowatt hour", "kilowatt_hour", 3600000.0, "kWh", ['kWh']),
|
530
|
+
("liter atmosphere", "liter_atmosphere", 101.325, "L atm", []),
|
531
|
+
("megaton (TNT)", "megaton_(TNT)", 4.1799999999999995e+21, "Mt (TNT)", []),
|
532
|
+
("pound centigrade unit ( $15^{\\circ} \\mathrm{C}$ )", "pound_centigrade_unit_(_$15^{\\circ}_\\mathrm{C}$_)", 1899.1, "pcu ( $15{ }^{\\circ} \\mathrm{C}$ )", []),
|
533
|
+
("prout", "prout", 2.9638e-14, "prout", []),
|
534
|
+
("Q unit", "Q_unit", 1.055e+21, "Q", ['Q']),
|
535
|
+
("quad (quadrillion Btu)", "quad_(quadrillion_Btu)", 1.0550999999999999e+18, "quad", ['quad']),
|
536
|
+
("rydberg", "rydberg", 2.1799000000000002e-18, "Ry", ['Ry']),
|
537
|
+
("therm (EEG)", "therm_(EEG)", 105510000.0, "therm (EEG)", []),
|
538
|
+
("therm (refineries)", "therm_(refineries)", 1055900000.0000001, "therm (refy) or therm", ['therm (refy)', 'therm']),
|
539
|
+
("therm (US)", "therm_(US)", 105480000.0, "therm (US) or therm", ['therm']),
|
540
|
+
("ton coal equivalent", "ton_coal_equivalent", 292900000.0, "tce (tec)", []),
|
541
|
+
("ton oil equivalent", "ton_oil_equivalent", 418700000.0, "toe (tep)", []),
|
542
|
+
("kilojoule", "kilojoule", 1000.0, "kJ", ['kJ']),
|
543
|
+
("megajoule", "megajoule", 1000000.0, "MJ", ['MJ']),
|
544
|
+
("gigajoule", "gigajoule", 1000000000.0, "GJ", ['GJ'])
|
545
|
+
],
|
546
|
+
"field_name": "energy_heat_work",
|
547
|
+
"display_name": "Energy, Heat, Work",
|
548
|
+
},
|
549
|
+
"EnergyPerUnitArea": {
|
550
|
+
"dimension": ENERGY_PER_UNIT_AREA,
|
551
|
+
"default_unit": "joule_per_square_meter",
|
552
|
+
"units": [
|
553
|
+
("British thermal unit per square foot", "British_thermal_unit_per_square_foot", 11354.0, "$\\mathrm{Btu} / \\mathrm{ft}^{2}$ or Btu/sq ft", ['Btu / ft^{2', 'Btu/sq ft']),
|
554
|
+
("joule per square meter", "joule_per_square_meter", 1.0, "$\\mathrm{J} / \\mathrm{m}^{2}$", []),
|
555
|
+
("Langley", "Langley", 41840.0, "Ly", ['Ly'])
|
556
|
+
],
|
557
|
+
"field_name": "energy_per_unit_area",
|
558
|
+
"display_name": "Energy per Unit Area",
|
559
|
+
},
|
560
|
+
"Force": {
|
561
|
+
"dimension": FORCE,
|
562
|
+
"default_unit": "newton",
|
563
|
+
"units": [
|
564
|
+
("crinal", "crinal", 0.1, "crinal", []),
|
565
|
+
("dyne", "dyne", 1e-05, "dyn", ['dyn']),
|
566
|
+
("funal", "funal", 1000.0, "funal", []),
|
567
|
+
("kilogram force", "kilogram_force", 9.80665, "$\\mathrm{kg}_{\\mathrm{f}}$", []),
|
568
|
+
("kip force", "kip_force", 4448.22, "$\\operatorname{kip}_{\\mathrm{f}}$", []),
|
569
|
+
("newton", "newton", 1.0, "N", ['N']),
|
570
|
+
("ounce force", "ounce_force", 0.27801385, "$\\mathrm{oz}_{\\mathrm{f}}$ or oz", ['oz_{f', 'oz']),
|
571
|
+
("pond", "pond", 0.0098066, "p", ['p']),
|
572
|
+
("pound force", "pound_force", 4.4482216, "$\\mathrm{lb}_{\\mathrm{f}}$ or lb", ['lb_{f', 'lb']),
|
573
|
+
("poundal", "poundal", 0.13825495, "pdl", ['pdl']),
|
574
|
+
("slug force", "slug_force", 143.117, "$\\operatorname{slug}_{f}$", []),
|
575
|
+
("sthène", "sthène", 1000.0, "sn", ['sn']),
|
576
|
+
("ton (force, long)", "ton_(force,_long)", 9964.016, "LT", ['LT']),
|
577
|
+
("ton (force, metric)", "ton_(force,_metric)", 9806.65, "MT", ['MT']),
|
578
|
+
("ton (force, short)", "ton_(force,_short)", 8896.44, "T", ['T']),
|
579
|
+
("kilonewton", "kilonewton", 1000.0, "kN", ['kN']),
|
580
|
+
("millinewton", "millinewton", 0.001, "mN", ['mN'])
|
581
|
+
],
|
582
|
+
"field_name": "force",
|
583
|
+
"display_name": "Force",
|
584
|
+
},
|
585
|
+
"ForceBody": {
|
586
|
+
"dimension": FORCE_BODY,
|
587
|
+
"default_unit": "newton_per_cubic_meter",
|
588
|
+
"units": [
|
589
|
+
("dyne per cubic centimeter", "dyne_per_cubic_centimeter", 10.0, "dyn/cc or dyn/ $\\mathrm{cm}^{3}$", ['dyn/cc', 'dyn/ cm^{3']),
|
590
|
+
("kilogram force per cubic centimeter", "kilogram_force_per_cubic_centimeter", 9806700.0, "$\\mathrm{kg}_{\\mathrm{f}} / \\mathrm{cm}^{3}$", []),
|
591
|
+
("kilogram force per cubic meter", "kilogram_force_per_cubic_meter", 9.80665, "$\\mathrm{kg}_{\\mathrm{f}} / \\mathrm{m}^{3}$", []),
|
592
|
+
("newton per cubic meter", "newton_per_cubic_meter", 1.0, "$\\mathrm{N} / \\mathrm{m}^{3}$", []),
|
593
|
+
("pound force per cubic foot", "pound_force_per_cubic_foot", 157.087, "$\\mathrm{lb}_{\\mathrm{f}} / \\mathrm{cft}$", []),
|
594
|
+
("pound force per cubic inch", "pound_force_per_cubic_inch", 271450.0, "$\\mathrm{lb}_{\\mathrm{f}} / \\mathrm{cu} . \\mathrm{in}$.", []),
|
595
|
+
("ton force per cubic foot", "ton_force_per_cubic_foot", 351880.0, "ton $_{\\mathrm{f}} / \\mathrm{cft}$", [])
|
596
|
+
],
|
597
|
+
"field_name": "force_body",
|
598
|
+
"display_name": "Force (Body)",
|
599
|
+
},
|
600
|
+
"ForcePerUnitMass": {
|
601
|
+
"dimension": FORCE_PER_UNIT_MASS,
|
602
|
+
"default_unit": "newton_per_kilogram",
|
603
|
+
"units": [
|
604
|
+
("dyne per gram", "dyne_per_gram", 0.01, "dyn/g", []),
|
605
|
+
("kilogram force per kilogram", "kilogram_force_per_kilogram", 9.80665, "$\\mathrm{kg}_{\\mathrm{f}} / \\mathrm{kg}$", []),
|
606
|
+
("newton per kilogram", "newton_per_kilogram", 1.0, "N/kg", []),
|
607
|
+
("pound force per pound mass", "pound_force_per_pound_mass", 9.80665, "$\\mathrm{lb}_{\\mathrm{f}} / \\mathrm{lb}$ or $\\mathrm{lb}_{\\mathrm{f}} / \\mathrm{lb}_{\\mathrm{m}}$", ['lb_{f / lb', 'lb_{f / lb_{m']),
|
608
|
+
("pound force per slug", "pound_force_per_slug", 0.3048, "$\\mathrm{lb}_{\\mathrm{f}} /$ slug", [])
|
609
|
+
],
|
610
|
+
"field_name": "force_per_unit_mass",
|
611
|
+
"display_name": "Force per Unit Mass",
|
612
|
+
},
|
613
|
+
"FrequencyVoltageRatio": {
|
614
|
+
"dimension": FREQUENCY_VOLTAGE_RATIO,
|
615
|
+
"default_unit": "cycles_per_second_per_volt",
|
616
|
+
"units": [
|
617
|
+
("cycles per second per volt", "cycles_per_second_per_volt", 1.0, "cycle/(sec V)", []),
|
618
|
+
("hertz per volt", "hertz_per_volt", 1.0, "Hz/V", []),
|
619
|
+
("terahertz per volt", "terahertz_per_volt", 1000000000000.0, "THz/V", [])
|
620
|
+
],
|
621
|
+
"field_name": "frequency_voltage_ratio",
|
622
|
+
"display_name": "Frequency Voltage Ratio",
|
623
|
+
},
|
624
|
+
"FuelConsumption": {
|
625
|
+
"dimension": FUEL_CONSUMPTION,
|
626
|
+
"default_unit": "kilometers_per_liter",
|
627
|
+
"units": [
|
628
|
+
("100 km per liter", "100_km_per_liter", 100.0, "$100 \\mathrm{~km} / \\mathrm{l}$", []),
|
629
|
+
("gallons (UK) per 100 miles", "gallons_(UK)_per_100_miles", 35.4, "gal (UK)/ 100 mi", []),
|
630
|
+
("gallons (US) per 100 miles", "gallons_(US)_per_100_miles", 42.51, "gal (US)/ 100 mi", []),
|
631
|
+
("kilometers per gallon (UK)", "kilometers_per_gallon_(UK)", 0.21997, "km/gal (UK)", []),
|
632
|
+
("kilometers per gallon (US)", "kilometers_per_gallon_(US)", 0.26417, "km/gal(US)", []),
|
633
|
+
("kilometers per liter", "kilometers_per_liter", 1.0, "km/l", []),
|
634
|
+
("liters per 100 km", "liters_per_100_km", 100.0, "$1 / 100 \\mathrm{~km}$", []),
|
635
|
+
("liters per kilometer", "liters_per_kilometer", 1.0, "1/km", []),
|
636
|
+
("meters per gallon (UK)", "meters_per_gallon_(UK)", 0.00021997, "m/gal (UK)", []),
|
637
|
+
("meters per gallon (US)", "meters_per_gallon_(US)", 0.00022642000000000004, "1/gal (US)", []),
|
638
|
+
("miles per gallon (UK)", "miles_per_gallon_(UK)", 0.35401, "mi/gal (UK) or mpg (UK)", ['mi/gal (UK)', 'mpg (UK)']),
|
639
|
+
("miles per gallon (US)", "miles_per_gallon_(US)", 0.42514, "mi/gal (US) or mpg (US)", ['mi/gal (US)', 'mpg (US)']),
|
640
|
+
("miles per liter", "miles_per_liter", 1.6093, "mi/l", [])
|
641
|
+
],
|
642
|
+
"field_name": "fuel_consumption",
|
643
|
+
"display_name": "Fuel Consumption",
|
644
|
+
},
|
645
|
+
"HeatOfCombustion": {
|
646
|
+
"dimension": HEAT_OF_COMBUSTION,
|
647
|
+
"default_unit": "joule_per_kilogram",
|
648
|
+
"units": [
|
649
|
+
("British thermal unit per pound", "British_thermal_unit_per_pound", 2326.0, "Btu/lb", []),
|
650
|
+
("calorie per gram", "calorie_per_gram", 4186.0, "$\\mathrm{cal} / \\mathrm{g}$", []),
|
651
|
+
("Chu per pound", "Chu_per_pound", 4186.8, "Chu/lb", []),
|
652
|
+
("joule per kilogram", "joule_per_kilogram", 1.0, "J/kg", [])
|
653
|
+
],
|
654
|
+
"field_name": "heat_of_combustion",
|
655
|
+
"display_name": "Heat of Combustion",
|
656
|
+
},
|
657
|
+
"HeatOfFusion": {
|
658
|
+
"dimension": HEAT_OF_FUSION,
|
659
|
+
"default_unit": "joule_per_kilogram",
|
660
|
+
"units": [
|
661
|
+
("British thermal unit (mean) per pound", "British_thermal_unit_(mean)_per_pound", 2327.79, "Btu (mean)/lb", []),
|
662
|
+
("British thermal unit per pound", "British_thermal_unit_per_pound", 2326.0, "Btu/lb", []),
|
663
|
+
("calorie per gram", "calorie_per_gram", 4186.0, "$\\mathrm{cal} / \\mathrm{g}$", []),
|
664
|
+
("Chu per pound", "Chu_per_pound", 4186.8, "Chu/lb", []),
|
665
|
+
("joule per kilogram", "joule_per_kilogram", 1.0, "J/kg", [])
|
666
|
+
],
|
667
|
+
"field_name": "heat_of_fusion",
|
668
|
+
"display_name": "Heat of Fusion",
|
669
|
+
},
|
670
|
+
"HeatOfVaporization": {
|
671
|
+
"dimension": HEAT_OF_VAPORIZATION,
|
672
|
+
"default_unit": "joule_per_kilogram",
|
673
|
+
"units": [
|
674
|
+
("British thermal unit per pound", "British_thermal_unit_per_pound", 2326.0, "Btu/lb", []),
|
675
|
+
("calorie per gram", "calorie_per_gram", 4186.0, "$\\mathrm{cal} / \\mathrm{g}$", []),
|
676
|
+
("Chu per pound", "Chu_per_pound", 4186.8, "Chu/lb", []),
|
677
|
+
("joule per kilogram", "joule_per_kilogram", 1.0, "J/kg", [])
|
678
|
+
],
|
679
|
+
"field_name": "heat_of_vaporization",
|
680
|
+
"display_name": "Heat of Vaporization",
|
681
|
+
},
|
682
|
+
"HeatTransferCoefficient": {
|
683
|
+
"dimension": HEAT_TRANSFER_COEFFICIENT,
|
684
|
+
"default_unit": "watt_per_square_meter_per_degree_Celsius_(or_kelvin)",
|
685
|
+
"units": [
|
686
|
+
("Btu per square foot per hour per degree Fahrenheit (or Rankine)", "Btu_per_square_foot_per_hour_per_degree_Fahrenheit_(or_Rankine)", 5.679, "$\\mathrm{Btu} /\\left(\\mathrm{ft}^{2} \\mathrm{~h}{ }^{\\circ} \\mathrm{F}\\right)$", []),
|
687
|
+
("watt per square meter per degree Celsius (or kelvin)", "watt_per_square_meter_per_degree_Celsius_(or_kelvin)", 1.0, "$\\mathrm{W} /\\left(\\mathrm{m}^{2}{ }^{\\circ} \\mathrm{C}\\right)$", [])
|
688
|
+
],
|
689
|
+
"field_name": "heat_transfer_coefficient",
|
690
|
+
"display_name": "Heat Transfer Coefficient",
|
691
|
+
},
|
692
|
+
"Illuminance": {
|
693
|
+
"dimension": ILLUMINANCE,
|
694
|
+
"default_unit": "lux",
|
695
|
+
"units": [
|
696
|
+
("foot-candle", "foot_candle", 10.76391, "$\\mathrm{ft}-\\mathrm{C}$ or $\\mathrm{ft}-\\mathrm{Cd}$", ['ft-C', 'ft-Cd']),
|
697
|
+
("lux", "lux", 1.0, "lx", ['lx']),
|
698
|
+
("nox", "nox", 0.001, "nox", ['nox']),
|
699
|
+
("phot", "phot", 10000.0, "ph", ['ph']),
|
700
|
+
("skot", "skot", 0.001, "skot", ['skot'])
|
701
|
+
],
|
702
|
+
"field_name": "illuminance",
|
703
|
+
"display_name": "Illuminance",
|
704
|
+
},
|
705
|
+
"KineticEnergyOfTurbulence": {
|
706
|
+
"dimension": KINETIC_ENERGY_OF_TURBULENCE,
|
707
|
+
"default_unit": "square_meters_per_second_squared",
|
708
|
+
"units": [
|
709
|
+
("square foot per second squared", "square_foot_per_second_squared", 0.0929, "$\\mathrm{ft}^{2} / \\mathrm{s}^{2}$ or sqft/sec ${ }^{2}$", ['ft^{2 / s^{2', 'sqft/sec { ^{2']),
|
710
|
+
("square meters per second squared", "square_meters_per_second_squared", 1.0, "$\\mathrm{m}^{2} / \\mathrm{s}^{2}$", [])
|
711
|
+
],
|
712
|
+
"field_name": "kinetic_energy_of_turbulence",
|
713
|
+
"display_name": "Kinetic Energy of Turbulence",
|
714
|
+
},
|
715
|
+
"Length": {
|
716
|
+
"dimension": LENGTH,
|
717
|
+
"default_unit": "meter",
|
718
|
+
"units": [
|
719
|
+
("ångström", "ångström", 1e-10, "$\\AA$", ['AA']),
|
720
|
+
("arpent (Quebec)", "arpent_(Quebec)", 58.47, "arp", ['arp']),
|
721
|
+
("astronomic unit", "astronomic_unit", 149600000000.0, "AU", ['AU']),
|
722
|
+
("attometer", "attometer", 1e-18, "am", ['am']),
|
723
|
+
("calibre (centinch)", "calibre_(centinch)", 0.000254, "cin", ['cin']),
|
724
|
+
("centimeter", "centimeter", 0.01, "cm", ['cm']),
|
725
|
+
("chain (Engr's or Ramsden)", "chain_(Engr's_or_Ramsden)", 30.48, "ch (eng or Rams)", ['ch (eng', 'Rams)']),
|
726
|
+
("chain (Gunter's)", "chain_(Gunter's)", 20.1168, "ch (Gunt)", []),
|
727
|
+
("chain (surveyors)", "chain_(surveyors)", 20.1168, "ch (surv)", []),
|
728
|
+
("cubit (UK)", "cubit_(UK)", 0.4572, "cu (UK)", []),
|
729
|
+
("ell", "ell", 1.143, "ell", ['ell']),
|
730
|
+
("fathom", "fathom", 1.8288, "fath", ['fath']),
|
731
|
+
("femtometre", "femtometre", 1e-15, "fm", ['fm']),
|
732
|
+
("fermi", "fermi", 1e-15, "F", ['F']),
|
733
|
+
("foot", "foot", 0.3048, "ft", ['ft']),
|
734
|
+
("furlong (UK and US)", "furlong_(UK_and_US)", 201.168, "fur", ['fur']),
|
735
|
+
("inch", "inch", 0.0254, "in", ['in']),
|
736
|
+
("kilometer", "kilometer", 1000.0, "km", ['km']),
|
737
|
+
("league (US, statute)", "league_(US,_statute)", 4828.0, "lg (US, stat)", []),
|
738
|
+
("lieue (metric)", "lieue_(metric)", 4000.0, "lieue (metric)", []),
|
739
|
+
("ligne (metric)", "ligne_(metric)", 0.0023, "ligne (metric)", []),
|
740
|
+
("line (US)", "line_(US)", 0.000635, "li (US)", []),
|
741
|
+
("link (surveyors)", "link_(surveyors)", 0.201168, "li (surv)", []),
|
742
|
+
("meter", "meter", 1.0, "m", ['m']),
|
743
|
+
("micrometer", "micrometer", 1e-06, "$\\mu \\mathrm{m}$", []),
|
744
|
+
("micron", "micron", 1e-06, "$\\mu$", ['mu']),
|
745
|
+
("mil", "mil", 2.54e-05, "mil", ['mil']),
|
746
|
+
("mile (geographical)", "mile_(geographical)", 7421.59, "mi", ['mi']),
|
747
|
+
("mile (US, nautical)", "mile_(US,_nautical)", 1853.2, "mi (US, naut)", []),
|
748
|
+
("mile (US, statute)", "mile_(US,_statute)", 1609.344, "mi", ['mi']),
|
749
|
+
("mile (US, survey)", "mile_(US,_survey)", 1609.3, "mi (US, surv)", []),
|
750
|
+
("millimeter", "millimeter", 0.001, "mm", ['mm']),
|
751
|
+
("millimicron", "millimicron", 1e-09, "$\\mathrm{m} \\mu$", []),
|
752
|
+
("nanometer or nanon", "nanometer_or_nanon", 1e-09, "nm", ['nm']),
|
753
|
+
("parsec", "parsec", 3.086e+16, "pc", ['pc']),
|
754
|
+
("perche", "perche", 5.0292, "rod", ['rod']),
|
755
|
+
("pica", "pica", 0.0042175, "pica", ['pica']),
|
756
|
+
("picometer", "picometer", 1e-12, "pm", ['pm']),
|
757
|
+
("point (Didot)", "point_(Didot)", 0.00037597, "pt (Didot)", []),
|
758
|
+
("point (US)", "point_(US)", 0.00035146, "pt (US)", []),
|
759
|
+
("rod or pole", "rod_or_pole", 5.0292, "rod", ['rod']),
|
760
|
+
("span", "span", 0.2286, "span", ['span']),
|
761
|
+
("thou (millinch)", "thou_(millinch)", 2.54e-05, "thou", ['thou']),
|
762
|
+
("toise (metric)", "toise_(metric)", 2.0, "toise (metric)", []),
|
763
|
+
("yard", "yard", 0.9144, "yd", ['yd']),
|
764
|
+
("nanometer", "nanometer", 1e-09, "nm", ['nm'])
|
765
|
+
],
|
766
|
+
"field_name": "length",
|
767
|
+
"display_name": "Length",
|
768
|
+
},
|
769
|
+
"LinearMassDensity": {
|
770
|
+
"dimension": LINEAR_MASS_DENSITY,
|
771
|
+
"default_unit": "kilogram_per_meter",
|
772
|
+
"units": [
|
773
|
+
("denier", "denier", 1.111e-07, "denier", []),
|
774
|
+
("kilogram per centimeter", "kilogram_per_centimeter", 100.0, "kg/cm", []),
|
775
|
+
("kilogram per meter", "kilogram_per_meter", 1.0, "kg/m", []),
|
776
|
+
("pound per foot", "pound_per_foot", 1.488, "lb/ft", []),
|
777
|
+
("pound per inch", "pound_per_inch", 17.858, "lb/in", []),
|
778
|
+
("pound per yard", "pound_per_yard", 0.49606, "lb/yd", []),
|
779
|
+
("ton (metric) per kilometer", "ton_(metric)_per_kilometer", 1.0, "t/km or MT/km", ['t/km', 'MT/km']),
|
780
|
+
("ton (metric) per meter", "ton_(metric)_per_meter", 1000.0, "t/m or MT/m", ['t/m', 'MT/m'])
|
781
|
+
],
|
782
|
+
"field_name": "linear_mass_density",
|
783
|
+
"display_name": "Linear Mass Density",
|
784
|
+
},
|
785
|
+
"LinearMomentum": {
|
786
|
+
"dimension": LINEAR_MOMENTUM,
|
787
|
+
"default_unit": "kilogram_meters_per_second",
|
788
|
+
"units": [
|
789
|
+
("foot pounds force per hour", "foot_pounds_force_per_hour", 3.8400000000000005e-05, "${\\mathrm{ft} \\mathrm{lb}_{\\mathrm{f}}}^{/} \\mathrm{h}$ or $\\mathrm{ft}-\\mathrm{lb} / \\mathrm{hr}$", ['{ft lb_{f^{/ h', 'ft-lb / hr']),
|
790
|
+
("foot pounds force per minute", "foot_pounds_force_per_minute", 0.0023042, "$\\mathrm{ft} \\mathrm{lb}_{\\mathrm{f}} / \\min$ or $\\mathrm{ft}-\\mathrm{lb} /$ min", ['ft lb_{f / min', 'ft-lb / min']),
|
791
|
+
("foot pounds force per second", "foot_pounds_force_per_second", 0.13825, "$\\mathrm{ft} \\mathrm{lb}_{\\mathrm{f}} / \\mathrm{s}$ or ft-lb/sec", ['ft lb_{f / s', 'ft-lb/sec']),
|
792
|
+
("gram centimeters per second", "gram_centimeters_per_second", 1e-05, "$\\mathrm{g} \\mathrm{cm} / \\mathrm{s}$", []),
|
793
|
+
("kilogram meters per second", "kilogram_meters_per_second", 1.0, "$\\mathrm{kg} \\mathrm{m} / \\mathrm{s}$", [])
|
794
|
+
],
|
795
|
+
"field_name": "linear_momentum",
|
796
|
+
"display_name": "Linear Momentum",
|
797
|
+
},
|
798
|
+
"LuminanceSelf": {
|
799
|
+
"dimension": LUMINANCE_SELF,
|
800
|
+
"default_unit": "candela_per_square_meter",
|
801
|
+
"units": [
|
802
|
+
("apostilb", "apostilb", 0.31831, "asb", ['asb']),
|
803
|
+
("blondel", "blondel", 0.31831, "B1", []),
|
804
|
+
("candela per square meter", "candela_per_square_meter", 1.0, "$\\mathrm{cd} / \\mathrm{m}^{2}$", []),
|
805
|
+
("foot-lambert", "foot_lambert", 3.426259, "ft-L", []),
|
806
|
+
("lambert", "lambert", 3183.1, "L", ['L']),
|
807
|
+
("luxon", "luxon", 10000.0, "luxon", []),
|
808
|
+
("nit", "nit", 1.0, "nit", ['nit']),
|
809
|
+
("stilb", "stilb", 10000.0, "sb", ['sb']),
|
810
|
+
("troland", "troland", 10000.0, "luxon", [])
|
811
|
+
],
|
812
|
+
"field_name": "luminance_self",
|
813
|
+
"display_name": "Luminance (self)",
|
814
|
+
},
|
815
|
+
"LuminousFlux": {
|
816
|
+
"dimension": LUMINOUS_FLUX,
|
817
|
+
"default_unit": "candela_steradian",
|
818
|
+
"units": [
|
819
|
+
("candela steradian", "candela_steradian", 1.0, "cd sr", []),
|
820
|
+
("lumen", "lumen", 1.0, "lumen", [])
|
821
|
+
],
|
822
|
+
"field_name": "luminous_flux",
|
823
|
+
"display_name": "Luminous Flux",
|
824
|
+
},
|
825
|
+
"LuminousIntensity": {
|
826
|
+
"dimension": LUMINOUS_INTENSITY,
|
827
|
+
"default_unit": "candela",
|
828
|
+
"units": [
|
829
|
+
("candela", "candela", 1.0, "cd", ['cd']),
|
830
|
+
("candle (international)", "candle_(international)", 1.01937, "Cd (int)", []),
|
831
|
+
("carcel", "carcel", 10.0, "carcel", []),
|
832
|
+
("Hefner unit", "Hefner_unit", 0.903, "HK", ['HK'])
|
833
|
+
],
|
834
|
+
"field_name": "luminous_intensity",
|
835
|
+
"display_name": "Luminous Intensity",
|
836
|
+
},
|
837
|
+
"MagneticField": {
|
838
|
+
"dimension": MAGNETIC_FIELD,
|
839
|
+
"default_unit": "ampere_per_meter",
|
840
|
+
"units": [
|
841
|
+
("ampere per meter", "ampere_per_meter", 1.0, "A/m", []),
|
842
|
+
("lenz", "lenz", 1.0, "lenz", ['lenz']),
|
843
|
+
("oersted", "oersted", 79.57747, "Oe", ['Oe']),
|
844
|
+
("praoersted", "praoersted", 11459.08, "-", [])
|
845
|
+
],
|
846
|
+
"field_name": "magnetic_field",
|
847
|
+
"display_name": "Magnetic Field",
|
848
|
+
},
|
849
|
+
"MagneticFlux": {
|
850
|
+
"dimension": MAGNETIC_FLUX,
|
851
|
+
"default_unit": "weber",
|
852
|
+
"units": [
|
853
|
+
("kapp line", "kapp_line", 6.000000000000001e-05, "-", []),
|
854
|
+
("line", "line", 1e-08, "line", ['line']),
|
855
|
+
("maxwell", "maxwell", 1e-08, "Mx", ['Mx']),
|
856
|
+
("unit pole", "unit_pole", 1.2565999999999998e-07, "unit pole", []),
|
857
|
+
("weber", "weber", 1.0, "Wb", ['Wb']),
|
858
|
+
("milliweber", "milliweber", 0.001, "mWb", ['mWb']),
|
859
|
+
("microweber", "microweber", 1e-06, "μWb", ['μWb'])
|
860
|
+
],
|
861
|
+
"field_name": "magnetic_flux",
|
862
|
+
"display_name": "Magnetic Flux",
|
863
|
+
},
|
864
|
+
"MagneticInductionFieldStrength": {
|
865
|
+
"dimension": MAGNETIC_INDUCTION_FIELD_STRENGTH,
|
866
|
+
"default_unit": "tesla",
|
867
|
+
"units": [
|
868
|
+
("gamma", "gamma", 1e-09, "$\\gamma$", []),
|
869
|
+
("gauss", "gauss", 0.0001, "G", ['G']),
|
870
|
+
("line per square centimeter", "line_per_square_centimeter", 0.0001, "line $/ \\mathrm{cm}^{2}$", []),
|
871
|
+
("maxwell per square centimeter", "maxwell_per_square_centimeter", 0.0001, "$\\mathrm{Mx} / \\mathrm{cm}^{2}$", []),
|
872
|
+
("tesla", "tesla", 1.0, "T", ['T']),
|
873
|
+
("u.a.", "u_a_", 2350520000000000.0, "u.a.", []),
|
874
|
+
("weber per square meter", "weber_per_square_meter", 1.0, "$\\mathrm{Wb} / \\mathrm{m}^{2}$", []),
|
875
|
+
("millitesla", "millitesla", 0.001, "mT", ['mT']),
|
876
|
+
("microtesla", "microtesla", 1e-06, "μT", ['μT']),
|
877
|
+
("nanotesla", "nanotesla", 1e-09, "nT", ['nT'])
|
878
|
+
],
|
879
|
+
"field_name": "magnetic_induction_field_strength",
|
880
|
+
"display_name": "Magnetic Induction Field Strength",
|
881
|
+
},
|
882
|
+
"MagneticMoment": {
|
883
|
+
"dimension": MAGNETIC_MOMENT,
|
884
|
+
"default_unit": "joule_per_tesla",
|
885
|
+
"units": [
|
886
|
+
("Bohr magneton", "Bohr_magneton", 9.273999999999999e-24, "Bohr magneton", []),
|
887
|
+
("joule per tesla", "joule_per_tesla", 1.0, "J/T", []),
|
888
|
+
("nuclear magneton", "nuclear_magneton", 5.0508e-27, "nucl. Magneton", [])
|
889
|
+
],
|
890
|
+
"field_name": "magnetic_moment",
|
891
|
+
"display_name": "Magnetic Moment",
|
892
|
+
},
|
893
|
+
"MagneticPermeability": {
|
894
|
+
"dimension": MAGNETIC_PERMEABILITY,
|
895
|
+
"default_unit": "henrys_per_meter",
|
896
|
+
"units": [
|
897
|
+
("henrys per meter", "henrys_per_meter", 1.0, "H/m", []),
|
898
|
+
("newton per square ampere", "newton_per_square_ampere", 1.0, "N/A ${ }^{2}$", [])
|
899
|
+
],
|
900
|
+
"field_name": "magnetic_permeability",
|
901
|
+
"display_name": "Magnetic Permeability",
|
902
|
+
},
|
903
|
+
"MagnetomotiveForce": {
|
904
|
+
"dimension": MAGNETOMOTIVE_FORCE,
|
905
|
+
"default_unit": "ampere",
|
906
|
+
"units": [
|
907
|
+
("abampere-turn", "abampere_turn", 10.0, "emu cgs", []),
|
908
|
+
("ampere", "ampere", 1.0, "A", ['A']),
|
909
|
+
("ampere-turn", "ampere_turn", 2864.77, "A-turn", []),
|
910
|
+
("gilbert", "gilbert", 0.79577, "Gb", ['Gb']),
|
911
|
+
("kiloampere", "kiloampere", 1000.0, "kA", ['kA']),
|
912
|
+
("milliampere", "milliampere", 0.001, "mA", ['mA']),
|
913
|
+
("microampere", "microampere", 1e-06, "μA", ['μA']),
|
914
|
+
("nanoampere", "nanoampere", 1e-09, "nA", ['nA']),
|
915
|
+
("picoampere", "picoampere", 1e-12, "pA", ['pA'])
|
916
|
+
],
|
917
|
+
"field_name": "magnetomotive_force",
|
918
|
+
"display_name": "Magnetomotive Force",
|
919
|
+
},
|
920
|
+
"Mass": {
|
921
|
+
"dimension": MASS,
|
922
|
+
"default_unit": "kilogram",
|
923
|
+
"units": [
|
924
|
+
("slug", "slug", 14.594, "sl", ['sl']),
|
925
|
+
("atomic mass unit ( ${ }^{12} \\mathrm{C}$ )", "atomic_mass_unit_(_${_}^{12}_\\mathrm{C}$_)", 1.6605000000000002e-27, "$\\mathrm{u}\\left({ }^{12} \\mathrm{C}\\right)$ or amu", ['uleft({ ^{12 Cright)', 'amu']),
|
926
|
+
("carat (metric)", "carat_(metric)", 0.0002, "ct", ['ct']),
|
927
|
+
("cental", "cental", 45.359, "sh cwt, cH", []),
|
928
|
+
("centigram", "centigram", 1e-05, "cg", ['cg']),
|
929
|
+
("clove (UK)", "clove_(UK)", 3.6287, "cl", ['cl']),
|
930
|
+
("drachm (apothecary)", "drachm_(apothecary)", 0.0038879, "dr (ap)", []),
|
931
|
+
("dram (avoirdupois)", "dram_(avoirdupois)", 0.0017718, "dr (av)", []),
|
932
|
+
("dram (troy)", "dram_(troy)", 0.0038879, "dr (troy)", []),
|
933
|
+
("grain", "grain", 6.4799e-05, "gr", ['gr']),
|
934
|
+
("gram", "gram", 0.001, "g", ['g']),
|
935
|
+
("hundredweight, long or gross", "hundredweight,_long_or_gross", 50.802, "cwt, lg cwt", []),
|
936
|
+
("hundredweight, short or net", "hundredweight,_short_or_net", 45.359, "sh cwt", []),
|
937
|
+
("kilogram", "kilogram", 1.0, "kg", ['kg']),
|
938
|
+
("kip", "kip", 453.59, "kip", ['kip']),
|
939
|
+
("microgram", "microgram", 1e-09, "$\\mu \\mathrm{g}$", []),
|
940
|
+
("milligram", "milligram", 1e-06, "mg", ['mg']),
|
941
|
+
("ounce (apothecary)", "ounce_(apothecary)", 0.031103, "oz (ap)", []),
|
942
|
+
("ounce (avoirdupois)", "ounce_(avoirdupois)", 0.02835, "oz", ['oz']),
|
943
|
+
("ounce (troy)", "ounce_(troy)", 0.031103, "oz (troy)", []),
|
944
|
+
("pennyweight (troy)", "pennyweight_(troy)", 0.0015552, "dwt (troy)", []),
|
945
|
+
("pood, (Russia)", "pood,_(Russia)", 16.38, "pood", ['pood']),
|
946
|
+
("pound (apothecary)", "pound_(apothecary)", 0.37324, "lb (ap)", []),
|
947
|
+
("pound (avoirdupois)", "pound_(avoirdupois)", 0.45359, "lb (av)", []),
|
948
|
+
("pound (troy)", "pound_(troy)", 0.37324, "lb (troy)", []),
|
949
|
+
("pound mass", "pound_mass", 0.45359, "$\\mathrm{lb}_{\\mathrm{m}}$", []),
|
950
|
+
("quarter (UK)", "quarter_(UK)", 12.7, "qt", ['qt']),
|
951
|
+
("quintal, metric", "quintal,_metric", 100.0, "q, dt", []),
|
952
|
+
("quital, US", "quital,_US", 45.359, "quint (US)", []),
|
953
|
+
("scruple (avoirdupois)", "scruple_(avoirdupois)", 0.001575, "scf", ['scf']),
|
954
|
+
("stone (UK)", "stone_(UK)", 6.3503, "st", ['st']),
|
955
|
+
("ton, metric", "ton,_metric", 1000.0, "t", ['t']),
|
956
|
+
("ton, US, long", "ton,_US,_long", 1016.0, "lg ton", []),
|
957
|
+
("ton, US, short", "ton,_US,_short", 907.18, "sh ton", [])
|
958
|
+
],
|
959
|
+
"field_name": "mass",
|
960
|
+
"display_name": "Mass",
|
961
|
+
},
|
962
|
+
"MassDensity": {
|
963
|
+
"dimension": MASS_DENSITY,
|
964
|
+
"default_unit": "gram_per_cubic_decimeter",
|
965
|
+
"units": [
|
966
|
+
("gram per cubic centimeter", "gram_per_cubic_centimeter", 1000.0, "g/cc or g/ml", ['g/cc', 'g/ml']),
|
967
|
+
("gram per cubic decimeter", "gram_per_cubic_decimeter", 1.0, "$\\mathrm{g} / \\mathrm{dm}^{3}$", []),
|
968
|
+
("gram per cubic meter", "gram_per_cubic_meter", 0.001, "$\\mathrm{g} / \\mathrm{m}^{3}$", []),
|
969
|
+
("gram per liter", "gram_per_liter", 1.0, "$\\mathrm{g} / \\mathrm{l}$ or g/L", ['g / l', 'g/L']),
|
970
|
+
("kilogram per cubic meter", "kilogram_per_cubic_meter", 1.0, "$\\mathrm{kg} / \\mathrm{m}^{3}$", []),
|
971
|
+
("ounce (avdp) per US gallon", "ounce_(avdp)_per_US_gallon", 7.489152, "oz/gal", []),
|
972
|
+
("pound (avdp) per cubic foot", "pound_(avdp)_per_cubic_foot", 16.01846, "$\\mathrm{lb} / \\mathrm{cu} \\mathrm{ft}$ or lb/ft ${ }^{3}$", ['lb / cu ft', 'lb/ft { ^{3']),
|
973
|
+
("pound (avdp) per US gallon", "pound_(avdp)_per_US_gallon", 119.826, "lb/gal", []),
|
974
|
+
("pound (mass) per cubic inch", "pound_(mass)_per_cubic_inch", 0.000276799, "$\\mathrm{lb} / \\mathrm{cu}$ in or $\\mathrm{lb} / \\mathrm{in}^{3}$", ['lb / cu in', 'lb / in^{3']),
|
975
|
+
("ton (metric) per cubic meter", "ton_(metric)_per_cubic_meter", 1000.0, "$\\mathrm{t} / \\mathrm{m}^{3}$ or MT $/ \\mathrm{m}^{3}$", ['t / m^{3', 'MT / m^{3'])
|
976
|
+
],
|
977
|
+
"field_name": "mass_density",
|
978
|
+
"display_name": "Mass Density",
|
979
|
+
},
|
980
|
+
"MassFlowRate": {
|
981
|
+
"dimension": MASS_FLOW_RATE,
|
982
|
+
"default_unit": "kilograms_per_second",
|
983
|
+
"units": [
|
984
|
+
("kilograms per day", "kilograms_per_day", 1.1574000000000001e-05, "kg/d", []),
|
985
|
+
("kilograms per hour", "kilograms_per_hour", 0.00027778, "kg/h", []),
|
986
|
+
("kilograms per minute", "kilograms_per_minute", 0.016667, "kg/min", []),
|
987
|
+
("kilograms per second", "kilograms_per_second", 1.0, "kg/s", []),
|
988
|
+
("metric tons per day", "metric_tons_per_day", 0.01157, "MT/d or MTD", ['MT/d', 'MTD']),
|
989
|
+
("metric tons per hour", "metric_tons_per_hour", 0.2778, "MT/h or MTD", ['MT/h', 'MTD']),
|
990
|
+
("metric tons per minute", "metric_tons_per_minute", 16.67, "MT/h", []),
|
991
|
+
("metric tons per second", "metric_tons_per_second", 1000.0, "MT/s", []),
|
992
|
+
("metric tons per year (365 d)", "metric_tons_per_year_(365_d)", 3.171e-05, "MT/yr or MTY", ['MT/yr', 'MTY']),
|
993
|
+
("pounds per day", "pounds_per_day", 5.248999999999999e-06, "$\\mathrm{lb} / \\mathrm{d}$ or $\\mathrm{lb} / \\mathrm{da}$ or PPD", ['lb / d', 'lb / da', 'PPD']),
|
994
|
+
("pounds per hour", "pounds_per_hour", 0.00012598, "$\\mathrm{lb} / \\mathrm{h}$ or lb/hr or PPH", ['lb / h', 'lb/hr', 'PPH']),
|
995
|
+
("pounds per minute", "pounds_per_minute", 0.0075586, "$\\mathrm{lb} / \\mathrm{min}$ or PPM", ['lb / min', 'PPM']),
|
996
|
+
("pounds per second", "pounds_per_second", 0.45351, "$\\mathrm{lb} / \\mathrm{s}$ or lb/sec or PPS", ['lb / s', 'lb/sec', 'PPS'])
|
997
|
+
],
|
998
|
+
"field_name": "mass_flow_rate",
|
999
|
+
"display_name": "Mass Flow Rate",
|
1000
|
+
},
|
1001
|
+
"MassFlux": {
|
1002
|
+
"dimension": MASS_FLUX,
|
1003
|
+
"default_unit": "kilogram_per_square_meter_per_second",
|
1004
|
+
"units": [
|
1005
|
+
("kilogram per square meter per day", "kilogram_per_square_meter_per_day", 1.1574000000000001e-05, "$\\mathrm{kg} /\\left(\\mathrm{m}^{2} \\mathrm{~d}\\right)$", []),
|
1006
|
+
("kilogram per square meter per hour", "kilogram_per_square_meter_per_hour", 0.00027778000000000004, "$\\mathrm{kg} /\\left(\\mathrm{m}^{2} \\mathrm{~h}\\right)$", []),
|
1007
|
+
("kilogram per square meter per minute", "kilogram_per_square_meter_per_minute", 0.016667, "$\\mathrm{kg} /\\left(\\mathrm{m}^{2} \\mathrm{~min}\\right)$", []),
|
1008
|
+
("kilogram per square meter per second", "kilogram_per_square_meter_per_second", 1.0, "$\\mathrm{kg} /\\left(\\mathrm{m}^{2} \\mathrm{~s}\\right)$", []),
|
1009
|
+
("pound per square foot per day", "pound_per_square_foot_per_day", 5.6478000000000004e-05, "$\\mathrm{lb} /\\left(\\mathrm{ft}^{2} \\mathrm{~d}\\right)$ or lb/sqft/ da", ['lb /left(ft^{2 ~dright)', 'lb/sqft/ da']),
|
1010
|
+
("pound per square foot per hour", "pound_per_square_foot_per_hour", 0.0013555, "$\\mathrm{lb} /\\left(\\mathrm{ft}^{2} \\mathrm{~h}\\right)$ or lb/sqft/ hr", ['lb /left(ft^{2 ~hright)', 'lb/sqft/ hr']),
|
1011
|
+
("pound per square foot per minute", "pound_per_square_foot_per_minute", 0.081329, "$\\mathrm{lb} /\\left(\\mathrm{ft}^{2} \\min \\right)$ or lb/ sqft/min", ['lb /left(ft^{2 min right)', 'lb/ sqft/min']),
|
1012
|
+
("pound per square foot per second", "pound_per_square_foot_per_second", 4.8797, "$\\mathrm{lb} /\\left(\\mathrm{ft}^{2} \\mathrm{~s}\\right)$ or lb/sqft/ sec", ['lb /left(ft^{2 ~sright)', 'lb/sqft/ sec'])
|
1013
|
+
],
|
1014
|
+
"field_name": "mass_flux",
|
1015
|
+
"display_name": "Mass Flux",
|
1016
|
+
},
|
1017
|
+
"MassFractionOfI": {
|
1018
|
+
"dimension": MASS_FRACTION_OF_I,
|
1019
|
+
"default_unit": "kilogram_of_\"i\"_per_kilogram_total",
|
1020
|
+
"units": [
|
1021
|
+
("grains of \"i\" per pound total", "grains_of_\"i\"_per_pound_total", 0.00014286, "$\\mathrm{gr}_{\\mathrm{i}} / \\mathrm{lb}$", []),
|
1022
|
+
("gram of \"i\" per kilogram total", "gram_of_\"i\"_per_kilogram_total", 0.001, "$\\mathrm{g}_{\\mathrm{i}} / \\mathrm{kg}$", []),
|
1023
|
+
("kilogram of \"i\" per kilogram total", "kilogram_of_\"i\"_per_kilogram_total", 1.0, "$\\mathrm{kg}_{\\mathrm{i}} / \\mathrm{kg}$", []),
|
1024
|
+
("pound of \"i\" per pound total", "pound_of_\"i\"_per_pound_total", 1.0, "$\\mathrm{lb}_{\\mathrm{i}} / \\mathrm{lb}$", [])
|
1025
|
+
],
|
1026
|
+
"field_name": "mass_fraction_of_i",
|
1027
|
+
"display_name": "Mass Fraction of \"i\"",
|
1028
|
+
},
|
1029
|
+
"MassTransferCoefficient": {
|
1030
|
+
"dimension": MASS_TRANSFER_COEFFICIENT,
|
1031
|
+
"default_unit": "kilogram_per_square_meter_per_second",
|
1032
|
+
"units": [
|
1033
|
+
("gram per square centimeter per second", "gram_per_square_centimeter_per_second", 0.1, "$\\mathrm{g} / \\mathrm{cm}^{2} / \\mathrm{s}$", []),
|
1034
|
+
("kilogram per square meter per second", "kilogram_per_square_meter_per_second", 1.0, "$\\mathrm{kg} / \\mathrm{m}^{2} / \\mathrm{s}$", []),
|
1035
|
+
("pounds force per cubic foot per hour", "pounds_force_per_cubic_foot_per_hour", 15.709, "$\\mathrm{lb}_{\\mathrm{f}} / \\mathrm{ft}^{3} / \\mathrm{h}$ or $\\mathrm{lb}_{\\mathrm{f}} / \\mathrm{cft} / \\mathrm{hr}$", ['lb_{f / ft^{3 / h', 'lb_{f / cft / hr']),
|
1036
|
+
("pounds mass per square foot per hour", "pounds_mass_per_square_foot_per_hour", 0.00013562, "lb/(ft ${ }^{2} \\mathrm{hr}$ ) or lb/sqft/ hr", ['lb/(ft { ^{2 hr )', 'lb/sqft/ hr']),
|
1037
|
+
("pounds mass per square foot per second", "pounds_mass_per_square_foot_per_second", 0.48824, "$\\mathrm{lb} /\\left(\\mathrm{ft}^{2} \\mathrm{~s}\\right)$ or lb/sqft/ sec", ['lb /left(ft^{2 ~sright)', 'lb/sqft/ sec'])
|
1038
|
+
],
|
1039
|
+
"field_name": "mass_transfer_coefficient",
|
1040
|
+
"display_name": "Mass Transfer Coefficient",
|
1041
|
+
},
|
1042
|
+
"MolalityOfSoluteI": {
|
1043
|
+
"dimension": MOLALITY_OF_SOLUTE_I,
|
1044
|
+
"default_unit": "gram_moles_of_\"i\"_per_kilogram",
|
1045
|
+
"units": [
|
1046
|
+
("gram moles of \"i\" per kilogram", "gram_moles_of_\"i\"_per_kilogram", 1.0, "$\\mathrm{mol}_{\\mathrm{i}} / \\mathrm{kg}$", []),
|
1047
|
+
("kilogram mols of \"i\" per kilogram", "kilogram_mols_of_\"i\"_per_kilogram", 1000.0, "$\\mathrm{kmol}_{\\mathrm{i}} / \\mathrm{kg}$", []),
|
1048
|
+
("kmols of \"i\" per kilogram", "kmols_of_\"i\"_per_kilogram", 1000.0, "$\\mathrm{kmol}_{\\mathrm{i}} / \\mathrm{kg}$", []),
|
1049
|
+
("mols of \"i\" per gram", "mols_of_\"i\"_per_gram", 1000.0, "$\\mathrm{mol}_{\\mathrm{i}} / \\mathrm{g}$", []),
|
1050
|
+
("pound moles of \"i\" per pound mass", "pound_moles_of_\"i\"_per_pound_mass", 1000.0, "mole $_{\\mathrm{i}} / \\mathrm{lb}$ (mass)", [])
|
1051
|
+
],
|
1052
|
+
"field_name": "molality_of_solute_i",
|
1053
|
+
"display_name": "Molality of Solute \"i\"",
|
1054
|
+
},
|
1055
|
+
"MolarConcentrationByMass": {
|
1056
|
+
"dimension": MOLAR_CONCENTRATION_BY_MASS,
|
1057
|
+
"default_unit": "gram_mole_or_mole_per_gram",
|
1058
|
+
"units": [
|
1059
|
+
("gram mole or mole per gram", "gram_mole_or_mole_per_gram", 1.0, "mol/g", []),
|
1060
|
+
("gram mole or mole per kilogram", "gram_mole_or_mole_per_kilogram", 0.001, "mol/kg", []),
|
1061
|
+
("kilogram mole or kmol per kilogram", "kilogram_mole_or_kmol_per_kilogram", 1.0, "kmol/kg", []),
|
1062
|
+
("micromole per gram", "micromole_per_gram", 1e-06, "$\\mu \\mathrm{mol} / \\mathrm{g}$", []),
|
1063
|
+
("millimole per gram", "millimole_per_gram", 0.001, "mmol/g", []),
|
1064
|
+
("picomole per gram", "picomole_per_gram", 1e-12, "pmol/g", []),
|
1065
|
+
("pound mole per pound", "pound_mole_per_pound", 1.0, "$\\mathrm{lb}-\\mathrm{mol} / \\mathrm{lb}$ or mole/lb", ['lb-mol / lb', 'mole/lb'])
|
1066
|
+
],
|
1067
|
+
"field_name": "molar_concentration_by_mass",
|
1068
|
+
"display_name": "Molar Concentration by Mass",
|
1069
|
+
},
|
1070
|
+
"MolarFlowRate": {
|
1071
|
+
"dimension": MOLAR_FLOW_RATE,
|
1072
|
+
"default_unit": "kilogram_mole_or_kmol_per_hour",
|
1073
|
+
"units": [
|
1074
|
+
("gram mole per day", "gram_mole_per_day", 4.167e-05, "mol/d", []),
|
1075
|
+
("gram mole per hour", "gram_mole_per_hour", 0.001, "mol/h", []),
|
1076
|
+
("gram mole per minute", "gram_mole_per_minute", 0.06, "mol/min", []),
|
1077
|
+
("gram mole per second", "gram_mole_per_second", 3.6, "mol/s", []),
|
1078
|
+
("kilogram mole or kmol per day", "kilogram_mole_or_kmol_per_day", 0.04167, "kmol/d", []),
|
1079
|
+
("kilogram mole or kmol per hour", "kilogram_mole_or_kmol_per_hour", 1.0, "kmol/h", []),
|
1080
|
+
("kilogram mole or kmol per minute", "kilogram_mole_or_kmol_per_minute", 60.0, "kmol/min", []),
|
1081
|
+
("kilogram mole or kmol per second", "kilogram_mole_or_kmol_per_second", 3600.0, "kmol/s", []),
|
1082
|
+
("pound mole or lb-mol per day", "pound_mole_or_lb_mol_per_day", 0.0189, "lb-mol/d or mole/da", ['lb-mol/d', 'mole/da']),
|
1083
|
+
("pound mole or lb-mol per hour", "pound_mole_or_lb_mol_per_hour", 0.4535, "lb-mol/h or mole/hr", ['lb-mol/h', 'mole/hr']),
|
1084
|
+
("pound mole or lb-mol per minute", "pound_mole_or_lb_mol_per_minute", 27.21, "lb-mol/min or mole/ min", ['lb-mol/min', 'mole/ min']),
|
1085
|
+
("pound mole or lb-mol per second", "pound_mole_or_lb_mol_per_second", 1633.0, "$\\mathrm{lb}-\\mathrm{mol} / \\mathrm{s}$ or mole/sec", ['lb-mol / s', 'mole/sec'])
|
1086
|
+
],
|
1087
|
+
"field_name": "molar_flow_rate",
|
1088
|
+
"display_name": "Molar Flow Rate",
|
1089
|
+
},
|
1090
|
+
"MolarFlux": {
|
1091
|
+
"dimension": MOLAR_FLUX,
|
1092
|
+
"default_unit": "kmol_per_square_meter_per_second",
|
1093
|
+
"units": [
|
1094
|
+
("kmol per square meter per day", "kmol_per_square_meter_per_day", 1.1574000000000001e-05, "$\\mathrm{kmol} /\\left(\\mathrm{m}^{2} \\mathrm{~d}\\right)$", []),
|
1095
|
+
("kmol per square meter per hour", "kmol_per_square_meter_per_hour", 0.00027778000000000004, "$\\mathrm{kmol} /\\left(\\mathrm{m}^{2} \\mathrm{~h}\\right)$", []),
|
1096
|
+
("kmol per square meter per minute", "kmol_per_square_meter_per_minute", 0.016667, "$\\mathrm{kmol} /\\left(\\mathrm{m}^{2}\\right.$ amin $)$", []),
|
1097
|
+
("kmol per square meter per second", "kmol_per_square_meter_per_second", 1.0, "$\\mathrm{kmol} /\\left(\\mathrm{m}^{2} \\mathrm{~s}\\right)$", []),
|
1098
|
+
("pound mole per square foot per day", "pound_mole_per_square_foot_per_day", 5.6478000000000004e-05, "$\\mathrm{lb}-\\mathrm{mol} /\\left(\\mathrm{ft}^{2} \\mathrm{~d}\\right)$ or mole/sqft/da", ['lb-mol /left(ft^{2 ~dright)', 'mole/sqft/da']),
|
1099
|
+
("pound mole per square foot per hour", "pound_mole_per_square_foot_per_hour", 0.0013555, "$\\mathrm{lb}-\\mathrm{mol} /\\left(\\mathrm{ft}^{2} \\mathrm{~h}\\right)$ or mole/sqft/hr", ['lb-mol /left(ft^{2 ~hright)', 'mole/sqft/hr']),
|
1100
|
+
("pound mole per square foot per minute", "pound_mole_per_square_foot_per_minute", 0.081329, "$\\mathrm{lb}-\\mathrm{mol} /\\left(\\mathrm{ft}^{2} \\mathrm{~min}\\right)$ or mole/sqft/min", ['lb-mol /left(ft^{2 ~minright)', 'mole/sqft/min']),
|
1101
|
+
("pound mole per square foot per second", "pound_mole_per_square_foot_per_second", 4.8797, "$\\mathrm{lb}-\\mathrm{mol} /\\left(\\mathrm{ft}^{2} \\mathrm{~s}\\right)$ or mole/sqft/sec", ['lb-mol /left(ft^{2 ~sright)', 'mole/sqft/sec'])
|
1102
|
+
],
|
1103
|
+
"field_name": "molar_flux",
|
1104
|
+
"display_name": "Molar Flux",
|
1105
|
+
},
|
1106
|
+
"MolarHeatCapacity": {
|
1107
|
+
"dimension": MOLAR_HEAT_CAPACITY,
|
1108
|
+
"default_unit": "joule_per_gram_mole_per_kelvin_(or_degree_Celsius)",
|
1109
|
+
"units": [
|
1110
|
+
("Btu per pound mole per degree Fahrenheit (or degree Rankine)", "Btu_per_pound_mole_per_degree_Fahrenheit_(or_degree_Rankine)", 4.1868, "Btu/lb-mol/ ${ }^{\\circ} \\mathrm{F}$", []),
|
1111
|
+
("calories per gram mole per kelvin (or degree Celsius)", "calories_per_gram_mole_per_kelvin_(or_degree_Celsius)", 4.1868, "cal/(mol K)", []),
|
1112
|
+
("joule per gram mole per kelvin (or degree Celsius)", "joule_per_gram_mole_per_kelvin_(or_degree_Celsius)", 1.0, "J/(mol K)", [])
|
1113
|
+
],
|
1114
|
+
"field_name": "molar_heat_capacity",
|
1115
|
+
"display_name": "Molar Heat Capacity",
|
1116
|
+
},
|
1117
|
+
"MolarityOfI": {
|
1118
|
+
"dimension": MOLARITY_OF_I,
|
1119
|
+
"default_unit": "gram_moles_of_\"i\"_per_cubic_meter",
|
1120
|
+
"units": [
|
1121
|
+
("gram moles of \"i\" per cubic meter", "gram_moles_of_\"i\"_per_cubic_meter", 1.0, "$\\mathrm{mol}_{\\mathrm{i}} / \\mathrm{m}^{3}$ or $\\mathrm{c}_{\\mathrm{i}}$", ['mol_{i / m^{3', 'c_{i']),
|
1122
|
+
("gram moles of \"i\" per liter", "gram_moles_of_\"i\"_per_liter", 1000.0, "$\\mathrm{mol}_{\\mathrm{i}} / \\mathrm{l}$", []),
|
1123
|
+
("kilogram moles of \"i\" per cubic meter", "kilogram_moles_of_\"i\"_per_cubic_meter", 1000.0, "$\\mathrm{kmol}_{\\mathrm{i}} / \\mathrm{m}^{3}$", []),
|
1124
|
+
("kilogram moles of \"i\" per liter", "kilogram_moles_of_\"i\"_per_liter", 1000000.0, "$\\mathrm{kmol}_{\\mathrm{i}} / \\mathrm{l}$", []),
|
1125
|
+
("pound moles of \"i\" per cubic foot", "pound_moles_of_\"i\"_per_cubic_foot", 77844.0, "lb $\\mathrm{mol}_{\\mathrm{i}} / \\mathrm{ft}^{3}$ or $\\mathrm{mole}_{\\mathrm{i}} /$ cft", ['lb mol_{i / ft^{3', 'mole_{i / cft']),
|
1126
|
+
("pound moles of \" $i$ \" per gallon (US)", "pound_moles_of_\"_$i$_\"_per_gallon_(US)", 10406.0, "lb $\\mathrm{mol}_{\\mathrm{i}} / \\mathrm{gal}$ or $\\mathrm{mole}_{\\mathrm{i}} /$ gal", ['lb mol_{i / gal', 'mole_{i / gal'])
|
1127
|
+
],
|
1128
|
+
"field_name": "molarity_of_i",
|
1129
|
+
"display_name": "Molarity of \"i\"",
|
1130
|
+
},
|
1131
|
+
"MoleFractionOfI": {
|
1132
|
+
"dimension": MOLE_FRACTION_OF_I,
|
1133
|
+
"default_unit": "gram_mole_of_\"i\"_per_gram_mole_total",
|
1134
|
+
"units": [
|
1135
|
+
("gram mole of \"i\" per gram mole total", "gram_mole_of_\"i\"_per_gram_mole_total", 1.0, "$\\mathrm{mol}_{\\mathrm{i}} / \\mathrm{mol}$", []),
|
1136
|
+
("kilogram mole of \"i\" per kilogram mole total", "kilogram_mole_of_\"i\"_per_kilogram_mole_total", 1.0, "$\\mathrm{kmol}_{\\mathrm{i}} / \\mathrm{kmol}$", []),
|
1137
|
+
("kilomole of \"i\" per kilomole total", "kilomole_of_\"i\"_per_kilomole_total", 1.0, "$\\mathrm{kmol}_{\\mathrm{i}} / \\mathrm{kmol}$", []),
|
1138
|
+
("pound mole of \"i\" per pound mole total", "pound_mole_of_\"i\"_per_pound_mole_total", 1.0, "lb $\\mathrm{mol}_{\\mathrm{i}} / \\mathrm{lb} \\mathrm{mol}$", [])
|
1139
|
+
],
|
1140
|
+
"field_name": "mole_fraction_of_i",
|
1141
|
+
"display_name": "Mole Fraction of \"i\"",
|
1142
|
+
},
|
1143
|
+
"MomentOfInertia": {
|
1144
|
+
"dimension": MOMENT_OF_INERTIA,
|
1145
|
+
"default_unit": "kilogram_square_meter",
|
1146
|
+
"units": [
|
1147
|
+
("gram force centimeter square second", "gram_force_centimeter_square_second", 9.8067e-05, "$\\mathrm{g}_{\\mathrm{f}} \\mathrm{cm} \\mathrm{s}^{2}$", []),
|
1148
|
+
("gram square centimeter", "gram_square_centimeter", 1e-07, "$\\mathrm{g} \\mathrm{cm}^{2}$", []),
|
1149
|
+
("kilogram force centimeter square second", "kilogram_force_centimeter_square_second", 0.098067, "$\\mathrm{kg}_{\\mathrm{f}} \\mathrm{cm} \\mathrm{s}{ }^{2}$", []),
|
1150
|
+
("kilogram force meter square second", "kilogram_force_meter_square_second", 9.8067, "$\\mathrm{kg}_{\\mathrm{f}} \\mathrm{m} \\mathrm{s}^{2}$", []),
|
1151
|
+
("kilogram square centimeter", "kilogram_square_centimeter", 0.0001, "$\\mathrm{kg} \\mathrm{cm}^{2}$", []),
|
1152
|
+
("kilogram square meter", "kilogram_square_meter", 1.0, "$\\mathrm{kg} \\mathrm{m}^{2}$", []),
|
1153
|
+
("ounce force inch square second", "ounce_force_inch_square_second", 0.0070616, "$\\mathrm{oz}_{\\mathrm{f}}$ in $\\mathrm{s}^{2}$", []),
|
1154
|
+
("ounce mass square inch", "ounce_mass_square_inch", 1.8290000000000003e-05, "oz in ${ }^{2}$", []),
|
1155
|
+
("pound mass square foot", "pound_mass_square_foot", 0.04214, "lb ft ${ }^{2}$ or lb sq ft", ['lb ft { ^{2', 'lb sq ft']),
|
1156
|
+
("pound mass square inch", "pound_mass_square_inch", 0.00029264000000000004, "$\\mathrm{lb} \\mathrm{in}^{2}$", [])
|
1157
|
+
],
|
1158
|
+
"field_name": "moment_of_inertia",
|
1159
|
+
"display_name": "Moment of Inertia",
|
1160
|
+
},
|
1161
|
+
"MomentumFlowRate": {
|
1162
|
+
"dimension": MOMENTUM_FLOW_RATE,
|
1163
|
+
"default_unit": "kilogram_meters_per_square_second",
|
1164
|
+
"units": [
|
1165
|
+
("foot pounds per square hour", "foot_pounds_per_square_hour", 1.0671e-08, "$\\mathrm{ft} \\mathrm{lb} / \\mathrm{h}^{2}$ or $\\mathrm{ft} \\mathrm{lb} / \\mathrm{hr}^{2}$", ['ft lb / h^{2', 'ft lb / hr^{2']),
|
1166
|
+
("foot pounds per square minute", "foot_pounds_per_square_minute", 3.8417e-05, "$\\mathrm{ft} \\mathrm{lb} / \\mathrm{min}^{2}$", []),
|
1167
|
+
("foot pounds per square second", "foot_pounds_per_square_second", 0.1383, "$\\mathrm{ft} \\mathrm{lb} / \\mathrm{s}^{2}$ or ft lb/sec ${ }^{2}$", ['ft lb / s^{2', 'ft lb/sec { ^{2']),
|
1168
|
+
("gram centimeters per square second", "gram_centimeters_per_square_second", 1e-05, "$\\mathrm{g} \\mathrm{cm} / \\mathrm{s}^{2}$", []),
|
1169
|
+
("kilogram meters per square second", "kilogram_meters_per_square_second", 1.0, "$\\mathrm{kg} \\mathrm{m} / \\mathrm{s}^{2}$", [])
|
1170
|
+
],
|
1171
|
+
"field_name": "momentum_flow_rate",
|
1172
|
+
"display_name": "Momentum Flow Rate",
|
1173
|
+
},
|
1174
|
+
"MomentumFlux": {
|
1175
|
+
"dimension": MOMENTUM_FLUX,
|
1176
|
+
"default_unit": "newton_per_square_meter",
|
1177
|
+
"units": [
|
1178
|
+
("dyne per square centimeter", "dyne_per_square_centimeter", 10.0, "dyn/ $\\mathrm{cm}^{2}$", []),
|
1179
|
+
("gram per centimeter per square second", "gram_per_centimeter_per_square_second", 10.0, "$\\mathrm{g} / \\mathrm{cm} / \\mathrm{s}^{2}$", []),
|
1180
|
+
("newton per square meter", "newton_per_square_meter", 1.0, "$\\mathrm{N} / \\mathrm{m}^{2}$", []),
|
1181
|
+
("pound force per square foot", "pound_force_per_square_foot", 478.8, "$\\mathrm{lb}_{\\mathrm{f}} / \\mathrm{sq} \\mathrm{ft}$", []),
|
1182
|
+
("pound mass per foot per square second", "pound_mass_per_foot_per_square_second", 14.882, "$\\mathrm{lb}_{\\mathrm{m}} / \\mathrm{ft} / \\mathrm{s}^{2}$ or $\\mathrm{lb} / \\mathrm{ft} / \\mathrm{sec}^{2}$", ['lb_{m / ft / s^{2', 'lb / ft / sec^{2'])
|
1183
|
+
],
|
1184
|
+
"field_name": "momentum_flux",
|
1185
|
+
"display_name": "Momentum Flux",
|
1186
|
+
},
|
1187
|
+
"NormalityOfSolution": {
|
1188
|
+
"dimension": NORMALITY_OF_SOLUTION,
|
1189
|
+
"default_unit": "gram_equivalents_per_cubic_meter",
|
1190
|
+
"units": [
|
1191
|
+
("gram equivalents per cubic meter", "gram_equivalents_per_cubic_meter", 1.0, "$\\mathrm{eq} / \\mathrm{m}^{3}$", []),
|
1192
|
+
("gram equivalents per liter", "gram_equivalents_per_liter", 1000.0, "eq/l", []),
|
1193
|
+
("pound equivalents per cubic foot", "pound_equivalents_per_cubic_foot", 77844.0, "$\\mathrm{lb} \\mathrm{eq} / \\mathrm{ft}^{3}$ or lb eq/cft", ['lb eq / ft^{3', 'lb eq/cft']),
|
1194
|
+
("pound equivalents per gallon", "pound_equivalents_per_gallon", 10406.0, "lb eq/gal (US)", [])
|
1195
|
+
],
|
1196
|
+
"field_name": "normality_of_solution",
|
1197
|
+
"display_name": "Normality of Solution",
|
1198
|
+
},
|
1199
|
+
"ParticleDensity": {
|
1200
|
+
"dimension": PARTICLE_DENSITY,
|
1201
|
+
"default_unit": "particles_per_cubic_meter",
|
1202
|
+
"units": [
|
1203
|
+
("particles per cubic centimeter", "particles_per_cubic_centimeter", 10000.0, "part/cm ${ }^{3}$ or part/cc", ['part/cm { ^{3', 'part/cc']),
|
1204
|
+
("particles per cubic foot", "particles_per_cubic_foot", 35.31, "part/ $\\mathrm{ft}^{3}$ or part/cft", ['part/ ft^{3', 'part/cft']),
|
1205
|
+
("particles per cubic meter", "particles_per_cubic_meter", 1.0, "part $/ \\mathrm{m}^{3}$", []),
|
1206
|
+
("particles per gallon (US)", "particles_per_gallon_(US)", 264.14, "part/gal", []),
|
1207
|
+
("particles per liter", "particles_per_liter", 1000.0, "part/l", []),
|
1208
|
+
("particles per milliliter", "particles_per_milliliter", 10000.0, "part/ml", [])
|
1209
|
+
],
|
1210
|
+
"field_name": "particle_density",
|
1211
|
+
"display_name": "Particle Density",
|
1212
|
+
},
|
1213
|
+
"Permeability": {
|
1214
|
+
"dimension": PERMEABILITY,
|
1215
|
+
"default_unit": "square_meters",
|
1216
|
+
"units": [
|
1217
|
+
("darcy", "darcy", 9.8692e-13, "darcy", []),
|
1218
|
+
("square feet", "square_feet", 0.0929, "$\\mathrm{ft}^{2}$ or sq ft", ['ft^{2', 'sq ft']),
|
1219
|
+
("square meters", "square_meters", 1.0, "$\\mathrm{m}^{2}$", [])
|
1220
|
+
],
|
1221
|
+
"field_name": "permeability",
|
1222
|
+
"display_name": "Permeability",
|
1223
|
+
},
|
1224
|
+
"PhotonEmissionRate": {
|
1225
|
+
"dimension": PHOTON_EMISSION_RATE,
|
1226
|
+
"default_unit": "reciprocal_square_meter_second",
|
1227
|
+
"units": [
|
1228
|
+
("rayleigh", "rayleigh", 10000000000.0, "R", ['R']),
|
1229
|
+
("reciprocal square meter second", "reciprocal_square_meter_second", 1.0, "$1 /\\left(\\mathrm{m}^{2} \\mathrm{sec}\\right)$", [])
|
1230
|
+
],
|
1231
|
+
"field_name": "photon_emission_rate",
|
1232
|
+
"display_name": "Photon Emission Rate",
|
1233
|
+
},
|
1234
|
+
"PowerPerUnitMass": {
|
1235
|
+
"dimension": POWER_PER_UNIT_MASS,
|
1236
|
+
"default_unit": "watt_per_kilogram",
|
1237
|
+
"units": [
|
1238
|
+
("British thermal unit per hour per pound mass", "British_thermal_unit_per_hour_per_pound_mass", 0.64612, "Btu/h/lb or Btu/ (lb hr)", ['Btu/h/lb', 'Btu/ (lb hr)']),
|
1239
|
+
("calorie per second per gram", "calorie_per_second_per_gram", 4186.8, "cal/s/g or cal/(g sec)", ['cal/s/g', 'cal/(g sec)']),
|
1240
|
+
("kilocalorie per hour per kilogram", "kilocalorie_per_hour_per_kilogram", 1.163, "kcal/h/kg or kcal/ (kg hr)", ['kcal/h/kg', 'kcal/ (kg hr)']),
|
1241
|
+
("watt per kilogram", "watt_per_kilogram", 1.0, "W/kg", [])
|
1242
|
+
],
|
1243
|
+
"field_name": "power_per_unit_mass",
|
1244
|
+
"display_name": "Power per Unit Mass or Specific Power",
|
1245
|
+
},
|
1246
|
+
"PowerPerUnitVolume": {
|
1247
|
+
"dimension": POWER_PER_UNIT_VOLUME,
|
1248
|
+
"default_unit": "watt_per_cubic_meter",
|
1249
|
+
"units": [
|
1250
|
+
("British thermal unit per hour per cubic foot", "British_thermal_unit_per_hour_per_cubic_foot", 10.35, "$\\mathrm{Btu} / \\mathrm{h} / \\mathrm{ft}^{3}$ or $\\mathrm{Btu} / \\mathrm{hr} /$ cft", ['Btu / h / ft^{3', 'Btu / hr / cft']),
|
1251
|
+
("calorie per second per cubic centimeter", "calorie_per_second_per_cubic_centimeter", 4186800.0, "$\\mathrm{cal} / \\mathrm{s} / \\mathrm{cm}^{3}$ or $\\mathrm{cal} / \\mathrm{s} / \\mathrm{cc}$", ['cal / s / cm^{3', 'cal / s / cc']),
|
1252
|
+
("Chu per hour per cubic foot", "Chu_per_hour_per_cubic_foot", 18.63, "Chu/h/ft3 or Chu/hr/ cft", ['Chu/h/ft3', 'Chu/hr/ cft']),
|
1253
|
+
("kilocalorie per hour per cubic centimeter", "kilocalorie_per_hour_per_cubic_centimeter", 1.163, "$\\mathrm{kcal} / \\mathrm{h} / \\mathrm{cm}^{3}$ or $\\mathrm{kcal} /$ hr/cc", ['kcal / h / cm^{3', 'kcal / hr/cc']),
|
1254
|
+
("kilocalorie per hour per cubic foot", "kilocalorie_per_hour_per_cubic_foot", 41.071, "$\\mathrm{kcal} / \\mathrm{h} / \\mathrm{ft}^{3}$ or $\\mathrm{kcal} / \\mathrm{hr} /$ cft", ['kcal / h / ft^{3', 'kcal / hr / cft']),
|
1255
|
+
("kilocalorie per second per cubic centimeter", "kilocalorie_per_second_per_cubic_centimeter", 4186800000.0, "kcal/s/cm ${ }^{3}$ or kcal/s/ cc", ['kcal/s/cm { ^{3', 'kcal/s/ cc']),
|
1256
|
+
("watt per cubic meter", "watt_per_cubic_meter", 1.0, "$\\mathrm{W} / \\mathrm{m}^{3}$", [])
|
1257
|
+
],
|
1258
|
+
"field_name": "power_per_unit_volume",
|
1259
|
+
"display_name": "Power per Unit Volume or Power Density",
|
1260
|
+
},
|
1261
|
+
"PowerThermalDuty": {
|
1262
|
+
"dimension": POWER_THERMAL_DUTY,
|
1263
|
+
"default_unit": "volt_ampere",
|
1264
|
+
"units": [
|
1265
|
+
("abwatt (emu of power)", "abwatt_(emu_of_power)", 1e-08, "emu", ['emu']),
|
1266
|
+
("boiler horsepower", "boiler_horsepower", 9809.5, "HP (boiler)", []),
|
1267
|
+
("British thermal unit (mean) per hour", "British_thermal_unit_(mean)_per_hour", 0.293297, "Btu (mean)/hr or Btu/hr", ['Btu (mean)/hr', 'Btu/hr']),
|
1268
|
+
("British thermal unit (mean) per minute", "British_thermal_unit_(mean)_per_minute", 17.597833, "Btu/min or Btu (mean)/min", ['Btu/min', 'Btu (mean)/min']),
|
1269
|
+
("British thermal unit (thermochemical) per hour", "British_thermal_unit_(thermochemical)_per_hour", 0.292875, "Btu (therm)/hr or Btu/hr", ['Btu (therm)/hr', 'Btu/hr']),
|
1270
|
+
("British thermal unit (thermochemical) per minute", "British_thermal_unit_(thermochemical)_per_minute", 17.5725, "$\\mathrm{Btu} / \\mathrm{min}$ or Btu (therm)/min", ['Btu / min', 'Btu (therm)/min']),
|
1271
|
+
("calorie (mean) per hour", "calorie_(mean)_per_hour", 0.00116389, "cal (mean)/hr", []),
|
1272
|
+
("calorie (thermochemical) per hour", "calorie_(thermochemical)_per_hour", 0.00116222, "cal (therm)/hr", []),
|
1273
|
+
("donkey", "donkey", 250.0, "donkey", []),
|
1274
|
+
("erg per second", "erg_per_second", 1e-07, "erg/s", []),
|
1275
|
+
("foot pondal per second", "foot_pondal_per_second", 0.04214, "ft pdl/s", []),
|
1276
|
+
("foot pound force per hour", "foot_pound_force_per_hour", 0.00037044000000000004, "$\\mathrm{ft} \\mathrm{lb}_{\\mathrm{f}} / \\mathrm{hr}$", []),
|
1277
|
+
("foot pound force per minute", "foot_pound_force_per_minute", 0.022597, "$\\mathrm{ft} \\mathrm{lb}_{\\mathrm{f}} / \\min$", []),
|
1278
|
+
("foot pound force per second", "foot_pound_force_per_second", 1.355818, "$\\mathrm{ft} \\mathrm{lb}_{\\mathrm{f}} / \\mathrm{s}$", []),
|
1279
|
+
("horsepower ( $550 \\mathrm{ft} \\mathrm{lb}_{\\mathrm{f}} / \\mathrm{s}$ )", "horsepower_(_$550_\\mathrm{ft}_\\mathrm{lb}_{\\mathrm{f}}_/_\\mathrm{s}$_)", 745.7, "HP", ['HP']),
|
1280
|
+
("horsepower (electric)", "horsepower_(electric)", 746.0, "HP (elect)", []),
|
1281
|
+
("horsepower (UK)", "horsepower_(UK)", 745.7, "HP (UK)", []),
|
1282
|
+
("kcal per hour", "kcal_per_hour", 1.16389, "kcal/hr", []),
|
1283
|
+
("kilogram force meter per second", "kilogram_force_meter_per_second", 9.80665, "$\\mathrm{kg}_{\\mathrm{f}} \\mathrm{m} / \\mathrm{s}$", []),
|
1284
|
+
("kilowatt", "kilowatt", 1000.0, "kW", ['kW']),
|
1285
|
+
("megawatt", "megawatt", 1000000.0, "MW", ['MW']),
|
1286
|
+
("metric horsepower", "metric_horsepower", 735.499, "HP (metric)", []),
|
1287
|
+
("million British thermal units per hour (petroleum)", "million_British_thermal_units_per_hour_(petroleum)", 293297.0, "MMBtu/hr", []),
|
1288
|
+
("million kilocalorie per hour", "million_kilocalorie_per_hour", 1163890.0, "MM kcal/hr", []),
|
1289
|
+
("prony", "prony", 98.0665, "prony", []),
|
1290
|
+
("ton of refrigeration (US)", "ton_of_refrigeration_(US)", 3516.8, "CTR (US)", []),
|
1291
|
+
("ton or refrigeration (UK)", "ton_or_refrigeration_(UK)", 3922.7, "CTR (UK)", []),
|
1292
|
+
("volt-ampere", "volt_ampere", 1.0, "VA", ['VA']),
|
1293
|
+
("water horsepower", "water_horsepower", 746.043, "HP (water)", []),
|
1294
|
+
("watt", "watt", 1.0, "W", ['W']),
|
1295
|
+
("watt (international, mean)", "watt_(international,_mean)", 1.00019, "W (int, mean)", []),
|
1296
|
+
("watt (international, US)", "watt_(international,_US)", 1.000165, "watt (int, US)", []),
|
1297
|
+
("gigawatt", "gigawatt", 1000000000.0, "GW", ['GW']),
|
1298
|
+
("milliwatt", "milliwatt", 0.001, "mW", ['mW']),
|
1299
|
+
("microwatt", "microwatt", 1e-06, "μW", ['μW'])
|
1300
|
+
],
|
1301
|
+
"field_name": "power_thermal_duty",
|
1302
|
+
"display_name": "Power, Thermal Duty",
|
1303
|
+
},
|
1304
|
+
"Pressure": {
|
1305
|
+
"dimension": PRESSURE,
|
1306
|
+
"default_unit": "newton_per_square_meter",
|
1307
|
+
"units": [
|
1308
|
+
("atmosphere, standard", "atmosphere,_standard", 101325.0, "atm", ['atm']),
|
1309
|
+
("bar", "bar", 100000.0, "bar", ['bar']),
|
1310
|
+
("barye", "barye", 0.1, "barye", []),
|
1311
|
+
("dyne per square centimeter", "dyne_per_square_centimeter", 0.1, "dyn $/ \\mathrm{cm}^{2}$", []),
|
1312
|
+
("foot of mercury ( $60{ }^{\\circ} \\mathrm{F}$ )", "foot_of_mercury_(_$60{_}^{\\circ}_\\mathrm{F}$_)", 40526.0, "ft Hg ( $60{ }^{\\circ} \\mathrm{F}$ )", []),
|
1313
|
+
("foot of water ( $60{ }^{\\circ} \\mathrm{F}$ )", "foot_of_water_(_$60{_}^{\\circ}_\\mathrm{F}$_)", 2989.0, "ft $\\mathrm{H}_{2} \\mathrm{O}\\left(60^{\\circ} \\mathrm{F}\\right)$", []),
|
1314
|
+
("gigapascal", "gigapascal", 1000000000.0, "GPa", ['GPa']),
|
1315
|
+
("hectopascal", "hectopascal", 100.0, "hPa", ['hPa']),
|
1316
|
+
("inch of mercury ( $60{ }^{\\circ} \\mathrm{F}$ )", "inch_of_mercury_(_$60{_}^{\\circ}_\\mathrm{F}$_)", 3386.4, "in $\\mathrm{Hg}\\left(60{ }^{\\circ} \\mathrm{F}\\right)$", []),
|
1317
|
+
("inch of water ( $60{ }^{\\circ} \\mathrm{F}$ )", "inch_of_water_(_$60{_}^{\\circ}_\\mathrm{F}$_)", 248.845, "in $\\mathrm{H}_{2} \\mathrm{O}\\left(60^{\\circ} \\mathrm{F}\\right)$", []),
|
1318
|
+
("kilogram force per square centimeter", "kilogram_force_per_square_centimeter", 98067.0, "at or $\\mathrm{kg}_{\\mathrm{f}} / \\mathrm{cm}^{2}$", ['at', 'kg_{f / cm^{2']),
|
1319
|
+
("kilogram force per square meter", "kilogram_force_per_square_meter", 9.80665, "$\\mathrm{kg}_{\\mathrm{f}} / \\mathrm{m}^{2}$", []),
|
1320
|
+
("kip force per square inch", "kip_force_per_square_inch", 6894800.0, "KSI or ksi or kip ${ }_{f} / \\mathrm{in}^{2}$", ['KSI', 'ksi', 'kip { _{f / in^{2']),
|
1321
|
+
("megapascal", "megapascal", 1000000.0, "MPa", ['MPa']),
|
1322
|
+
("meter of water ( $4^{\\circ} \\mathrm{C}$ )", "meter_of_water_(_$4^{\\circ}_\\mathrm{C}$_)", 9806.4, "$\\mathrm{m} \\mathrm{H}_{2} \\mathrm{O}\\left(4^{\\circ} \\mathrm{C}\\right)$", []),
|
1323
|
+
("microbar", "microbar", 0.1, "$\\mu \\mathrm{bar}$", []),
|
1324
|
+
("millibar", "millibar", 100.0, "mbar", ['mbar']),
|
1325
|
+
("millimeter of mercury ( $4^{\\circ} \\mathrm{C}$ )", "millimeter_of_mercury_(_$4^{\\circ}_\\mathrm{C}$_)", 133.322, "$\\mathrm{mm} \\mathrm{Hg}\\left(4^{\\circ} \\mathrm{C}\\right)$", []),
|
1326
|
+
("millimeter of water ( $4^{\\circ} \\mathrm{C}$ )", "millimeter_of_water_(_$4^{\\circ}_\\mathrm{C}$_)", 9.806375, "$\\mathrm{mm} \\mathrm{H}_{2} \\mathrm{O}\\left(4^{\\circ} \\mathrm{C}\\right)$", []),
|
1327
|
+
("newton per square meter", "newton_per_square_meter", 1.0, "$\\mathrm{N} / \\mathrm{m}^{2}$", []),
|
1328
|
+
("ounce force per square inch", "ounce_force_per_square_inch", 430.922, "OSI or osi or $\\mathrm{oz}_{\\mathrm{f}} / \\mathrm{in}^{2}$", ['OSI', 'osi']),
|
1329
|
+
("pascal", "pascal", 1.0, "Pa", ['Pa']),
|
1330
|
+
("pièze", "pièze", 1000.0, "pz", ['pz']),
|
1331
|
+
("pound force per square foot", "pound_force_per_square_foot", 47.880259, "PSF or psf or $\\mathrm{lb}_{\\mathrm{f}} / \\mathrm{ft}^{2}$", ['psf']),
|
1332
|
+
("pound force per square inch", "pound_force_per_square_inch", 6894.8, "PSI or psi or $\\mathrm{lb}_{\\mathrm{f}} / \\mathrm{in}^{2}$", ['psi']),
|
1333
|
+
("torr", "torr", 133.322, "torr or mm Hg ( $0{ }^{\\circ}$ C)", ['mm Hg ( 0{ ^{circ C)']),
|
1334
|
+
("kilopascal", "kilopascal", 1000.0, "kPa", ['kPa'])
|
1335
|
+
],
|
1336
|
+
"field_name": "pressure",
|
1337
|
+
"display_name": "Pressure",
|
1338
|
+
},
|
1339
|
+
"RadiationDoseEquivalent": {
|
1340
|
+
"dimension": RADIATION_DOSE_EQUIVALENT,
|
1341
|
+
"default_unit": "sievert",
|
1342
|
+
"units": [
|
1343
|
+
("rem", "rem", 0.01, "rem", ['rem']),
|
1344
|
+
("sievert", "sievert", 1.0, "Sv", ['Sv']),
|
1345
|
+
("millisievert", "millisievert", 0.001, "mSv", ['mSv']),
|
1346
|
+
("microsievert", "microsievert", 1e-06, "μSv", ['μSv'])
|
1347
|
+
],
|
1348
|
+
"field_name": "radiation_dose_equivalent",
|
1349
|
+
"display_name": "Radiation Dose Equivalent",
|
1350
|
+
},
|
1351
|
+
"RadiationExposure": {
|
1352
|
+
"dimension": RADIATION_EXPOSURE,
|
1353
|
+
"default_unit": "coulomb_per_kilogram",
|
1354
|
+
"units": [
|
1355
|
+
("coulomb per kilogram", "coulomb_per_kilogram", 1.0, "C/kg", []),
|
1356
|
+
("D unit", "D_unit", 0.0258, "D unit", []),
|
1357
|
+
("pastille dose (B unit)", "pastille_dose_(B_unit)", 0.129, "B unit", []),
|
1358
|
+
("röentgen", "röentgen", 0.000258, "R", ['R'])
|
1359
|
+
],
|
1360
|
+
"field_name": "radiation_exposure",
|
1361
|
+
"display_name": "Radiation Exposure",
|
1362
|
+
},
|
1363
|
+
"Radioactivity": {
|
1364
|
+
"dimension": RADIOACTIVITY,
|
1365
|
+
"default_unit": "becquerel",
|
1366
|
+
"units": [
|
1367
|
+
("becquerel", "becquerel", 1.0, "Bq", ['Bq']),
|
1368
|
+
("curie", "curie", 37000000000.0, "Ci", ['Ci']),
|
1369
|
+
("Mache unit", "Mache_unit", 13.32, "Mache", []),
|
1370
|
+
("rutherford", "rutherford", 1000000.0, "Rd", ['Rd']),
|
1371
|
+
("stat", "stat", 1.34e-16, "stat", ['stat']),
|
1372
|
+
("kilobecquerel", "kilobecquerel", 1000.0, "kBq", ['kBq']),
|
1373
|
+
("megabecquerel", "megabecquerel", 1000000.0, "MBq", ['MBq']),
|
1374
|
+
("gigabecquerel", "gigabecquerel", 1000000000.0, "GBq", ['GBq'])
|
1375
|
+
],
|
1376
|
+
"field_name": "radioactivity",
|
1377
|
+
"display_name": "Radioactivity",
|
1378
|
+
},
|
1379
|
+
"SecondMomentOfArea": {
|
1380
|
+
"dimension": SECOND_MOMENT_OF_AREA,
|
1381
|
+
"default_unit": "meter_quadrupled",
|
1382
|
+
"units": [
|
1383
|
+
("inch quadrupled", "inch_quadrupled", 4.1623e-07, "in ${ }^{4}$", []),
|
1384
|
+
("centimeter quadrupled", "centimeter_quadrupled", 1e-08, "$\\mathrm{cm}^{4}$", []),
|
1385
|
+
("foot quadrupled", "foot_quadrupled", 0.008631, "$\\mathrm{ft}^{4}$", []),
|
1386
|
+
("meter quadrupled", "meter_quadrupled", 1.0, "$\\mathrm{m}^{4}$", [])
|
1387
|
+
],
|
1388
|
+
"field_name": "second_moment_of_area",
|
1389
|
+
"display_name": "Second Moment of Area",
|
1390
|
+
},
|
1391
|
+
"SecondRadiationConstantPlanck": {
|
1392
|
+
"dimension": SECOND_RADIATION_CONSTANT_PLANCK,
|
1393
|
+
"default_unit": "meter_kelvin",
|
1394
|
+
"units": [
|
1395
|
+
("meter kelvin", "meter_kelvin", 1.0, "m K", [])
|
1396
|
+
],
|
1397
|
+
"field_name": "second_radiation_constant_planck",
|
1398
|
+
"display_name": "Second Radiation Constant (Planck)",
|
1399
|
+
},
|
1400
|
+
"SpecificEnthalpy": {
|
1401
|
+
"dimension": SPECIFIC_ENTHALPY,
|
1402
|
+
"default_unit": "joule_per_kilogram",
|
1403
|
+
"units": [
|
1404
|
+
("British thermal unit (mean) per pound", "British_thermal_unit_(mean)_per_pound", 2327.8, "Btu (mean)/lb", []),
|
1405
|
+
("British thermal unit per pound", "British_thermal_unit_per_pound", 2324.4, "Btu/lb", []),
|
1406
|
+
("calorie per gram", "calorie_per_gram", 4186.8, "$\\mathrm{cal} / \\mathrm{g}$", []),
|
1407
|
+
("Chu per pound", "Chu_per_pound", 4186.8, "Chu/lb", []),
|
1408
|
+
("joule per kilogram", "joule_per_kilogram", 1.0, "J/kg", []),
|
1409
|
+
("kilojoule per kilogram", "kilojoule_per_kilogram", 1000.0, "kJ/kg", [])
|
1410
|
+
],
|
1411
|
+
"field_name": "specific_enthalpy",
|
1412
|
+
"display_name": "Specific Enthalpy",
|
1413
|
+
},
|
1414
|
+
"SpecificGravity": {
|
1415
|
+
"dimension": SPECIFIC_GRAVITY,
|
1416
|
+
"default_unit": "Dimensionless",
|
1417
|
+
"units": [
|
1418
|
+
("Dimensionless", "Dimensionless", 1.0, "Dmls", ['Dmls'])
|
1419
|
+
],
|
1420
|
+
"field_name": "specific_gravity",
|
1421
|
+
"display_name": "Specific Gravity",
|
1422
|
+
},
|
1423
|
+
"SpecificHeatCapacityConstantPressure": {
|
1424
|
+
"dimension": SPECIFIC_HEAT_CAPACITY_CONSTANT_PRESSURE,
|
1425
|
+
"default_unit": "joules_per_kilogram_per_kelvin_(or_degree_Celsius)",
|
1426
|
+
"units": [
|
1427
|
+
("Btu per pound per degree Fahrenheit (or degree Rankine)", "Btu_per_pound_per_degree_Fahrenheit_(or_degree_Rankine)", 4186.8, "Btu/(lb ${ }^{\\circ} \\mathrm{F}$ )", []),
|
1428
|
+
("calories per gram per kelvin (or degree Celsius)", "calories_per_gram_per_kelvin_(or_degree_Celsius)", 4186.8, "cal/(g K)", []),
|
1429
|
+
("joules per kilogram per kelvin (or degree Celsius)", "joules_per_kilogram_per_kelvin_(or_degree_Celsius)", 1.0, "J/(kg K)", [])
|
1430
|
+
],
|
1431
|
+
"field_name": "specific_heat_capacity_constant_pressure",
|
1432
|
+
"display_name": "Specific Heat Capacity (Constant Pressure)",
|
1433
|
+
},
|
1434
|
+
"SpecificLength": {
|
1435
|
+
"dimension": SPECIFIC_LENGTH,
|
1436
|
+
"default_unit": "meters_per_kilogram",
|
1437
|
+
"units": [
|
1438
|
+
("centimeter per gram", "centimeter_per_gram", 10.0, "cm/g", []),
|
1439
|
+
("cotton count", "cotton_count", 590500000.0, "cc", ['cc']),
|
1440
|
+
("ft per pound", "ft_per_pound", 0.67192, "ft/lb", []),
|
1441
|
+
("meters per kilogram", "meters_per_kilogram", 1.0, "m/kg", []),
|
1442
|
+
("newton meter", "newton_meter", 1000.0, "Nm", ['Nm']),
|
1443
|
+
("worsted", "worsted", 888679999.9999999, "worsted", [])
|
1444
|
+
],
|
1445
|
+
"field_name": "specific_length",
|
1446
|
+
"display_name": "Specific Length",
|
1447
|
+
},
|
1448
|
+
"SpecificSurface": {
|
1449
|
+
"dimension": SPECIFIC_SURFACE,
|
1450
|
+
"default_unit": "square_meter_per_kilogram",
|
1451
|
+
"units": [
|
1452
|
+
("square centimeter per gram", "square_centimeter_per_gram", 0.1, "$\\mathrm{cm}^{2} / \\mathrm{g}$", []),
|
1453
|
+
("square foot per kilogram", "square_foot_per_kilogram", 0.092903, "$\\mathrm{ft}^{2} / \\mathrm{kg}$ or sq ft/kg", ['ft^{2 / kg', 'sq ft/kg']),
|
1454
|
+
("square foot per pound", "square_foot_per_pound", 0.20482, "$\\mathrm{ft}^{2} / \\mathrm{lb}$ or sq ft/lb", ['ft^{2 / lb', 'sq ft/lb']),
|
1455
|
+
("square meter per gram", "square_meter_per_gram", 1000.0, "$\\mathrm{m}^{2} / \\mathrm{g}$", []),
|
1456
|
+
("square meter per kilogram", "square_meter_per_kilogram", 1.0, "$\\mathrm{m}^{2} / \\mathrm{kg}$", [])
|
1457
|
+
],
|
1458
|
+
"field_name": "specific_surface",
|
1459
|
+
"display_name": "Specific Surface",
|
1460
|
+
},
|
1461
|
+
"SpecificVolume": {
|
1462
|
+
"dimension": SPECIFIC_VOLUME,
|
1463
|
+
"default_unit": "cubic_meter_per_kilogram",
|
1464
|
+
"units": [
|
1465
|
+
("cubic centimeter per gram", "cubic_centimeter_per_gram", 0.001, "$\\mathrm{cm}^{3} / \\mathrm{g}$ or $\\mathrm{cc} / \\mathrm{g}$", ['cm^{3 / g', 'cc / g']),
|
1466
|
+
("cubic foot per kilogram", "cubic_foot_per_kilogram", 0.028317, "$\\mathrm{ft}^{3} / \\mathrm{kg}$ or $\\mathrm{cft} / \\mathrm{kg}$", ['ft^{3 / kg', 'cft / kg']),
|
1467
|
+
("cubic foot per pound", "cubic_foot_per_pound", 0.062428, "$\\mathrm{ft}^{3} / \\mathrm{lb}$ or $\\mathrm{cft} / \\mathrm{lb}$", ['ft^{3 / lb', 'cft / lb']),
|
1468
|
+
("cubic meter per kilogram", "cubic_meter_per_kilogram", 1.0, "$\\mathrm{m}^{3} / \\mathrm{kg}$", [])
|
1469
|
+
],
|
1470
|
+
"field_name": "specific_volume",
|
1471
|
+
"display_name": "Specific Volume",
|
1472
|
+
},
|
1473
|
+
"Stress": {
|
1474
|
+
"dimension": STRESS,
|
1475
|
+
"default_unit": "newton_per_square_meter",
|
1476
|
+
"units": [
|
1477
|
+
("dyne per square centimeter", "dyne_per_square_centimeter", 0.1, "dyn/ $\\mathrm{cm}^{2}$", []),
|
1478
|
+
("gigapascal", "gigapascal", 1000000000.0, "GPa", ['GPa']),
|
1479
|
+
("hectopascal", "hectopascal", 100.0, "hPa", ['hPa']),
|
1480
|
+
("kilogram force per square centimeter", "kilogram_force_per_square_centimeter", 98067.0, "at or $\\mathrm{kg}_{\\mathrm{f}} / \\mathrm{cm}^{2}$", ['at', 'kg_{f / cm^{2']),
|
1481
|
+
("kilogram force per square meter", "kilogram_force_per_square_meter", 9.80665, "$\\mathrm{kg}_{\\mathrm{f}} / \\mathrm{m}^{2}$", []),
|
1482
|
+
("kip force per square inch", "kip_force_per_square_inch", 6894800.0, "KSI or ksi or kip ${ }_{f} / \\mathrm{in}^{2}$", ['KSI', 'ksi', 'kip { _{f / in^{2']),
|
1483
|
+
("megapascal", "megapascal", 1000000.0, "MPa", ['MPa']),
|
1484
|
+
("newton per square meter", "newton_per_square_meter", 1.0, "$\\mathrm{N} / \\mathrm{m}^{2}$", []),
|
1485
|
+
("ounce force per square inch", "ounce_force_per_square_inch", 430.922, "OSI or osi or $\\mathrm{oz}_{\\mathrm{f}} / \\mathrm{in}^{2}$", ['OSI', 'osi', 'oz_{f / in^{2']),
|
1486
|
+
("pascal", "pascal", 1.0, "Pa", ['Pa']),
|
1487
|
+
("pound force per square foot", "pound_force_per_square_foot", 47.880259, "PSF or psf or $\\mathrm{lb}_{\\mathrm{f}} / \\mathrm{ft}^{2}$", ['PSF', 'psf', 'lb_{f / ft^{2']),
|
1488
|
+
("pound force per square inch", "pound_force_per_square_inch", 6894.8, "PSI or psi or $\\mathrm{lb}_{\\mathrm{f}} / \\mathrm{in}^{2}$", ['psi'])
|
1489
|
+
],
|
1490
|
+
"field_name": "stress",
|
1491
|
+
"display_name": "Stress",
|
1492
|
+
},
|
1493
|
+
"SurfaceMassDensity": {
|
1494
|
+
"dimension": SURFACE_MASS_DENSITY,
|
1495
|
+
"default_unit": "kilogram_per_square_meter",
|
1496
|
+
"units": [
|
1497
|
+
("gram per square centimeter", "gram_per_square_centimeter", 10.0, "$\\mathrm{kg} / \\mathrm{cm}^{2}$", []),
|
1498
|
+
("gram per square meter", "gram_per_square_meter", 0.001, "$\\mathrm{g} / \\mathrm{m}^{2}$", []),
|
1499
|
+
("kilogram per square meter", "kilogram_per_square_meter", 1.0, "$\\mathrm{kg} / \\mathrm{m}^{2}$", []),
|
1500
|
+
("pound (mass) per square foot", "pound_(mass)_per_square_foot", 4.882427, "$\\mathrm{lb} / \\mathrm{ft}^{2}$", []),
|
1501
|
+
("pound (mass) per square inch", "pound_(mass)_per_square_inch", 703.07, "$\\mathrm{lb} / \\mathrm{in}^{2}$", [])
|
1502
|
+
],
|
1503
|
+
"field_name": "surface_mass_density",
|
1504
|
+
"display_name": "Surface Mass Density",
|
1505
|
+
},
|
1506
|
+
"SurfaceTension": {
|
1507
|
+
"dimension": SURFACE_TENSION,
|
1508
|
+
"default_unit": "newton_per_meter",
|
1509
|
+
"units": [
|
1510
|
+
("dyne per centimeter", "dyne_per_centimeter", 0.001, "dyn/cm", []),
|
1511
|
+
("gram force per centimeter", "gram_force_per_centimeter", 0.0102, "$\\mathrm{g}_{\\mathrm{f}} / \\mathrm{cm}$", []),
|
1512
|
+
("newton per meter", "newton_per_meter", 1.0, "N/m", []),
|
1513
|
+
("pound force per foot", "pound_force_per_foot", 14.594, "$\\mathrm{lb}_{\\mathrm{f}} / \\mathrm{ft}$", []),
|
1514
|
+
("pound force per inch", "pound_force_per_inch", 175.13, "$\\mathrm{lb}_{\\mathrm{f}} / \\mathrm{in}$", [])
|
1515
|
+
],
|
1516
|
+
"field_name": "surface_tension",
|
1517
|
+
"display_name": "Surface Tension",
|
1518
|
+
},
|
1519
|
+
"Temperature": {
|
1520
|
+
"dimension": TEMPERATURE,
|
1521
|
+
"default_unit": "degree_Celsius_(unit_size)",
|
1522
|
+
"units": [
|
1523
|
+
("degree Celsius (unit size)", "degree_Celsius_(unit_size)", 1.0, "$\\mathrm{C}^{\\circ}$", []),
|
1524
|
+
("degree Fahrenheit (unit size)", "degree_Fahrenheit_(unit_size)", 0.555556, "$\\mathrm{F}^{\\circ}$", []),
|
1525
|
+
("degree Réaumur (unit size)", "degree_Réaumur_(unit_size)", 1.25, "Ré ${ }^{\\circ}$", []),
|
1526
|
+
("kelvin (absolute scale)", "kelvin_(absolute_scale)", 1.0, "K", ['K']),
|
1527
|
+
("Rankine (absolute scale)", "Rankine_(absolute_scale)", 0.555556, "${ }^{\\circ} \\mathrm{R}$", [])
|
1528
|
+
],
|
1529
|
+
"field_name": "temperature",
|
1530
|
+
"display_name": "Temperature",
|
1531
|
+
},
|
1532
|
+
"ThermalConductivity": {
|
1533
|
+
"dimension": THERMAL_CONDUCTIVITY,
|
1534
|
+
"default_unit": "watt_per_centimeter_per_kelvin",
|
1535
|
+
"units": [
|
1536
|
+
("Btu (IT) per inch per hour per degree Fahrenheit", "Btu_(IT)_per_inch_per_hour_per_degree_Fahrenheit", 0.207688, "Btu (IT)/(in hr ${ }^{\\circ} \\mathrm{F}$ )", []),
|
1537
|
+
("Btu (therm) per foot per hour per degree Fahrenheit", "Btu_(therm)_per_foot_per_hour_per_degree_Fahrenheit", 0.017296, "$\\mathrm{Btu} /\\left(\\mathrm{ft} \\mathrm{hr}{ }^{\\circ} \\mathrm{F}\\right)$", []),
|
1538
|
+
("Btu (therm) per inch per hour per degree Fahrenheit", "Btu_(therm)_per_inch_per_hour_per_degree_Fahrenheit", 0.207549, "Btu/(in hr ${ }^{\\circ} \\mathrm{F}$ )", []),
|
1539
|
+
("calorie (therm) per centimeter per second per degree Celsius", "calorie_(therm)_per_centimeter_per_second_per_degree_Celsius", 4.184, "$\\operatorname{cal}(\\mathrm{IT}) /\\left(\\mathrm{cm} \\mathrm{s}^{\\circ} \\mathrm{C}\\right)$", []),
|
1540
|
+
("joule per second per centimeter per kelvin", "joule_per_second_per_centimeter_per_kelvin", 0.01, "J/(cm s K)", []),
|
1541
|
+
("watt per centimeter per kelvin", "watt_per_centimeter_per_kelvin", 1.0, "W/(cm K)", []),
|
1542
|
+
("watt per meter per kelvin", "watt_per_meter_per_kelvin", 0.01, "W/(m K)", [])
|
1543
|
+
],
|
1544
|
+
"field_name": "thermal_conductivity",
|
1545
|
+
"display_name": "Thermal Conductivity",
|
1546
|
+
},
|
1547
|
+
"Time": {
|
1548
|
+
"dimension": TIME,
|
1549
|
+
"default_unit": "second",
|
1550
|
+
"units": [
|
1551
|
+
("blink", "blink", 0.864, "blink", []),
|
1552
|
+
("century", "century", 3155800000.0, "-", []),
|
1553
|
+
("chronon or tempon", "chronon_or_tempon", 1e-23, "-", []),
|
1554
|
+
("gigan or eon", "gigan_or_eon", 3.1558e+16, "Ga or eon", ['Ga', 'eon']),
|
1555
|
+
("hour", "hour", 3600.0, "h or hr", ['h', 'hr']),
|
1556
|
+
("Julian year", "Julian_year", 31557000.0, "a (jul) or yr", ['a (jul)', 'yr']),
|
1557
|
+
("mean solar day", "mean_solar_day", 86400.0, "da or d", ['da', 'd']),
|
1558
|
+
("millenium", "millenium", 31558000000.0, "-", []),
|
1559
|
+
("minute", "minute", 60.0, "min", ['min']),
|
1560
|
+
("second", "second", 1.0, "s", ['s']),
|
1561
|
+
("shake", "shake", 1e-08, "shake", []),
|
1562
|
+
("sidereal year (1900 AD)", "sidereal_year_(1900_AD)", 31551999.999999996, "a (sider) or yr", ['a (sider)', 'yr']),
|
1563
|
+
("tropical year", "tropical_year", 31557000.0, "a (trop)", []),
|
1564
|
+
("wink", "wink", 3.33333e-12, "wink", ['wink']),
|
1565
|
+
("year", "year", 31558000.0, "a or y or yr", ['a', 'y', 'yr']),
|
1566
|
+
("millisecond", "millisecond", 0.001, "ms", ['ms']),
|
1567
|
+
("microsecond", "microsecond", 1e-06, "μs", ['μs']),
|
1568
|
+
("nanosecond", "nanosecond", 1e-09, "ns", ['ns']),
|
1569
|
+
("picosecond", "picosecond", 1e-12, "ps", ['ps'])
|
1570
|
+
],
|
1571
|
+
"field_name": "time",
|
1572
|
+
"display_name": "Time",
|
1573
|
+
},
|
1574
|
+
"Torque": {
|
1575
|
+
"dimension": TORQUE,
|
1576
|
+
"default_unit": "newton_meter",
|
1577
|
+
"units": [
|
1578
|
+
("centimeter kilogram force", "centimeter_kilogram_force", 0.098067, "cm kg ${ }_{\\mathrm{f}}$", []),
|
1579
|
+
("dyne centimeter", "dyne_centimeter", 1e-07, "dyn cm", []),
|
1580
|
+
("foot kilogram force", "foot_kilogram_force", 2.9891, "$\\mathrm{ft} \\mathrm{kg}_{\\mathrm{f}}$", []),
|
1581
|
+
("foot pound force", "foot_pound_force", 1.3558, "$\\mathrm{ft} \\mathrm{lb}_{\\mathrm{f}}$", []),
|
1582
|
+
("foot poundal", "foot_poundal", 0.04214, "ft pdl", []),
|
1583
|
+
("in pound force", "in_pound_force", 0.11298, "in $\\mathrm{lb}_{\\mathrm{f}}$", []),
|
1584
|
+
("inch ounce force", "inch_ounce_force", 0.0070616, "in $\\mathrm{OZ}_{\\mathrm{f}}$", []),
|
1585
|
+
("meter kilogram force", "meter_kilogram_force", 9.8067, "$\\mathrm{m} \\mathrm{kg}_{\\mathrm{f}}$", []),
|
1586
|
+
("newton centimeter", "newton_centimeter", 0.01, "N cm", []),
|
1587
|
+
("newton meter", "newton_meter", 1.0, "N m", [])
|
1588
|
+
],
|
1589
|
+
"field_name": "torque",
|
1590
|
+
"display_name": "Torque",
|
1591
|
+
},
|
1592
|
+
"TurbulenceEnergyDissipationRate": {
|
1593
|
+
"dimension": TURBULENCE_ENERGY_DISSIPATION_RATE,
|
1594
|
+
"default_unit": "square_meter_per_cubic_second",
|
1595
|
+
"units": [
|
1596
|
+
("square foot per cubic second", "square_foot_per_cubic_second", 0.0929, "$\\mathrm{ft}^{2} / \\mathrm{s}^{3}$ or sq ft/sec ${ }^{3}$", ['ft^{2 / s^{3', 'sq ft/sec { ^{3']),
|
1597
|
+
("square meter per cubic second", "square_meter_per_cubic_second", 1.0, "$\\mathrm{m}^{2} / \\mathrm{s}^{3}$", [])
|
1598
|
+
],
|
1599
|
+
"field_name": "turbulence_energy_dissipation_rate",
|
1600
|
+
"display_name": "Turbulence Energy Dissipation Rate",
|
1601
|
+
},
|
1602
|
+
"VelocityAngular": {
|
1603
|
+
"dimension": VELOCITY_ANGULAR,
|
1604
|
+
"default_unit": "radian_per_second",
|
1605
|
+
"units": [
|
1606
|
+
("degree per minute", "degree_per_minute", 0.000290888, "deg/min or ${ }^{\\circ} / \\mathrm{min}$", ['deg/min', '{ ^{circ / min']),
|
1607
|
+
("degree per second", "degree_per_second", 0.0174533, "deg/s or ${ }^{\\circ}$ /s", ['deg/s', '{ ^{circ /s']),
|
1608
|
+
("grade per minute", "grade_per_minute", 0.000261799, "gon/min or grad/min", ['gon/min', 'grad/min']),
|
1609
|
+
("radian per minute", "radian_per_minute", 0.016667, "$\\mathrm{rad} / \\mathrm{min}$", []),
|
1610
|
+
("radian per second", "radian_per_second", 1.0, "$\\mathrm{rad} / \\mathrm{s}$", []),
|
1611
|
+
("revolution per minute", "revolution_per_minute", 0.010472, "rev/m or rpm", ['rev/m', 'rpm']),
|
1612
|
+
("revolution per second", "revolution_per_second", 6.283185, "rev/s or rps", ['rev/s', 'rps']),
|
1613
|
+
("turn per minute", "turn_per_minute", 0.010472, "tr/min", [])
|
1614
|
+
],
|
1615
|
+
"field_name": "velocity_angular",
|
1616
|
+
"display_name": "Velocity, Angular",
|
1617
|
+
},
|
1618
|
+
"VelocityLinear": {
|
1619
|
+
"dimension": VELOCITY_LINEAR,
|
1620
|
+
"default_unit": "meter_per_second",
|
1621
|
+
"units": [
|
1622
|
+
("foot per hour", "foot_per_hour", 8.4667e-05, "ft/h or ft/hr or fph", ['ft/h', 'ft/hr', 'fph']),
|
1623
|
+
("foot per minute", "foot_per_minute", 0.00508, "ft/min or fpm", ['ft/min', 'fpm']),
|
1624
|
+
("foot per second", "foot_per_second", 0.3048, "ft/s or fps", ['ft/s', 'fps']),
|
1625
|
+
("inch per second", "inch_per_second", 0.0254, "in/s or ips", ['in/s', 'ips']),
|
1626
|
+
("international knot", "international_knot", 0.0514444, "knot", ['knot']),
|
1627
|
+
("kilometer per hour", "kilometer_per_hour", 0.027778, "km/h ot kph", []),
|
1628
|
+
("kilometer per second", "kilometer_per_second", 1000.0, "km/s", []),
|
1629
|
+
("meter per second", "meter_per_second", 1.0, "$\\mathrm{m} / \\mathrm{s}$", []),
|
1630
|
+
("mile per hour", "mile_per_hour", 0.0444704, "$\\mathrm{mi} / \\mathrm{h}$ or $\\mathrm{mi} / \\mathrm{hr}$ or mph", ['mi / h', 'mi / hr', 'mph'])
|
1631
|
+
],
|
1632
|
+
"field_name": "velocity_linear",
|
1633
|
+
"display_name": "Velocity, Linear",
|
1634
|
+
},
|
1635
|
+
"ViscosityDynamic": {
|
1636
|
+
"dimension": VISCOSITY_DYNAMIC,
|
1637
|
+
"default_unit": "dyne_second_per_square_centimeter",
|
1638
|
+
"units": [
|
1639
|
+
("centipoise", "centipoise", 0.01, "cP or cPo", ['cP', 'cPo']),
|
1640
|
+
("dyne second per square centimeter", "dyne_second_per_square_centimeter", 1.0, "dyn s/ $\\mathrm{cm}^{2}$", []),
|
1641
|
+
("kilopound second per square meter", "kilopound_second_per_square_meter", 98.0665, "kip $\\mathrm{s} / \\mathrm{m}^{2}$", []),
|
1642
|
+
("millipoise", "millipoise", 0.001, "mP or mPo", ['mP', 'mPo']),
|
1643
|
+
("newton second per square meter", "newton_second_per_square_meter", 10.0, "$\\mathrm{N} \\mathrm{s} / \\mathrm{m}^{2}$", []),
|
1644
|
+
("pascal second", "pascal_second", 10.0, "Pa s or PI", ['Pa s', 'PI']),
|
1645
|
+
("poise", "poise", 1.0, "P or Po", ['P', 'Po']),
|
1646
|
+
("pound force hour per square foot", "pound_force_hour_per_square_foot", 1723690.0, "$\\mathrm{lb}_{\\mathrm{f}} \\mathrm{h} / \\mathrm{ft}^{2}$ or $\\mathrm{lb} \\mathrm{hr} / \\mathrm{sq}$ ft", ['lb_{f h / ft^{2', 'lb hr / sq ft']),
|
1647
|
+
("pound force second per square foot", "pound_force_second_per_square_foot", 478.803, "$\\mathrm{lb}_{\\mathrm{f}} \\mathrm{s} / \\mathrm{ft}^{2}$ or $\\mathrm{lb} \\mathrm{sec} / \\mathrm{sq}$ ft", ['lb_{f s / ft^{2', 'lb sec / sq ft'])
|
1648
|
+
],
|
1649
|
+
"field_name": "viscosity_dynamic",
|
1650
|
+
"display_name": "Viscosity, Dynamic",
|
1651
|
+
},
|
1652
|
+
"ViscosityKinematic": {
|
1653
|
+
"dimension": VISCOSITY_KINEMATIC,
|
1654
|
+
"default_unit": "square_meters_per_second",
|
1655
|
+
"units": [
|
1656
|
+
("centistokes", "centistokes", 1e-06, "cSt", ['cSt']),
|
1657
|
+
("millistokes", "millistokes", 1e-07, "mSt", ['mSt']),
|
1658
|
+
("square centimeter per second", "square_centimeter_per_second", 0.0001, "$\\mathrm{cm}^{2} / \\mathrm{s}$", []),
|
1659
|
+
("square foot per hour", "square_foot_per_hour", 2.58064e-05, "$\\mathrm{ft}^{2} / \\mathrm{h}$ or $\\mathrm{ft}^{2} / \\mathrm{hr}$", ['ft^{2 / h', 'ft^{2 / hr']),
|
1660
|
+
("square foot per second", "square_foot_per_second", 0.092903, "$\\mathrm{ft}^{2} / \\mathrm{s}$", []),
|
1661
|
+
("square meters per second", "square_meters_per_second", 1.0, "$\\mathrm{m}^{2} / \\mathrm{s}$", []),
|
1662
|
+
("stokes", "stokes", 0.0001, "St", ['St'])
|
1663
|
+
],
|
1664
|
+
"field_name": "viscosity_kinematic",
|
1665
|
+
"display_name": "Viscosity, Kinematic",
|
1666
|
+
},
|
1667
|
+
"Volume": {
|
1668
|
+
"dimension": VOLUME,
|
1669
|
+
"default_unit": "cubic_meter",
|
1670
|
+
"units": [
|
1671
|
+
("acre foot", "acre_foot", 1233.48, "ac-ft", []),
|
1672
|
+
("acre inch", "acre_inch", 102.79, "ac-in", []),
|
1673
|
+
("barrel (US Liquid)", "barrel_(US_Liquid)", 0.1192405, "bbl (US liq)", []),
|
1674
|
+
("barrel (US, Petro)", "barrel_(US,_Petro)", 0.158987, "bbl", ['bbl']),
|
1675
|
+
("board foot measure", "board_foot_measure", 0.00235974, "BM or fbm", ['BM', 'fbm']),
|
1676
|
+
("bushel (US Dry)", "bushel_(US_Dry)", 0.0352391, "bu (US dry)", []),
|
1677
|
+
("centiliter", "centiliter", 1e-05, "cl or cL", ['cl', 'cL']),
|
1678
|
+
("cord", "cord", 3.62456, "cord or cd", ['cd']),
|
1679
|
+
("cord foot", "cord_foot", 0.4530695, "cord-ft", []),
|
1680
|
+
("cubic centimeter", "cubic_centimeter", 1e-06, "$\\mathrm{cm}^{3}$ or cc", ['cm^{3', 'cc']),
|
1681
|
+
("cubic decameter", "cubic_decameter", 1000.0, "dam ${ }^{3}$", []),
|
1682
|
+
("cubic decimeter", "cubic_decimeter", 0.001, "$\\mathrm{dm}^{3}$", []),
|
1683
|
+
("cubic foot", "cubic_foot", 0.0283168, "cu ft or ft ${ }^{3}$", ['cu ft', 'ft { ^{3']),
|
1684
|
+
("cubic inch", "cubic_inch", 1.63871e-05, "cu in or $\\mathrm{in}^{3}$", ['cu in', 'in^{3']),
|
1685
|
+
("cubic kilometer", "cubic_kilometer", 1000000000.0, "$\\mathrm{km}^{3}$", []),
|
1686
|
+
("cubic meter", "cubic_meter", 1.0, "$\\mathrm{m}^{3}$", []),
|
1687
|
+
("cubic micrometer", "cubic_micrometer", 1e-18, "$\\mu \\mathrm{m}^{3}$", []),
|
1688
|
+
("cubic mile (US, Intl)", "cubic_mile_(US,_Intl)", 4168180000.0000005, "cu mi", []),
|
1689
|
+
("cubic millimeter", "cubic_millimeter", 1e-09, "$\\mathrm{mm}^{3}$", []),
|
1690
|
+
("cubic yard", "cubic_yard", 0.7645549, "cu yd or $\\mathrm{yd}^{3}$", ['cu yd', 'yd^{3']),
|
1691
|
+
("decastére", "decastére", 10.0, "dast", ['dast']),
|
1692
|
+
("deciliter", "deciliter", 0.0001, "dl or dL", ['dl', 'dL']),
|
1693
|
+
("fluid drachm (UK)", "fluid_drachm_(UK)", 3.5516299999999996e-06, "fl dr (UK)", []),
|
1694
|
+
("fluid dram (US)", "fluid_dram_(US)", 3.69669e-06, "fl dr (US liq)", []),
|
1695
|
+
("fluid ounce (US)", "fluid_ounce_(US)", 2.95735e-05, "fl oz", []),
|
1696
|
+
("gallon (Imperial UK)", "gallon_(Imperial_UK)", 0.00454609, "gal (UK) or Imp gal", ['gal (UK)', 'Imp gal']),
|
1697
|
+
("gallon (US Dry)", "gallon_(US_Dry)", 0.004404884, "gal (US dry)", []),
|
1698
|
+
("gallon (US Liquid)", "gallon_(US_Liquid)", 0.003785412, "gal", ['gal']),
|
1699
|
+
("last", "last", 2.9095, "last", ['last']),
|
1700
|
+
("liter", "liter", 0.001, "1 or L", ['1', 'L']),
|
1701
|
+
("microliter", "microliter", 1e-09, "$\\mu \\mathrm{l}$ or $\\mu \\mathrm{L}$", ['mu l', 'mu L']),
|
1702
|
+
("milliliter", "milliliter", 1e-06, "ml", ['ml']),
|
1703
|
+
("Mohr centicube", "Mohr_centicube", 1.00238e-06, "cc", ['cc']),
|
1704
|
+
("pint (UK)", "pint_(UK)", 0.000568262, "pt (UK)", []),
|
1705
|
+
("pint (US Dry)", "pint_(US_Dry)", 0.000550611, "pt (US dry)", []),
|
1706
|
+
("pint (US Liquid)", "pint_(US_Liquid)", 0.000473176, "pt", ['pt']),
|
1707
|
+
("quart (US Dry)", "quart_(US_Dry)", 0.00110122, "qt (US dry)", []),
|
1708
|
+
("stére", "stére", 1.0, "st", ['st']),
|
1709
|
+
("tablespoon (Metric)", "tablespoon_(Metric)", 1.5000000000000002e-05, "tbsp (Metric)", []),
|
1710
|
+
("tablespoon (US)", "tablespoon_(US)", 1.47868e-05, "tbsp", ['tbsp']),
|
1711
|
+
("teaspoon (US)", "teaspoon_(US)", 4.928919999999999e-06, "tsp", ['tsp'])
|
1712
|
+
],
|
1713
|
+
"field_name": "volume",
|
1714
|
+
"display_name": "Volume",
|
1715
|
+
},
|
1716
|
+
"VolumeFractionOfI": {
|
1717
|
+
"dimension": VOLUME_FRACTION_OF_I,
|
1718
|
+
"default_unit": "cubic_foot_of_\"i\"_per_cubic_foot_total",
|
1719
|
+
"units": [
|
1720
|
+
("cubic centimeters of \"i\" per cubic meter total", "cubic_centimeters_of_\"i\"_per_cubic_meter_total", 0.0001, "$\\mathrm{cm}_{\\mathrm{i}}^{3} / \\mathrm{m}^{3}$ or $\\mathrm{cc}_{\\mathrm{i}} / \\mathrm{m}^{3}$", ['cm_{i^{3 / m^{3', 'cc_{i / m^{3']),
|
1721
|
+
("cubic foot of \"i\" per cubic foot total", "cubic_foot_of_\"i\"_per_cubic_foot_total", 1.0, "$\\mathrm{ft}_{\\mathrm{i}}^{3} / \\mathrm{ft}^{3}$ or $\\mathrm{cft}_{\\mathrm{i}} / \\mathrm{cft}$", ['ft_{i^{3 / ft^{3', 'cft_{i / cft']),
|
1722
|
+
("cubic meters of \" i \" per cubic meter total", "cubic_meters_of_\"_i_\"_per_cubic_meter_total", 1.0, "$\\mathrm{m}_{\\mathrm{i}}{ }^{3} / \\mathrm{m}^{3}$", []),
|
1723
|
+
("gallons of \"i\" per gallon total", "gallons_of_\"i\"_per_gallon_total", 1.0, "$\\mathrm{gal}_{\\mathrm{i}} / \\mathrm{gal}$", [])
|
1724
|
+
],
|
1725
|
+
"field_name": "volume_fraction_of_i",
|
1726
|
+
"display_name": "Volume Fraction of \"i\"",
|
1727
|
+
},
|
1728
|
+
"VolumetricCalorificHeatingValue": {
|
1729
|
+
"dimension": VOLUMETRIC_CALORIFIC_HEATING_VALUE,
|
1730
|
+
"default_unit": "joule_per_cubic_meter",
|
1731
|
+
"units": [
|
1732
|
+
("British thermal unit per cubic foot", "British_thermal_unit_per_cubic_foot", 37260.0, "$\\mathrm{Btu} / \\mathrm{ft}^{3}$ or Btu/cft", ['Btu / ft^{3', 'Btu/cft']),
|
1733
|
+
("British thermal unit per gallon (UK)", "British_thermal_unit_per_gallon_(UK)", 232090.0, "Btu/gal (UK)", []),
|
1734
|
+
("British thermal unit per gallon (US)", "British_thermal_unit_per_gallon_(US)", 193260.0, "Btu/gal (US)", []),
|
1735
|
+
("calorie per cubic centimeter", "calorie_per_cubic_centimeter", 4186800.0, "$\\mathrm{cal} / \\mathrm{cm}^{3}$ or $\\mathrm{cal} / \\mathrm{cc}$", ['cal / cm^{3', 'cal / cc']),
|
1736
|
+
("Chu per cubic foot", "Chu_per_cubic_foot", 67067.0, "$\\mathrm{Chu} / \\mathrm{ft}^{3}$ or $\\mathrm{Chu} / \\mathrm{cft}$", ['Chu / ft^{3', 'Chu / cft']),
|
1737
|
+
("joule per cubic meter", "joule_per_cubic_meter", 1.0, "$\\mathrm{J} / \\mathrm{m}^{3}$", []),
|
1738
|
+
("kilocalorie per cubic foot", "kilocalorie_per_cubic_foot", 147860.0, "$\\mathrm{kcal} / \\mathrm{ft}^{3}$ or $\\mathrm{kcal} / \\mathrm{cft}$", ['kcal / ft^{3', 'kcal / cft']),
|
1739
|
+
("kilocalorie per cubic meter", "kilocalorie_per_cubic_meter", 4186.8, "$\\mathrm{kcal} / \\mathrm{m}^{3}$", []),
|
1740
|
+
("therm ( 100 K Btu ) per cubic foot", "therm_(_100_K_Btu_)_per_cubic_foot", 3726000000.0, "thm/cft", [])
|
1741
|
+
],
|
1742
|
+
"field_name": "volumetric_calorific_heating_value",
|
1743
|
+
"display_name": "Volumetric Calorific (Heating) Value",
|
1744
|
+
},
|
1745
|
+
"VolumetricCoefficientOfExpansion": {
|
1746
|
+
"dimension": VOLUMETRIC_COEFFICIENT_OF_EXPANSION,
|
1747
|
+
"default_unit": "kilogram_per_cubic_meter_per_kelvin_(or_degree_Celsius)",
|
1748
|
+
"units": [
|
1749
|
+
("gram per cubic centimeter per kelvin (or degree Celsius)", "gram_per_cubic_centimeter_per_kelvin_(or_degree_Celsius)", 1000.0, "$\\mathrm{g} / \\mathrm{cm}^{3} / \\mathrm{K}$ or g/cc/ ${ }^{\\circ} \\mathrm{C}$", ['g / cm^{3 / K', 'g/cc/ { ^{circ C']),
|
1750
|
+
("kilogram per cubic meter per kelvin (or degree Celsius)", "kilogram_per_cubic_meter_per_kelvin_(or_degree_Celsius)", 1.0, "$\\mathrm{kg} / \\mathrm{m}^{3} / \\mathrm{K}$ or $\\mathrm{kg} / \\mathrm{m}^{3} /{ }^{\\circ}$ C", ['kg / m^{3 / K', 'kg / m^{3 /{ ^{circ C']),
|
1751
|
+
("pound per cubic foot per degree Fahrenheit (or degree Rankine)", "pound_per_cubic_foot_per_degree_Fahrenheit_(or_degree_Rankine)", 28.833, "$\\mathrm{lb} / \\mathrm{ft}^{3} /{ }^{\\circ} \\mathrm{R}$ or $\\mathrm{lb} / \\mathrm{cft} /{ }^{\\circ} \\mathrm{F}$", ['lb / ft^{3 /{ ^{circ R', 'lb / cft /{ ^{circ F']),
|
1752
|
+
("pound per cubic foot per kelvin (or degree Celsius)", "pound_per_cubic_foot_per_kelvin_(or_degree_Celsius)", 16.018, "$\\mathrm{lb} / \\mathrm{ft}^{3} / \\mathrm{K}$ or $\\mathrm{lb} / \\mathrm{cft} /{ }^{\\circ} \\mathrm{C}$", ['lb / ft^{3 / K', 'lb / cft /{ ^{circ C'])
|
1753
|
+
],
|
1754
|
+
"field_name": "volumetric_coefficient_of_expansion",
|
1755
|
+
"display_name": "Volumetric Coefficient of Expansion",
|
1756
|
+
},
|
1757
|
+
"VolumetricFlowRate": {
|
1758
|
+
"dimension": VOLUMETRIC_FLOW_RATE,
|
1759
|
+
"default_unit": "cubic_meters_per_second",
|
1760
|
+
"units": [
|
1761
|
+
("cubic feet per day", "cubic_feet_per_day", 3.2778e-07, "$\\mathrm{ft}^{3} / \\mathrm{d}$ or $\\mathrm{cft} / \\mathrm{da}$ or cfd", ['ft^{3 / d', 'cft / da', 'cfd']),
|
1762
|
+
("cubic feet per hour", "cubic_feet_per_hour", 7.866699999999999e-06, "$\\mathrm{ft}^{3} / \\mathrm{h}$ or $\\mathrm{cft} / \\mathrm{hr}$ or cfh", ['ft^{3 / h', 'cft / hr', 'cfh']),
|
1763
|
+
("cubic feet per minute", "cubic_feet_per_minute", 0.000472, "$\\mathrm{ft}^{3} / \\mathrm{min}$ or $\\mathrm{cft} / \\mathrm{min}$ or cfm", ['ft^{3 / min', 'cft / min', 'cfm']),
|
1764
|
+
("cubic feet per second", "cubic_feet_per_second", 0.02832, "$\\mathrm{ft}^{3} / \\mathrm{s}$ or cft/sec or cfs", ['ft^{3 / s', 'cft/sec', 'cfs']),
|
1765
|
+
("cubic meters per day", "cubic_meters_per_day", 1.1574000000000001e-05, "$\\mathrm{m}^{3} / \\mathrm{d}$", []),
|
1766
|
+
("cubic meters per hour", "cubic_meters_per_hour", 0.00027778, "$\\mathrm{m}^{3} / \\mathrm{h}$", []),
|
1767
|
+
("cubic meters per minute", "cubic_meters_per_minute", 0.016667, "$\\mathrm{m}^{3} / \\min$", []),
|
1768
|
+
("cubic meters per second", "cubic_meters_per_second", 1.0, "$\\mathrm{m}^{3} / \\mathrm{s}$", []),
|
1769
|
+
("gallons per day", "gallons_per_day", 0.002628, "gal/d or gpd or gal/ da", ['gal/d', 'gpd', 'gal/ da']),
|
1770
|
+
("gallons per hour", "gallons_per_hour", 0.06308, "gal/h or gph or gal/ hr", ['gal/h', 'gph', 'gal/ hr']),
|
1771
|
+
("gallons per minute", "gallons_per_minute", 3.785, "gal/min or gpm", ['gal/min', 'gpm']),
|
1772
|
+
("gallons per second", "gallons_per_second", 227.1, "gal/s or gps or gal/ sec", ['gal/s', 'gps', 'gal/ sec']),
|
1773
|
+
("liters per day", "liters_per_day", 0.00069444, "1/d", []),
|
1774
|
+
("liters per hour", "liters_per_hour", 0.016667, "1/h", []),
|
1775
|
+
("liters per minute", "liters_per_minute", 1.0, "$1 / \\mathrm{min}$", []),
|
1776
|
+
("liters per second", "liters_per_second", 60.0, "1/s", [])
|
1777
|
+
],
|
1778
|
+
"field_name": "volumetric_flow_rate",
|
1779
|
+
"display_name": "Volumetric Flow Rate",
|
1780
|
+
},
|
1781
|
+
"VolumetricFlux": {
|
1782
|
+
"dimension": VOLUMETRIC_FLUX,
|
1783
|
+
"default_unit": "cubic_meters_per_square_meter_per_second",
|
1784
|
+
"units": [
|
1785
|
+
("cubic feet per square foot per day", "cubic_feet_per_square_foot_per_day", 3.5276e-06, "$\\mathrm{ft}^{3} /\\left(\\mathrm{ft}^{2} \\mathrm{~d}\\right)$ or $\\mathrm{cft} / \\mathrm{sqft} /$ da", ['ft^{3 /left(ft^{2 ~dright)', 'cft / sqft / da']),
|
1786
|
+
("cubic feet per square foot per hour", "cubic_feet_per_square_foot_per_hour", 8.466300000000001e-05, "$\\mathrm{ft}^{3} /\\left(\\mathrm{ft}^{2} \\mathrm{~h}\\right)$ or $\\mathrm{cft} / \\mathrm{sqft} /$ hr", ['ft^{3 /left(ft^{2 ~hright)', 'cft / sqft / hr']),
|
1787
|
+
("cubic feet per square foot per minute", "cubic_feet_per_square_foot_per_minute", 0.0050798, "$\\mathrm{ft}^{3} /\\left(\\mathrm{ft}^{2} \\min \\right)$ or $\\mathrm{cft} /$ sqft/min", ['ft^{3 /left(ft^{2 min right)', 'cft / sqft/min']),
|
1788
|
+
("cubic feet per square foot per second", "cubic_feet_per_square_foot_per_second", 0.30479, "$\\mathrm{ft}^{3} /\\left(\\mathrm{ft}^{2} \\mathrm{~s}\\right)$ or cft/sqft/ sec", ['ft^{3 /left(ft^{2 ~sright)', 'cft/sqft/ sec']),
|
1789
|
+
("cubic meters per square meter per day", "cubic_meters_per_square_meter_per_day", 1.1574000000000001e-05, "$\\mathrm{m}^{3} /\\left(\\mathrm{m}^{2} \\mathrm{~d}\\right)$", []),
|
1790
|
+
("cubic meters per square meter per hour", "cubic_meters_per_square_meter_per_hour", 0.00027778, "$\\mathrm{m}^{3} /\\left(\\mathrm{m}^{2} \\mathrm{~h}\\right)$", []),
|
1791
|
+
("cubic meters per square meter per minute", "cubic_meters_per_square_meter_per_minute", 0.016667, "$\\mathrm{m}^{3} /\\left(\\mathrm{m}^{2} \\mathrm{~min}\\right)$", []),
|
1792
|
+
("cubic meters per square meter per second", "cubic_meters_per_square_meter_per_second", 1.0, "$\\mathrm{m}^{3} /\\left(\\mathrm{m}^{2} \\mathrm{~s}\\right)$", []),
|
1793
|
+
("gallons per square foot per day", "gallons_per_square_foot_per_day", 0.00047138000000000003, "$\\mathrm{gal} /\\left(\\mathrm{ft}^{2} \\mathrm{~d}\\right)$ or gal/ sqft/da", ['gal /left(ft^{2 ~dright)', 'gal/ sqft/da']),
|
1794
|
+
("gallons per square foot per hour", "gallons_per_square_foot_per_hour", 0.011313, "$\\mathrm{gal} /\\left(\\mathrm{ft}^{2} \\mathrm{~h}\\right)$ or gal/ sqft/hr", ['gal /left(ft^{2 ~hright)', 'gal/ sqft/hr']),
|
1795
|
+
("gallons per square foot per minute", "gallons_per_square_foot_per_minute", 0.67878, "$\\mathrm{gal} /\\left(\\mathrm{ft}^{2} \\mathrm{~min}\\right)$ or gal/ sqft/min or gpm/sqft", ['gal /left(ft^{2 ~minright)', 'gal/ sqft/min', 'gpm/sqft']),
|
1796
|
+
("gallons per square foot per second", "gallons_per_square_foot_per_second", 40.727, "$\\mathrm{gal} /\\left(\\mathrm{ft}^{2} \\mathrm{~s}\\right)$ or gal/ $\\mathrm{sqft} / \\mathrm{sec}$", ['gal /left(ft^{2 ~sright)', 'gal/ sqft / sec']),
|
1797
|
+
("liters per square meter per day", "liters_per_square_meter_per_day", 1.1574000000000001e-05, "$1 /\\left(\\mathrm{m}^{2} \\mathrm{~d}\\right)$", []),
|
1798
|
+
("liters per square meter per hour", "liters_per_square_meter_per_hour", 0.00027778, "$1 /\\left(\\mathrm{m}^{2} \\mathrm{~h}\\right)$", []),
|
1799
|
+
("liters per square meter per minute", "liters_per_square_meter_per_minute", 0.016667, "$1 /\\left(\\mathrm{m}^{2} \\mathrm{~min}\\right)$", []),
|
1800
|
+
("liters per square meter per second", "liters_per_square_meter_per_second", 1.0, "$1 /\\left(\\mathrm{m}^{2} \\mathrm{~s}\\right)$", [])
|
1801
|
+
],
|
1802
|
+
"field_name": "volumetric_flux",
|
1803
|
+
"display_name": "Volumetric Flux",
|
1804
|
+
},
|
1805
|
+
"VolumetricMassFlowRate": {
|
1806
|
+
"dimension": VOLUMETRIC_MASS_FLOW_RATE,
|
1807
|
+
"default_unit": "kilogram_per_second_per_cubic_meter",
|
1808
|
+
"units": [
|
1809
|
+
("gram per second per cubic centimeter", "gram_per_second_per_cubic_centimeter", 1000.0, "$\\mathrm{g} /\\left(\\mathrm{s} \\mathrm{cm}^{3}\\right)$ or g/s/cc or $\\mathrm{g} / \\mathrm{cc} / \\mathrm{sec}$", ['g /left(s cm^{3right)', 'g/s/cc', 'g / cc / sec']),
|
1810
|
+
("kilogram per hour per cubic foot", "kilogram_per_hour_per_cubic_foot", 0.0098096, "kg/(h ft ${ }^{3}$ ) or kg/hr/ cft", ['kg/(h ft { ^{3 )', 'kg/hr/ cft']),
|
1811
|
+
("kilogram per hour per cubic meter", "kilogram_per_hour_per_cubic_meter", 0.00027778000000000004, "kg/(h m3) or kg/hr/ cu.m", ['kg/(h m3)', 'kg/hr/ cu.m']),
|
1812
|
+
("kilogram per second per cubic meter", "kilogram_per_second_per_cubic_meter", 1.0, "$\\mathrm{kg} /\\left(\\mathrm{s} \\mathrm{m}^{3}\\right)$ or kg/sec/ cu.m", ['kg /left(s m^{3right)', 'kg/sec/ cu.m']),
|
1813
|
+
("pound per hour per cubic foot", "pound_per_hour_per_cubic_foot", 0.0044496, "$\\mathrm{lb} /\\left(\\mathrm{h} \\mathrm{ft}^{3}\\right)$ or $\\mathrm{lb} / \\mathrm{hr} / \\mathrm{cft}$ or PPH/cft", ['lb /left(h ft^{3right)', 'lb / hr / cft', 'PPH/cft']),
|
1814
|
+
("pound per minute per cubic foot", "pound_per_minute_per_cubic_foot", 0.26697, "lb/(min $\\mathrm{ft}^{3}$ ) or lb/ $\\mathrm{min} / \\mathrm{cft}$", ['lb/(min ft^{3 )', 'lb/ min / cft']),
|
1815
|
+
("pound per second per cubic foot", "pound_per_second_per_cubic_foot", 16.018, "b/(s ft ${ }^{3}$ ) or lb/sec/cft", ['b/(s ft { ^{3 )', 'lb/sec/cft'])
|
1816
|
+
],
|
1817
|
+
"field_name": "volumetric_mass_flow_rate",
|
1818
|
+
"display_name": "Volumetric Mass Flow Rate",
|
1819
|
+
},
|
1820
|
+
"Wavenumber": {
|
1821
|
+
"dimension": WAVENUMBER,
|
1822
|
+
"default_unit": "diopter",
|
1823
|
+
"units": [
|
1824
|
+
("diopter", "diopter", 1.0, "D", ['D']),
|
1825
|
+
("kayser", "kayser", 100.0, "K", ['K']),
|
1826
|
+
("reciprocal meter", "reciprocal_meter", 1.0, "1/m", [])
|
1827
|
+
],
|
1828
|
+
"field_name": "wavenumber",
|
1829
|
+
"display_name": "Wavenumber",
|
1830
|
+
}
|
1831
|
+
}
|
18
1832
|
|
19
|
-
|
20
|
-
class
|
21
|
-
"""
|
22
|
-
TypeSafeVariable extended with expression and equation capabilities.
|
1833
|
+
# Special Dimensionless variable - handcrafted for proper behavior
|
1834
|
+
class DimensionlessSetter(TypeSafeSetter):
|
1835
|
+
"""Dimensionless-specific setter with only dimensionless units."""
|
23
1836
|
|
24
|
-
|
25
|
-
|
26
|
-
"""
|
1837
|
+
def __init__(self, variable: 'Dimensionless', value: float):
|
1838
|
+
super().__init__(variable, value)
|
27
1839
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
return
|
1840
|
+
# Dimensionless units
|
1841
|
+
@property
|
1842
|
+
def dimensionless(self) -> 'Dimensionless':
|
1843
|
+
self.variable.quantity = FastQuantity(self.value, DimensionlessUnits.dimensionless)
|
1844
|
+
return cast('Dimensionless', self.variable)
|
33
1845
|
|
34
|
-
|
35
|
-
|
36
|
-
|
1846
|
+
# Common alias for no units
|
1847
|
+
@property
|
1848
|
+
def unitless(self) -> 'Dimensionless':
|
1849
|
+
self.variable.quantity = FastQuantity(self.value, DimensionlessUnits.dimensionless)
|
1850
|
+
return cast('Dimensionless', self.variable)
|
37
1851
|
|
38
|
-
def __radd__(self, other: FastQuantity | int | float) -> Expression:
|
39
|
-
"""Reverse add for this variable."""
|
40
|
-
return wrap_operand(other) + wrap_operand(self)
|
41
|
-
|
42
|
-
def __sub__(self, other: TypeSafeVariable | FastQuantity | int | float) -> Expression:
|
43
|
-
"""Subtract another operand from this variable, returning an Expression."""
|
44
|
-
return wrap_operand(self) - wrap_operand(other)
|
45
|
-
|
46
|
-
def __rsub__(self, other: FastQuantity | int | float) -> Expression:
|
47
|
-
"""Reverse subtract for this variable."""
|
48
|
-
return wrap_operand(other) - wrap_operand(self)
|
49
|
-
|
50
|
-
def __mul__(self, other: TypeSafeVariable | FastQuantity | int | float) -> Expression:
|
51
|
-
"""Multiply this variable by another operand, returning an Expression."""
|
52
|
-
return wrap_operand(self) * wrap_operand(other)
|
53
|
-
|
54
|
-
def __rmul__(self, other: FastQuantity | int | float) -> Expression:
|
55
|
-
"""Reverse multiply for this variable."""
|
56
|
-
return wrap_operand(other) * wrap_operand(self)
|
57
|
-
|
58
|
-
def __truediv__(self, other: TypeSafeVariable | FastQuantity | int | float) -> Expression:
|
59
|
-
"""Divide this variable by another operand, returning an Expression."""
|
60
|
-
return wrap_operand(self) / wrap_operand(other)
|
61
1852
|
|
62
|
-
|
63
|
-
|
64
|
-
|
1853
|
+
class Dimensionless(TypedVariable):
|
1854
|
+
"""Type-safe dimensionless variable with expression capabilities."""
|
1855
|
+
|
1856
|
+
_setter_class = DimensionlessSetter
|
1857
|
+
_expected_dimension = DIMENSIONLESS
|
1858
|
+
_default_unit_property = "dimensionless"
|
65
1859
|
|
66
|
-
def
|
67
|
-
"""
|
68
|
-
return
|
1860
|
+
def set(self, value: float) -> DimensionlessSetter:
|
1861
|
+
"""Create a dimensionless setter for this variable with proper type annotation."""
|
1862
|
+
return DimensionlessSetter(self, value)
|
69
1863
|
|
70
|
-
def __rpow__(self, other: FastQuantity | int | float) -> Expression:
|
71
|
-
"""Reverse power for this variable."""
|
72
|
-
return wrap_operand(other) ** wrap_operand(self)
|
73
1864
|
|
74
1865
|
|
75
|
-
|
76
|
-
|
77
|
-
|
1866
|
+
def convert_unit_name_to_property(unit_name: str) -> str:
|
1867
|
+
"""Convert unit name to property name without automatic pluralization."""
|
1868
|
+
# Use unit name as-is for property name
|
1869
|
+
# Replace any characters that are not valid Python identifiers
|
1870
|
+
property_name = unit_name.replace('-', '_').replace(' ', '_').replace('.', '_')
|
78
1871
|
|
79
|
-
|
80
|
-
|
1872
|
+
# Handle Python reserved words and other edge cases
|
1873
|
+
reserved_words = {'class', 'def', 'if', 'else', 'for', 'while', 'import', 'from', 'as', 'in'}
|
1874
|
+
if property_name in reserved_words:
|
1875
|
+
property_name = f"{property_name}_unit"
|
81
1876
|
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
1877
|
+
return property_name
|
1878
|
+
|
1879
|
+
|
1880
|
+
def create_setter_class(class_name: str, variable_name: str, definition: dict[str, Any]) -> type:
|
1881
|
+
"""Dynamically create a setter class with unit properties."""
|
87
1882
|
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
1883
|
+
# Create base setter class
|
1884
|
+
setter_class = type(
|
1885
|
+
class_name,
|
1886
|
+
(TypeSafeSetter,),
|
1887
|
+
{
|
1888
|
+
'__init__': lambda self, variable, value: TypeSafeSetter.__init__(self, variable, value),
|
1889
|
+
'__doc__': f"{variable_name}-specific setter with only {variable_name.lower()} units."
|
1890
|
+
}
|
1891
|
+
)
|
92
1892
|
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
1893
|
+
# Add properties for each unit using unit data directly
|
1894
|
+
for unit_name, property_name, si_factor, symbol, aliases in definition["units"]:
|
1895
|
+
# Create a unit definition from the consolidated data
|
1896
|
+
def make_property(unit_nm, si_fac, sym):
|
1897
|
+
def getter(self):
|
1898
|
+
# Create unit definition and constant from consolidated unit data
|
1899
|
+
unit_def = UnitDefinition(
|
1900
|
+
name=unit_nm,
|
1901
|
+
symbol=sym,
|
1902
|
+
dimension=definition["dimension"],
|
1903
|
+
si_factor=si_fac
|
1904
|
+
)
|
1905
|
+
unit_const = UnitConstant(unit_def)
|
1906
|
+
self.variable.quantity = FastQuantity(self.value, unit_const)
|
1907
|
+
return self.variable # type: ignore
|
1908
|
+
return property(getter)
|
1909
|
+
|
1910
|
+
# Add the primary property to the class
|
1911
|
+
setattr(setter_class, property_name, make_property(unit_name, si_factor, symbol))
|
1912
|
+
|
1913
|
+
# Add alias properties
|
1914
|
+
for alias in aliases:
|
1915
|
+
# Convert alias to valid property name
|
1916
|
+
alias_property = convert_unit_name_to_property(alias)
|
1917
|
+
# Only add if it's different from the main property and doesn't already exist
|
1918
|
+
if alias_property != property_name and not hasattr(setter_class, alias_property):
|
1919
|
+
setattr(setter_class, alias_property, make_property(unit_name, si_factor, symbol))
|
97
1920
|
|
98
|
-
|
99
|
-
def feet(self) -> Length:
|
100
|
-
self.variable.quantity = FastQuantity(self.value, LengthUnits.foot)
|
101
|
-
return cast(Length, self.variable)
|
1921
|
+
return setter_class
|
102
1922
|
|
103
1923
|
|
104
|
-
|
105
|
-
"""
|
1924
|
+
def create_variable_class(class_name: str, definition: dict[str, Any], setter_class: type) -> type:
|
1925
|
+
"""Dynamically create a variable class."""
|
106
1926
|
|
107
|
-
|
108
|
-
|
1927
|
+
# Create the variable class
|
1928
|
+
variable_class = type(
|
1929
|
+
class_name,
|
1930
|
+
(TypedVariable,),
|
1931
|
+
{
|
1932
|
+
'_setter_class': setter_class,
|
1933
|
+
'_expected_dimension': definition["dimension"],
|
1934
|
+
'_default_unit_property': definition["default_unit"],
|
1935
|
+
'__doc__': f"Type-safe {class_name.lower()} variable with expression capabilities.",
|
1936
|
+
'set': lambda self, value: setter_class(self, value)
|
1937
|
+
}
|
1938
|
+
)
|
109
1939
|
|
110
|
-
#
|
111
|
-
|
112
|
-
def psi(self) -> Pressure:
|
113
|
-
self.variable.quantity = FastQuantity(self.value, PressureUnits.psi)
|
114
|
-
return cast(Pressure, self.variable)
|
1940
|
+
# Add type hint for set method
|
1941
|
+
variable_class.set.__annotations__ = {'value': float, 'return': setter_class}
|
115
1942
|
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
1943
|
+
return variable_class
|
1944
|
+
|
1945
|
+
|
1946
|
+
# Create all variable and setter classes dynamically
|
1947
|
+
for var_name, var_def in VARIABLE_DEFINITIONS.items():
|
1948
|
+
# Create setter class
|
1949
|
+
setter_name = f"{var_name}Setter"
|
1950
|
+
setter_class = create_setter_class(setter_name, var_name, var_def)
|
120
1951
|
|
121
|
-
|
122
|
-
|
123
|
-
self.variable.quantity = FastQuantity(self.value, PressureUnits.megapascal)
|
124
|
-
return cast(Pressure, self.variable)
|
1952
|
+
# Create variable class
|
1953
|
+
variable_class = create_variable_class(var_name, var_def, setter_class)
|
125
1954
|
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
return cast(Pressure, self.variable)
|
1955
|
+
# Export them to module namespace
|
1956
|
+
globals()[setter_name] = setter_class
|
1957
|
+
globals()[var_name] = variable_class
|
130
1958
|
|
1959
|
+
# Individual exports for easier import
|
1960
|
+
# Special Dimensionless class is already defined above
|
131
1961
|
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
1962
|
+
AbsorbedDoseSetter = globals()['AbsorbedDoseSetter']
|
1963
|
+
AbsorbedDose = globals()['AbsorbedDose']
|
1964
|
+
AccelerationSetter = globals()['AccelerationSetter']
|
1965
|
+
Acceleration = globals()['Acceleration']
|
1966
|
+
ActivationEnergySetter = globals()['ActivationEnergySetter']
|
1967
|
+
ActivationEnergy = globals()['ActivationEnergy']
|
1968
|
+
AmountOfSubstanceSetter = globals()['AmountOfSubstanceSetter']
|
1969
|
+
AmountOfSubstance = globals()['AmountOfSubstance']
|
1970
|
+
AnglePlaneSetter = globals()['AnglePlaneSetter']
|
1971
|
+
AnglePlane = globals()['AnglePlane']
|
1972
|
+
AngleSolidSetter = globals()['AngleSolidSetter']
|
1973
|
+
AngleSolid = globals()['AngleSolid']
|
1974
|
+
AngularAccelerationSetter = globals()['AngularAccelerationSetter']
|
1975
|
+
AngularAcceleration = globals()['AngularAcceleration']
|
1976
|
+
AngularMomentumSetter = globals()['AngularMomentumSetter']
|
1977
|
+
AngularMomentum = globals()['AngularMomentum']
|
1978
|
+
AreaSetter = globals()['AreaSetter']
|
1979
|
+
Area = globals()['Area']
|
1980
|
+
AreaPerUnitVolumeSetter = globals()['AreaPerUnitVolumeSetter']
|
1981
|
+
AreaPerUnitVolume = globals()['AreaPerUnitVolume']
|
1982
|
+
AtomicWeightSetter = globals()['AtomicWeightSetter']
|
1983
|
+
AtomicWeight = globals()['AtomicWeight']
|
1984
|
+
ConcentrationSetter = globals()['ConcentrationSetter']
|
1985
|
+
Concentration = globals()['Concentration']
|
1986
|
+
DynamicFluiditySetter = globals()['DynamicFluiditySetter']
|
1987
|
+
DynamicFluidity = globals()['DynamicFluidity']
|
1988
|
+
ElectricCapacitanceSetter = globals()['ElectricCapacitanceSetter']
|
1989
|
+
ElectricCapacitance = globals()['ElectricCapacitance']
|
1990
|
+
ElectricChargeSetter = globals()['ElectricChargeSetter']
|
1991
|
+
ElectricCharge = globals()['ElectricCharge']
|
1992
|
+
ElectricCurrentIntensitySetter = globals()['ElectricCurrentIntensitySetter']
|
1993
|
+
ElectricCurrentIntensity = globals()['ElectricCurrentIntensity']
|
1994
|
+
ElectricDipoleMomentSetter = globals()['ElectricDipoleMomentSetter']
|
1995
|
+
ElectricDipoleMoment = globals()['ElectricDipoleMoment']
|
1996
|
+
ElectricFieldStrengthSetter = globals()['ElectricFieldStrengthSetter']
|
1997
|
+
ElectricFieldStrength = globals()['ElectricFieldStrength']
|
1998
|
+
ElectricInductanceSetter = globals()['ElectricInductanceSetter']
|
1999
|
+
ElectricInductance = globals()['ElectricInductance']
|
2000
|
+
ElectricPotentialSetter = globals()['ElectricPotentialSetter']
|
2001
|
+
ElectricPotential = globals()['ElectricPotential']
|
2002
|
+
ElectricResistanceSetter = globals()['ElectricResistanceSetter']
|
2003
|
+
ElectricResistance = globals()['ElectricResistance']
|
2004
|
+
ElectricalConductanceSetter = globals()['ElectricalConductanceSetter']
|
2005
|
+
ElectricalConductance = globals()['ElectricalConductance']
|
2006
|
+
ElectricalPermittivitySetter = globals()['ElectricalPermittivitySetter']
|
2007
|
+
ElectricalPermittivity = globals()['ElectricalPermittivity']
|
2008
|
+
ElectricalResistivitySetter = globals()['ElectricalResistivitySetter']
|
2009
|
+
ElectricalResistivity = globals()['ElectricalResistivity']
|
2010
|
+
EnergyFluxSetter = globals()['EnergyFluxSetter']
|
2011
|
+
EnergyFlux = globals()['EnergyFlux']
|
2012
|
+
EnergyHeatWorkSetter = globals()['EnergyHeatWorkSetter']
|
2013
|
+
EnergyHeatWork = globals()['EnergyHeatWork']
|
2014
|
+
EnergyPerUnitAreaSetter = globals()['EnergyPerUnitAreaSetter']
|
2015
|
+
EnergyPerUnitArea = globals()['EnergyPerUnitArea']
|
2016
|
+
ForceSetter = globals()['ForceSetter']
|
2017
|
+
Force = globals()['Force']
|
2018
|
+
ForceBodySetter = globals()['ForceBodySetter']
|
2019
|
+
ForceBody = globals()['ForceBody']
|
2020
|
+
ForcePerUnitMassSetter = globals()['ForcePerUnitMassSetter']
|
2021
|
+
ForcePerUnitMass = globals()['ForcePerUnitMass']
|
2022
|
+
FrequencyVoltageRatioSetter = globals()['FrequencyVoltageRatioSetter']
|
2023
|
+
FrequencyVoltageRatio = globals()['FrequencyVoltageRatio']
|
2024
|
+
FuelConsumptionSetter = globals()['FuelConsumptionSetter']
|
2025
|
+
FuelConsumption = globals()['FuelConsumption']
|
2026
|
+
HeatOfCombustionSetter = globals()['HeatOfCombustionSetter']
|
2027
|
+
HeatOfCombustion = globals()['HeatOfCombustion']
|
2028
|
+
HeatOfFusionSetter = globals()['HeatOfFusionSetter']
|
2029
|
+
HeatOfFusion = globals()['HeatOfFusion']
|
2030
|
+
HeatOfVaporizationSetter = globals()['HeatOfVaporizationSetter']
|
2031
|
+
HeatOfVaporization = globals()['HeatOfVaporization']
|
2032
|
+
HeatTransferCoefficientSetter = globals()['HeatTransferCoefficientSetter']
|
2033
|
+
HeatTransferCoefficient = globals()['HeatTransferCoefficient']
|
2034
|
+
IlluminanceSetter = globals()['IlluminanceSetter']
|
2035
|
+
Illuminance = globals()['Illuminance']
|
2036
|
+
KineticEnergyOfTurbulenceSetter = globals()['KineticEnergyOfTurbulenceSetter']
|
2037
|
+
KineticEnergyOfTurbulence = globals()['KineticEnergyOfTurbulence']
|
2038
|
+
LengthSetter = globals()['LengthSetter']
|
2039
|
+
Length = globals()['Length']
|
2040
|
+
LinearMassDensitySetter = globals()['LinearMassDensitySetter']
|
2041
|
+
LinearMassDensity = globals()['LinearMassDensity']
|
2042
|
+
LinearMomentumSetter = globals()['LinearMomentumSetter']
|
2043
|
+
LinearMomentum = globals()['LinearMomentum']
|
2044
|
+
LuminanceSelfSetter = globals()['LuminanceSelfSetter']
|
2045
|
+
LuminanceSelf = globals()['LuminanceSelf']
|
2046
|
+
LuminousFluxSetter = globals()['LuminousFluxSetter']
|
2047
|
+
LuminousFlux = globals()['LuminousFlux']
|
2048
|
+
LuminousIntensitySetter = globals()['LuminousIntensitySetter']
|
2049
|
+
LuminousIntensity = globals()['LuminousIntensity']
|
2050
|
+
MagneticFieldSetter = globals()['MagneticFieldSetter']
|
2051
|
+
MagneticField = globals()['MagneticField']
|
2052
|
+
MagneticFluxSetter = globals()['MagneticFluxSetter']
|
2053
|
+
MagneticFlux = globals()['MagneticFlux']
|
2054
|
+
MagneticInductionFieldStrengthSetter = globals()['MagneticInductionFieldStrengthSetter']
|
2055
|
+
MagneticInductionFieldStrength = globals()['MagneticInductionFieldStrength']
|
2056
|
+
MagneticMomentSetter = globals()['MagneticMomentSetter']
|
2057
|
+
MagneticMoment = globals()['MagneticMoment']
|
2058
|
+
MagneticPermeabilitySetter = globals()['MagneticPermeabilitySetter']
|
2059
|
+
MagneticPermeability = globals()['MagneticPermeability']
|
2060
|
+
MagnetomotiveForceSetter = globals()['MagnetomotiveForceSetter']
|
2061
|
+
MagnetomotiveForce = globals()['MagnetomotiveForce']
|
2062
|
+
MassSetter = globals()['MassSetter']
|
2063
|
+
Mass = globals()['Mass']
|
2064
|
+
MassDensitySetter = globals()['MassDensitySetter']
|
2065
|
+
MassDensity = globals()['MassDensity']
|
2066
|
+
MassFlowRateSetter = globals()['MassFlowRateSetter']
|
2067
|
+
MassFlowRate = globals()['MassFlowRate']
|
2068
|
+
MassFluxSetter = globals()['MassFluxSetter']
|
2069
|
+
MassFlux = globals()['MassFlux']
|
2070
|
+
MassFractionOfISetter = globals()['MassFractionOfISetter']
|
2071
|
+
MassFractionOfI = globals()['MassFractionOfI']
|
2072
|
+
MassTransferCoefficientSetter = globals()['MassTransferCoefficientSetter']
|
2073
|
+
MassTransferCoefficient = globals()['MassTransferCoefficient']
|
2074
|
+
MolalityOfSoluteISetter = globals()['MolalityOfSoluteISetter']
|
2075
|
+
MolalityOfSoluteI = globals()['MolalityOfSoluteI']
|
2076
|
+
MolarConcentrationByMassSetter = globals()['MolarConcentrationByMassSetter']
|
2077
|
+
MolarConcentrationByMass = globals()['MolarConcentrationByMass']
|
2078
|
+
MolarFlowRateSetter = globals()['MolarFlowRateSetter']
|
2079
|
+
MolarFlowRate = globals()['MolarFlowRate']
|
2080
|
+
MolarFluxSetter = globals()['MolarFluxSetter']
|
2081
|
+
MolarFlux = globals()['MolarFlux']
|
2082
|
+
MolarHeatCapacitySetter = globals()['MolarHeatCapacitySetter']
|
2083
|
+
MolarHeatCapacity = globals()['MolarHeatCapacity']
|
2084
|
+
MolarityOfISetter = globals()['MolarityOfISetter']
|
2085
|
+
MolarityOfI = globals()['MolarityOfI']
|
2086
|
+
MoleFractionOfISetter = globals()['MoleFractionOfISetter']
|
2087
|
+
MoleFractionOfI = globals()['MoleFractionOfI']
|
2088
|
+
MomentOfInertiaSetter = globals()['MomentOfInertiaSetter']
|
2089
|
+
MomentOfInertia = globals()['MomentOfInertia']
|
2090
|
+
MomentumFlowRateSetter = globals()['MomentumFlowRateSetter']
|
2091
|
+
MomentumFlowRate = globals()['MomentumFlowRate']
|
2092
|
+
MomentumFluxSetter = globals()['MomentumFluxSetter']
|
2093
|
+
MomentumFlux = globals()['MomentumFlux']
|
2094
|
+
NormalityOfSolutionSetter = globals()['NormalityOfSolutionSetter']
|
2095
|
+
NormalityOfSolution = globals()['NormalityOfSolution']
|
2096
|
+
ParticleDensitySetter = globals()['ParticleDensitySetter']
|
2097
|
+
ParticleDensity = globals()['ParticleDensity']
|
2098
|
+
PermeabilitySetter = globals()['PermeabilitySetter']
|
2099
|
+
Permeability = globals()['Permeability']
|
2100
|
+
PhotonEmissionRateSetter = globals()['PhotonEmissionRateSetter']
|
2101
|
+
PhotonEmissionRate = globals()['PhotonEmissionRate']
|
2102
|
+
PowerPerUnitMassSetter = globals()['PowerPerUnitMassSetter']
|
2103
|
+
PowerPerUnitMass = globals()['PowerPerUnitMass']
|
2104
|
+
PowerPerUnitVolumeSetter = globals()['PowerPerUnitVolumeSetter']
|
2105
|
+
PowerPerUnitVolume = globals()['PowerPerUnitVolume']
|
2106
|
+
PowerThermalDutySetter = globals()['PowerThermalDutySetter']
|
2107
|
+
PowerThermalDuty = globals()['PowerThermalDuty']
|
2108
|
+
PressureSetter = globals()['PressureSetter']
|
2109
|
+
Pressure = globals()['Pressure']
|
2110
|
+
RadiationDoseEquivalentSetter = globals()['RadiationDoseEquivalentSetter']
|
2111
|
+
RadiationDoseEquivalent = globals()['RadiationDoseEquivalent']
|
2112
|
+
RadiationExposureSetter = globals()['RadiationExposureSetter']
|
2113
|
+
RadiationExposure = globals()['RadiationExposure']
|
2114
|
+
RadioactivitySetter = globals()['RadioactivitySetter']
|
2115
|
+
Radioactivity = globals()['Radioactivity']
|
2116
|
+
SecondMomentOfAreaSetter = globals()['SecondMomentOfAreaSetter']
|
2117
|
+
SecondMomentOfArea = globals()['SecondMomentOfArea']
|
2118
|
+
SecondRadiationConstantPlanckSetter = globals()['SecondRadiationConstantPlanckSetter']
|
2119
|
+
SecondRadiationConstantPlanck = globals()['SecondRadiationConstantPlanck']
|
2120
|
+
SpecificEnthalpySetter = globals()['SpecificEnthalpySetter']
|
2121
|
+
SpecificEnthalpy = globals()['SpecificEnthalpy']
|
2122
|
+
SpecificGravitySetter = globals()['SpecificGravitySetter']
|
2123
|
+
SpecificGravity = globals()['SpecificGravity']
|
2124
|
+
SpecificHeatCapacityConstantPressureSetter = globals()['SpecificHeatCapacityConstantPressureSetter']
|
2125
|
+
SpecificHeatCapacityConstantPressure = globals()['SpecificHeatCapacityConstantPressure']
|
2126
|
+
SpecificLengthSetter = globals()['SpecificLengthSetter']
|
2127
|
+
SpecificLength = globals()['SpecificLength']
|
2128
|
+
SpecificSurfaceSetter = globals()['SpecificSurfaceSetter']
|
2129
|
+
SpecificSurface = globals()['SpecificSurface']
|
2130
|
+
SpecificVolumeSetter = globals()['SpecificVolumeSetter']
|
2131
|
+
SpecificVolume = globals()['SpecificVolume']
|
2132
|
+
StressSetter = globals()['StressSetter']
|
2133
|
+
Stress = globals()['Stress']
|
2134
|
+
SurfaceMassDensitySetter = globals()['SurfaceMassDensitySetter']
|
2135
|
+
SurfaceMassDensity = globals()['SurfaceMassDensity']
|
2136
|
+
SurfaceTensionSetter = globals()['SurfaceTensionSetter']
|
2137
|
+
SurfaceTension = globals()['SurfaceTension']
|
2138
|
+
TemperatureSetter = globals()['TemperatureSetter']
|
2139
|
+
Temperature = globals()['Temperature']
|
2140
|
+
ThermalConductivitySetter = globals()['ThermalConductivitySetter']
|
2141
|
+
ThermalConductivity = globals()['ThermalConductivity']
|
2142
|
+
TimeSetter = globals()['TimeSetter']
|
2143
|
+
Time = globals()['Time']
|
2144
|
+
TorqueSetter = globals()['TorqueSetter']
|
2145
|
+
Torque = globals()['Torque']
|
2146
|
+
TurbulenceEnergyDissipationRateSetter = globals()['TurbulenceEnergyDissipationRateSetter']
|
2147
|
+
TurbulenceEnergyDissipationRate = globals()['TurbulenceEnergyDissipationRate']
|
2148
|
+
VelocityAngularSetter = globals()['VelocityAngularSetter']
|
2149
|
+
VelocityAngular = globals()['VelocityAngular']
|
2150
|
+
VelocityLinearSetter = globals()['VelocityLinearSetter']
|
2151
|
+
VelocityLinear = globals()['VelocityLinear']
|
2152
|
+
ViscosityDynamicSetter = globals()['ViscosityDynamicSetter']
|
2153
|
+
ViscosityDynamic = globals()['ViscosityDynamic']
|
2154
|
+
ViscosityKinematicSetter = globals()['ViscosityKinematicSetter']
|
2155
|
+
ViscosityKinematic = globals()['ViscosityKinematic']
|
2156
|
+
VolumeSetter = globals()['VolumeSetter']
|
2157
|
+
Volume = globals()['Volume']
|
2158
|
+
VolumeFractionOfISetter = globals()['VolumeFractionOfISetter']
|
2159
|
+
VolumeFractionOfI = globals()['VolumeFractionOfI']
|
2160
|
+
VolumetricCalorificHeatingValueSetter = globals()['VolumetricCalorificHeatingValueSetter']
|
2161
|
+
VolumetricCalorificHeatingValue = globals()['VolumetricCalorificHeatingValue']
|
2162
|
+
VolumetricCoefficientOfExpansionSetter = globals()['VolumetricCoefficientOfExpansionSetter']
|
2163
|
+
VolumetricCoefficientOfExpansion = globals()['VolumetricCoefficientOfExpansion']
|
2164
|
+
VolumetricFlowRateSetter = globals()['VolumetricFlowRateSetter']
|
2165
|
+
VolumetricFlowRate = globals()['VolumetricFlowRate']
|
2166
|
+
VolumetricFluxSetter = globals()['VolumetricFluxSetter']
|
2167
|
+
VolumetricFlux = globals()['VolumetricFlux']
|
2168
|
+
VolumetricMassFlowRateSetter = globals()['VolumetricMassFlowRateSetter']
|
2169
|
+
VolumetricMassFlowRate = globals()['VolumetricMassFlowRate']
|
2170
|
+
WavenumberSetter = globals()['WavenumberSetter']
|
2171
|
+
Wavenumber = globals()['Wavenumber']
|
2172
|
+
|
2173
|
+
|
2174
|
+
# Module registration compatibility
|
2175
|
+
def get_consolidated_variable_modules():
|
2176
|
+
"""Return module-like objects for consolidated variables."""
|
137
2177
|
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
2178
|
+
class ConsolidatedVariableModule:
|
2179
|
+
"""Mock module object for compatibility with existing registration system."""
|
2180
|
+
|
2181
|
+
def __init__(self, var_name: str):
|
2182
|
+
self.var_name = var_name
|
2183
|
+
self.definition = VARIABLE_DEFINITIONS[var_name]
|
2184
|
+
self.variable_class = globals()[var_name]
|
2185
|
+
self.setter_class = globals()[f"{var_name}Setter"]
|
2186
|
+
|
2187
|
+
def get_variable_class(self):
|
2188
|
+
return self.variable_class
|
2189
|
+
|
2190
|
+
def get_setter_class(self):
|
2191
|
+
return self.setter_class
|
2192
|
+
|
2193
|
+
def get_expected_dimension(self):
|
2194
|
+
return self.definition["dimension"]
|
143
2195
|
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
2196
|
+
return [
|
2197
|
+
ConsolidatedVariableModule("AbsorbedDose"),
|
2198
|
+
ConsolidatedVariableModule("Acceleration"),
|
2199
|
+
ConsolidatedVariableModule("ActivationEnergy"),
|
2200
|
+
ConsolidatedVariableModule("AmountOfSubstance"),
|
2201
|
+
ConsolidatedVariableModule("AnglePlane"),
|
2202
|
+
ConsolidatedVariableModule("AngleSolid"),
|
2203
|
+
ConsolidatedVariableModule("AngularAcceleration"),
|
2204
|
+
ConsolidatedVariableModule("AngularMomentum"),
|
2205
|
+
ConsolidatedVariableModule("Area"),
|
2206
|
+
ConsolidatedVariableModule("AreaPerUnitVolume"),
|
2207
|
+
ConsolidatedVariableModule("AtomicWeight"),
|
2208
|
+
ConsolidatedVariableModule("Concentration"),
|
2209
|
+
ConsolidatedVariableModule("DynamicFluidity"),
|
2210
|
+
ConsolidatedVariableModule("ElectricCapacitance"),
|
2211
|
+
ConsolidatedVariableModule("ElectricCharge"),
|
2212
|
+
ConsolidatedVariableModule("ElectricCurrentIntensity"),
|
2213
|
+
ConsolidatedVariableModule("ElectricDipoleMoment"),
|
2214
|
+
ConsolidatedVariableModule("ElectricFieldStrength"),
|
2215
|
+
ConsolidatedVariableModule("ElectricInductance"),
|
2216
|
+
ConsolidatedVariableModule("ElectricPotential"),
|
2217
|
+
ConsolidatedVariableModule("ElectricResistance"),
|
2218
|
+
ConsolidatedVariableModule("ElectricalConductance"),
|
2219
|
+
ConsolidatedVariableModule("ElectricalPermittivity"),
|
2220
|
+
ConsolidatedVariableModule("ElectricalResistivity"),
|
2221
|
+
ConsolidatedVariableModule("EnergyFlux"),
|
2222
|
+
ConsolidatedVariableModule("EnergyHeatWork"),
|
2223
|
+
ConsolidatedVariableModule("EnergyPerUnitArea"),
|
2224
|
+
ConsolidatedVariableModule("Force"),
|
2225
|
+
ConsolidatedVariableModule("ForceBody"),
|
2226
|
+
ConsolidatedVariableModule("ForcePerUnitMass"),
|
2227
|
+
ConsolidatedVariableModule("FrequencyVoltageRatio"),
|
2228
|
+
ConsolidatedVariableModule("FuelConsumption"),
|
2229
|
+
ConsolidatedVariableModule("HeatOfCombustion"),
|
2230
|
+
ConsolidatedVariableModule("HeatOfFusion"),
|
2231
|
+
ConsolidatedVariableModule("HeatOfVaporization"),
|
2232
|
+
ConsolidatedVariableModule("HeatTransferCoefficient"),
|
2233
|
+
ConsolidatedVariableModule("Illuminance"),
|
2234
|
+
ConsolidatedVariableModule("KineticEnergyOfTurbulence"),
|
2235
|
+
ConsolidatedVariableModule("Length"),
|
2236
|
+
ConsolidatedVariableModule("LinearMassDensity"),
|
2237
|
+
ConsolidatedVariableModule("LinearMomentum"),
|
2238
|
+
ConsolidatedVariableModule("LuminanceSelf"),
|
2239
|
+
ConsolidatedVariableModule("LuminousFlux"),
|
2240
|
+
ConsolidatedVariableModule("LuminousIntensity"),
|
2241
|
+
ConsolidatedVariableModule("MagneticField"),
|
2242
|
+
ConsolidatedVariableModule("MagneticFlux"),
|
2243
|
+
ConsolidatedVariableModule("MagneticInductionFieldStrength"),
|
2244
|
+
ConsolidatedVariableModule("MagneticMoment"),
|
2245
|
+
ConsolidatedVariableModule("MagneticPermeability"),
|
2246
|
+
ConsolidatedVariableModule("MagnetomotiveForce"),
|
2247
|
+
ConsolidatedVariableModule("Mass"),
|
2248
|
+
ConsolidatedVariableModule("MassDensity"),
|
2249
|
+
ConsolidatedVariableModule("MassFlowRate"),
|
2250
|
+
ConsolidatedVariableModule("MassFlux"),
|
2251
|
+
ConsolidatedVariableModule("MassFractionOfI"),
|
2252
|
+
ConsolidatedVariableModule("MassTransferCoefficient"),
|
2253
|
+
ConsolidatedVariableModule("MolalityOfSoluteI"),
|
2254
|
+
ConsolidatedVariableModule("MolarConcentrationByMass"),
|
2255
|
+
ConsolidatedVariableModule("MolarFlowRate"),
|
2256
|
+
ConsolidatedVariableModule("MolarFlux"),
|
2257
|
+
ConsolidatedVariableModule("MolarHeatCapacity"),
|
2258
|
+
ConsolidatedVariableModule("MolarityOfI"),
|
2259
|
+
ConsolidatedVariableModule("MoleFractionOfI"),
|
2260
|
+
ConsolidatedVariableModule("MomentOfInertia"),
|
2261
|
+
ConsolidatedVariableModule("MomentumFlowRate"),
|
2262
|
+
ConsolidatedVariableModule("MomentumFlux"),
|
2263
|
+
ConsolidatedVariableModule("NormalityOfSolution"),
|
2264
|
+
ConsolidatedVariableModule("ParticleDensity"),
|
2265
|
+
ConsolidatedVariableModule("Permeability"),
|
2266
|
+
ConsolidatedVariableModule("PhotonEmissionRate"),
|
2267
|
+
ConsolidatedVariableModule("PowerPerUnitMass"),
|
2268
|
+
ConsolidatedVariableModule("PowerPerUnitVolume"),
|
2269
|
+
ConsolidatedVariableModule("PowerThermalDuty"),
|
2270
|
+
ConsolidatedVariableModule("Pressure"),
|
2271
|
+
ConsolidatedVariableModule("RadiationDoseEquivalent"),
|
2272
|
+
ConsolidatedVariableModule("RadiationExposure"),
|
2273
|
+
ConsolidatedVariableModule("Radioactivity"),
|
2274
|
+
ConsolidatedVariableModule("SecondMomentOfArea"),
|
2275
|
+
ConsolidatedVariableModule("SecondRadiationConstantPlanck"),
|
2276
|
+
ConsolidatedVariableModule("SpecificEnthalpy"),
|
2277
|
+
ConsolidatedVariableModule("SpecificGravity"),
|
2278
|
+
ConsolidatedVariableModule("SpecificHeatCapacityConstantPressure"),
|
2279
|
+
ConsolidatedVariableModule("SpecificLength"),
|
2280
|
+
ConsolidatedVariableModule("SpecificSurface"),
|
2281
|
+
ConsolidatedVariableModule("SpecificVolume"),
|
2282
|
+
ConsolidatedVariableModule("Stress"),
|
2283
|
+
ConsolidatedVariableModule("SurfaceMassDensity"),
|
2284
|
+
ConsolidatedVariableModule("SurfaceTension"),
|
2285
|
+
ConsolidatedVariableModule("Temperature"),
|
2286
|
+
ConsolidatedVariableModule("ThermalConductivity"),
|
2287
|
+
ConsolidatedVariableModule("Time"),
|
2288
|
+
ConsolidatedVariableModule("Torque"),
|
2289
|
+
ConsolidatedVariableModule("TurbulenceEnergyDissipationRate"),
|
2290
|
+
ConsolidatedVariableModule("VelocityAngular"),
|
2291
|
+
ConsolidatedVariableModule("VelocityLinear"),
|
2292
|
+
ConsolidatedVariableModule("ViscosityDynamic"),
|
2293
|
+
ConsolidatedVariableModule("ViscosityKinematic"),
|
2294
|
+
ConsolidatedVariableModule("Volume"),
|
2295
|
+
ConsolidatedVariableModule("VolumeFractionOfI"),
|
2296
|
+
ConsolidatedVariableModule("VolumetricCalorificHeatingValue"),
|
2297
|
+
ConsolidatedVariableModule("VolumetricCoefficientOfExpansion"),
|
2298
|
+
ConsolidatedVariableModule("VolumetricFlowRate"),
|
2299
|
+
ConsolidatedVariableModule("VolumetricFlux"),
|
2300
|
+
ConsolidatedVariableModule("VolumetricMassFlowRate"),
|
2301
|
+
ConsolidatedVariableModule("Wavenumber")
|
2302
|
+
]
|
216
2303
|
|
217
|
-
def __init__(self, *args, is_known: bool = True):
|
218
|
-
if len(args) == 1:
|
219
|
-
# Dimensionless("name") - original syntax
|
220
|
-
super().__init__(args[0], DIMENSIONLESS, is_known=is_known)
|
221
|
-
elif len(args) == 2:
|
222
|
-
# Dimensionless(value, "name") - new syntax
|
223
|
-
value, name = args
|
224
|
-
super().__init__(name, DIMENSIONLESS, is_known=is_known)
|
225
|
-
# Auto-set the value as dimensionless
|
226
|
-
setter = DimensionlessSetter(self, value)
|
227
|
-
setter.dimensionless
|
228
|
-
else:
|
229
|
-
raise ValueError("Dimensionless expects either 1 argument (name) or 2 arguments (value, name)")
|