uom-types 2.0.0 → 3.0.0
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.
- package/README.md +33 -1
- package/dist/_angle-plane.d.cts +89 -0
- package/dist/_angle-plane.d.mts +89 -0
- package/dist/_identity.d.cts +29 -0
- package/dist/_identity.d.mts +29 -0
- package/dist/_index.d.cts +235 -0
- package/dist/_index.d.mts +235 -0
- package/dist/_time-duration.d.cts +481 -0
- package/dist/_time-duration.d.mts +481 -0
- package/dist/{functions-ho.cjs → functions-higher-order.cjs} +31 -4
- package/dist/{functions-ho.d.cts → functions-higher-order.d.cts} +37 -8
- package/dist/{functions-ho.d.mts → functions-higher-order.d.mts} +37 -8
- package/dist/{functions-ho.mjs → functions-higher-order.mjs} +31 -4
- package/dist/functions.cjs +167 -5
- package/dist/functions.d.cts +169 -26
- package/dist/functions.d.mts +169 -26
- package/dist/functions.mjs +155 -6
- package/dist/index.d.cts +1 -86
- package/dist/index.d.mts +1 -86
- package/dist/units-converters.cjs +564 -0
- package/dist/units-converters.d.cts +370 -0
- package/dist/units-converters.d.mts +370 -0
- package/dist/units-converters.mjs +483 -0
- package/dist/units.d.cts +3056 -0
- package/dist/units.d.mts +3056 -0
- package/package.json +61 -48
- package/dist/si-units-converters.cjs +0 -2
- package/dist/si-units-converters.d.cts +0 -2
- package/dist/si-units-converters.d.mts +0 -2
- package/dist/si-units-converters.mjs +0 -1
- package/dist/si-units.d.cts +0 -5
- package/dist/si-units.d.mts +0 -5
package/dist/units.d.cts
ADDED
|
@@ -0,0 +1,3056 @@
|
|
|
1
|
+
import { B as BaseUnitClass } from './_angle-plane.cjs';
|
|
2
|
+
export { D as Degree, G as Gradian, a as PlaneAngle, b as PlaneAngleUnit, P as PlaneAngleUnitClass, c as PlaneAngleUnitFrom, R as Radian, T as Turn } from './_angle-plane.cjs';
|
|
3
|
+
import { d as AbstractUnitFrom, e as UnitSubvalues, f as UnitMeta, g as UnknownUnitMeta, h as UnitFrom, U as UnknownUnit, M as Multiply, a as Unit } from './_index.cjs';
|
|
4
|
+
import { R as ReciprocalUnitClass, l as Reciprocal, E as EnergyUnitClass, m as Energy, n as EnergyUnit, o as EnergyUnitFrom, J as Joule, p as TemperatureUnitClass, q as Temperature } from './_time-duration.cjs';
|
|
5
|
+
export { A as Are, w as Area, x as AreaUnit, v as AreaUnitClass, y as AreaUnitFrom, C as Celsius, k as Cubic, D as Day, a4 as Duration, a5 as DurationUnit, a3 as DurationUnitClass, a6 as DurationUnitFrom, r as Frequency, s as FrequencyUnit, F as FrequencyUnitClass, t as FrequencyUnitFrom, G as Gram, H as Hectare, f as Hertz, c as Hour, K as Kelvin, I as Length, N as LengthUnit, B as LengthUnitClass, O as LengthUnitFrom, L as Litre, U as Mass, V as MassUnit, Q as MassUnitClass, X as MassUnitFrom, M as Metre, b as Minute, h as PerDay, g as PerHour, P as PerMinute, u as PerSecond, i as PerWeek, j as PerYear, a as Second, S as Square, a1 as TemperatureUnit, a2 as TemperatureUnitFrom, T as Tonne, _ as Volume, $ as VolumeUnit, Z as VolumeUnitClass, a0 as VolumeUnitFrom, e as WattHour, d as WattMinute, z as WattSecond, W as Week, Y as Year } from './_time-duration.cjs';
|
|
6
|
+
export { a as Identity, b as IdentityUnit, I as IdentityUnitClass, c as IdentityUnitFrom, U as Unitless } from './_identity.cjs';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* @group Unit Classes
|
|
10
|
+
* @category Angle (Solid)
|
|
11
|
+
*/
|
|
12
|
+
type SolidAngleUnitClass = BaseUnitClass<{
|
|
13
|
+
Radian: 2;
|
|
14
|
+
}>;
|
|
15
|
+
/**
|
|
16
|
+
* @group Abstract Units
|
|
17
|
+
* @category Angle (Solid)
|
|
18
|
+
*/
|
|
19
|
+
type SolidAngle = AbstractUnitFrom<SolidAngleUnitClass>;
|
|
20
|
+
/**
|
|
21
|
+
* @group Unit Generators
|
|
22
|
+
* @category Angle (Solid)
|
|
23
|
+
*/
|
|
24
|
+
type SolidAngleUnit<M extends UnitSubvalues> = SolidAngleUnitFrom<UnitMeta<M>>;
|
|
25
|
+
/**
|
|
26
|
+
* @group Unit Generators
|
|
27
|
+
* @category Angle (Solid)
|
|
28
|
+
*/
|
|
29
|
+
type SolidAngleUnitFrom<M extends UnknownUnitMeta> = UnitFrom<SolidAngleUnitClass, M>;
|
|
30
|
+
/**
|
|
31
|
+
* A unit of {@link SolidAngle}.
|
|
32
|
+
*
|
|
33
|
+
* One steradian is the solid angle of a sphere subtended by a portion of the
|
|
34
|
+
* surface whose area is equal to the square of the sphere's radius.
|
|
35
|
+
* The total solid angle about a point is equal to 4π steradian.
|
|
36
|
+
*
|
|
37
|
+
* @group Units
|
|
38
|
+
* @category Derived
|
|
39
|
+
* @category Angle (Solid)
|
|
40
|
+
* @symbol `sr`
|
|
41
|
+
*/
|
|
42
|
+
type Steradian = SolidAngleUnit<{}>;
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* @group Unit Classes
|
|
46
|
+
* @category Chemical
|
|
47
|
+
*/
|
|
48
|
+
type AmountOfSubstanceUnitClass = BaseUnitClass<{
|
|
49
|
+
Mole: 1;
|
|
50
|
+
}>;
|
|
51
|
+
/**
|
|
52
|
+
* @group Abstract Units
|
|
53
|
+
* @category Chemical
|
|
54
|
+
*/
|
|
55
|
+
type AmountOfSubstance = AbstractUnitFrom<AmountOfSubstanceUnitClass>;
|
|
56
|
+
/**
|
|
57
|
+
* @group Unit Generators
|
|
58
|
+
* @category Chemical
|
|
59
|
+
*/
|
|
60
|
+
type AmountOfSubstanceUnit<M extends UnitSubvalues> = AmountOfSubstanceUnitFrom<UnitMeta<M>>;
|
|
61
|
+
/**
|
|
62
|
+
* @group Unit Generators
|
|
63
|
+
* @category Chemical
|
|
64
|
+
*/
|
|
65
|
+
type AmountOfSubstanceUnitFrom<M extends UnknownUnitMeta> = UnitFrom<AmountOfSubstanceUnitClass, M>;
|
|
66
|
+
/**
|
|
67
|
+
* A unit of {@link AmountOfSubstance}.
|
|
68
|
+
*
|
|
69
|
+
* @group Units
|
|
70
|
+
* @category Base
|
|
71
|
+
* @category Chemical
|
|
72
|
+
* @symbol `mol`
|
|
73
|
+
*/
|
|
74
|
+
type Mole = AmountOfSubstanceUnit<{}>;
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* @group Unit Classes
|
|
78
|
+
* @category Chemical
|
|
79
|
+
*/
|
|
80
|
+
type CatalyticActivityUnitClass = BaseUnitClass<{
|
|
81
|
+
Mole: 1;
|
|
82
|
+
Second: -1;
|
|
83
|
+
}>;
|
|
84
|
+
/**
|
|
85
|
+
* @group Abstract Units
|
|
86
|
+
* @category Chemical
|
|
87
|
+
*/
|
|
88
|
+
type CatalyticActivity = AbstractUnitFrom<CatalyticActivityUnitClass>;
|
|
89
|
+
/**
|
|
90
|
+
* @group Unit Generators
|
|
91
|
+
* @category Chemical
|
|
92
|
+
*/
|
|
93
|
+
type CatalyticActivityUnit<M extends UnitSubvalues> = CatalyticActivityUnitFrom<UnitMeta<M>>;
|
|
94
|
+
/**
|
|
95
|
+
* @group Unit Generators
|
|
96
|
+
* @category Chemical
|
|
97
|
+
*/
|
|
98
|
+
type CatalyticActivityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<CatalyticActivityUnitClass, M>;
|
|
99
|
+
/**
|
|
100
|
+
* A unit of {@link CatalyticActivity}.
|
|
101
|
+
*
|
|
102
|
+
* @group Units
|
|
103
|
+
* @category Derived
|
|
104
|
+
* @category Chemical
|
|
105
|
+
* @symbol `kat`
|
|
106
|
+
*/
|
|
107
|
+
type Katal = CatalyticActivityUnit<{}>;
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* @group Unit Classes
|
|
111
|
+
* @category Chemical
|
|
112
|
+
*/
|
|
113
|
+
type MolarConcentrationUnitClass = BaseUnitClass<{
|
|
114
|
+
Mole: 1;
|
|
115
|
+
Metre: -3;
|
|
116
|
+
}>;
|
|
117
|
+
/**
|
|
118
|
+
* @group Abstract Units
|
|
119
|
+
* @category Chemical
|
|
120
|
+
*/
|
|
121
|
+
type MolarConcentration = AbstractUnitFrom<MolarConcentrationUnitClass>;
|
|
122
|
+
/**
|
|
123
|
+
* @group Unit Generators
|
|
124
|
+
* @category Chemical
|
|
125
|
+
*/
|
|
126
|
+
type MolarConcentrationUnit<M extends UnitSubvalues> = MolarConcentrationUnitFrom<UnitMeta<M>>;
|
|
127
|
+
/**
|
|
128
|
+
* @group Unit Generators
|
|
129
|
+
* @category Chemical
|
|
130
|
+
*/
|
|
131
|
+
type MolarConcentrationUnitFrom<M extends UnknownUnitMeta> = UnitFrom<MolarConcentrationUnitClass, M>;
|
|
132
|
+
/**
|
|
133
|
+
* A unit of {@link MolarConcentration}.
|
|
134
|
+
*
|
|
135
|
+
* Equivalent to {@link MolePerCubicMetre}.
|
|
136
|
+
*
|
|
137
|
+
* @group Units
|
|
138
|
+
* @category Chemical
|
|
139
|
+
* @symbol `c`
|
|
140
|
+
*/
|
|
141
|
+
type Concentration = MolarConcentrationUnit<{}>;
|
|
142
|
+
/**
|
|
143
|
+
* A unit of {@link MolarConcentration}.
|
|
144
|
+
*
|
|
145
|
+
* Equivalent to {@link Concentration}.
|
|
146
|
+
*
|
|
147
|
+
* @group Units
|
|
148
|
+
* @category Chemical
|
|
149
|
+
* @symbol `mol/m³`
|
|
150
|
+
*/
|
|
151
|
+
type MolePerCubicMetre = Concentration;
|
|
152
|
+
/**
|
|
153
|
+
* A unit of {@link MolarConcentration}.
|
|
154
|
+
*
|
|
155
|
+
* @group Units
|
|
156
|
+
* @category Chemical
|
|
157
|
+
* @symbol `mol/l`
|
|
158
|
+
*/
|
|
159
|
+
type MolePerLiter = MolarConcentrationUnit<{
|
|
160
|
+
scalar10: 3;
|
|
161
|
+
}>;
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* @group Unit Classes
|
|
165
|
+
* @category Electromagnetic
|
|
166
|
+
*/
|
|
167
|
+
type ElectricCapacitanceUnitClass = BaseUnitClass<{
|
|
168
|
+
Ampere: 2;
|
|
169
|
+
Second: 4;
|
|
170
|
+
Kilogram: -1;
|
|
171
|
+
Metre: -2;
|
|
172
|
+
}>;
|
|
173
|
+
/**
|
|
174
|
+
* @group Abstract Units
|
|
175
|
+
* @category Electromagnetic
|
|
176
|
+
*/
|
|
177
|
+
type ElectricCapacitance = AbstractUnitFrom<ElectricCapacitanceUnitClass>;
|
|
178
|
+
/**
|
|
179
|
+
* @group Unit Generators
|
|
180
|
+
* @category Electromagnetic
|
|
181
|
+
*/
|
|
182
|
+
type ElectricCapacitanceUnit<M extends UnitSubvalues> = ElectricCapacitanceUnitFrom<UnitMeta<M>>;
|
|
183
|
+
/**
|
|
184
|
+
* @group Unit Generators
|
|
185
|
+
* @category Electromagnetic
|
|
186
|
+
*/
|
|
187
|
+
type ElectricCapacitanceUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ElectricCapacitanceUnitClass, M>;
|
|
188
|
+
/**
|
|
189
|
+
* A unit of {@link ElectricCapacitance}.
|
|
190
|
+
*
|
|
191
|
+
* One Farad is equal to the capacitance of a capacitor having an equal and opposite charge of 1 coulomb on
|
|
192
|
+
* each plate and a potential difference of 1 volt between the plates.
|
|
193
|
+
*
|
|
194
|
+
* @group Units
|
|
195
|
+
* @category Derived
|
|
196
|
+
* @category Electromagnetic
|
|
197
|
+
* @symbol `F`
|
|
198
|
+
*/
|
|
199
|
+
type Farad = ElectricCapacitanceUnit<{}>;
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* @group Unit Classes
|
|
203
|
+
* @category Electromagnetic
|
|
204
|
+
*/
|
|
205
|
+
type ElectricChargeDensityUnitClass = BaseUnitClass<{
|
|
206
|
+
Ampere: 1;
|
|
207
|
+
Second: 1;
|
|
208
|
+
Metre: -3;
|
|
209
|
+
}>;
|
|
210
|
+
/**
|
|
211
|
+
* @group Abstract Units
|
|
212
|
+
* @category Electromagnetic
|
|
213
|
+
*/
|
|
214
|
+
type ElectricChargeDensity = AbstractUnitFrom<ElectricChargeDensityUnitClass>;
|
|
215
|
+
/**
|
|
216
|
+
* @group Unit Generators
|
|
217
|
+
* @category Electromagnetic
|
|
218
|
+
*/
|
|
219
|
+
type ElectricChargeDensityUnit<M extends UnitSubvalues> = ElectricChargeDensityUnitFrom<UnitMeta<M>>;
|
|
220
|
+
/**
|
|
221
|
+
* @group Unit Generators
|
|
222
|
+
* @category Electromagnetic
|
|
223
|
+
*/
|
|
224
|
+
type ElectricChargeDensityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ElectricChargeDensityUnitClass, M>;
|
|
225
|
+
/**
|
|
226
|
+
* A unit of {@link ElectricChargeDensity}.
|
|
227
|
+
*
|
|
228
|
+
* @group Units
|
|
229
|
+
* @category Electromagnetic
|
|
230
|
+
* @symbol `C/m³`
|
|
231
|
+
*/
|
|
232
|
+
type CoulombPerCubicMetre = ElectricChargeDensityUnit<{}>;
|
|
233
|
+
|
|
234
|
+
/**
|
|
235
|
+
* @group Unit Classes
|
|
236
|
+
* @category Electromagnetic
|
|
237
|
+
*/
|
|
238
|
+
type ElectricChargeUnitClass = BaseUnitClass<{
|
|
239
|
+
Ampere: 1;
|
|
240
|
+
Second: 1;
|
|
241
|
+
}>;
|
|
242
|
+
/**
|
|
243
|
+
* @group Abstract Units
|
|
244
|
+
* @category Electromagnetic
|
|
245
|
+
*/
|
|
246
|
+
type ElectricCharge = AbstractUnitFrom<ElectricChargeUnitClass>;
|
|
247
|
+
/**
|
|
248
|
+
* @group Unit Generators
|
|
249
|
+
* @category Electromagnetic
|
|
250
|
+
*/
|
|
251
|
+
type ElectricChargeUnit<M extends UnitSubvalues> = ElectricChargeUnitFrom<UnitMeta<M>>;
|
|
252
|
+
/**
|
|
253
|
+
* @group Unit Generators
|
|
254
|
+
* @category Electromagnetic
|
|
255
|
+
*/
|
|
256
|
+
type ElectricChargeUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ElectricChargeUnitClass, M>;
|
|
257
|
+
/**
|
|
258
|
+
* A unit of {@link ElectricCharge}.
|
|
259
|
+
*
|
|
260
|
+
* One Coulomb is equal to the quantity of charge transferred in one second by a steady current of one Ampere.
|
|
261
|
+
*
|
|
262
|
+
* @group Units
|
|
263
|
+
* @category Derived
|
|
264
|
+
* @symbol `C`
|
|
265
|
+
*/
|
|
266
|
+
type Coulomb = ElectricChargeUnit<{}>;
|
|
267
|
+
|
|
268
|
+
/**
|
|
269
|
+
* @group Unit Classes
|
|
270
|
+
* @category Electromagnetic
|
|
271
|
+
*/
|
|
272
|
+
type ElectricConductanceUnitClass = BaseUnitClass<{
|
|
273
|
+
Kilogram: -1;
|
|
274
|
+
Metre: -2;
|
|
275
|
+
Second: 3;
|
|
276
|
+
Ampere: 2;
|
|
277
|
+
}>;
|
|
278
|
+
/**
|
|
279
|
+
* @group Abstract Units
|
|
280
|
+
* @category Electromagnetic
|
|
281
|
+
*/
|
|
282
|
+
type ElectricConductance = AbstractUnitFrom<ElectricConductanceUnitClass>;
|
|
283
|
+
/**
|
|
284
|
+
* @group Unit Generators
|
|
285
|
+
* @category Electromagnetic
|
|
286
|
+
*/
|
|
287
|
+
type ElectricConductanceUnit<M extends UnitSubvalues> = ElectricConductanceUnitFrom<UnitMeta<M>>;
|
|
288
|
+
/**
|
|
289
|
+
* @group Unit Generators
|
|
290
|
+
* @category Electromagnetic
|
|
291
|
+
*/
|
|
292
|
+
type ElectricConductanceUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ElectricConductanceUnitClass, M>;
|
|
293
|
+
/**
|
|
294
|
+
* A unit of {@link ElectricConductance}.
|
|
295
|
+
*
|
|
296
|
+
* One Siemens is equal to one ampere per volt.
|
|
297
|
+
*
|
|
298
|
+
* @group Units
|
|
299
|
+
* @category Electromagnetic
|
|
300
|
+
* @symbol `S`
|
|
301
|
+
*/
|
|
302
|
+
type Siemens = ElectricConductanceUnit<{}>;
|
|
303
|
+
|
|
304
|
+
/**
|
|
305
|
+
* @group Unit Classes
|
|
306
|
+
* @category Electromagnetic
|
|
307
|
+
*/
|
|
308
|
+
type ElectricalConductivityUnitClass = BaseUnitClass<{
|
|
309
|
+
Kilogram: -1;
|
|
310
|
+
Metre: -3;
|
|
311
|
+
Second: 3;
|
|
312
|
+
Ampere: 2;
|
|
313
|
+
}>;
|
|
314
|
+
/**
|
|
315
|
+
* @group Abstract Units
|
|
316
|
+
* @category Electromagnetic
|
|
317
|
+
*/
|
|
318
|
+
type ElectricalConductivity = AbstractUnitFrom<ElectricalConductivityUnitClass>;
|
|
319
|
+
/**
|
|
320
|
+
* @group Unit Generators
|
|
321
|
+
* @category Electromagnetic
|
|
322
|
+
*/
|
|
323
|
+
type ElectricalConductivityUnit<M extends UnitSubvalues> = ElectricalConductivityUnitFrom<UnitMeta<M>>;
|
|
324
|
+
/**
|
|
325
|
+
* @group Unit Generators
|
|
326
|
+
* @category Electromagnetic
|
|
327
|
+
*/
|
|
328
|
+
type ElectricalConductivityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ElectricalConductivityUnitClass, M>;
|
|
329
|
+
/**
|
|
330
|
+
* A unit of {@link ElectricalConductivity}.
|
|
331
|
+
*
|
|
332
|
+
* @group Units
|
|
333
|
+
* @category Electromagnetic
|
|
334
|
+
* @symbol `S/m`
|
|
335
|
+
*/
|
|
336
|
+
type SiemensPerMetre = ElectricalConductivityUnit<{}>;
|
|
337
|
+
|
|
338
|
+
/**
|
|
339
|
+
* @group Unit Classes
|
|
340
|
+
* @category Electromagnetic
|
|
341
|
+
*/
|
|
342
|
+
type ElectricCurrentDensityUnitClass = BaseUnitClass<{
|
|
343
|
+
Ampere: 1;
|
|
344
|
+
Metre: -2;
|
|
345
|
+
}>;
|
|
346
|
+
/**
|
|
347
|
+
* @group Abstract Units
|
|
348
|
+
* @category Electromagnetic
|
|
349
|
+
*/
|
|
350
|
+
type ElectricCurrentDensity = AbstractUnitFrom<ElectricCurrentDensityUnitClass>;
|
|
351
|
+
/**
|
|
352
|
+
* @group Unit Generators
|
|
353
|
+
* @category Electromagnetic
|
|
354
|
+
*/
|
|
355
|
+
type ElectricCurrentDensityUnit<M extends UnitSubvalues> = ElectricCurrentDensityUnitFrom<UnitMeta<M>>;
|
|
356
|
+
/**
|
|
357
|
+
* @group Unit Generators
|
|
358
|
+
* @category Electromagnetic
|
|
359
|
+
*/
|
|
360
|
+
type ElectricCurrentDensityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ElectricCurrentDensityUnitClass, M>;
|
|
361
|
+
/**
|
|
362
|
+
* A unit of {@link ElectricCurrentDensity}.
|
|
363
|
+
*
|
|
364
|
+
* @group Units
|
|
365
|
+
* @category Electromagnetic
|
|
366
|
+
* @symbol `A/m²`
|
|
367
|
+
*/
|
|
368
|
+
type AmperePerSquareMetre = ElectricCurrentDensityUnit<{}>;
|
|
369
|
+
|
|
370
|
+
/**
|
|
371
|
+
* @group Unit Classes
|
|
372
|
+
* @category Electromagnetic
|
|
373
|
+
*/
|
|
374
|
+
type ElectricCurrentUnitClass = BaseUnitClass<{
|
|
375
|
+
Ampere: 1;
|
|
376
|
+
}>;
|
|
377
|
+
/**
|
|
378
|
+
* @group Abstract Units
|
|
379
|
+
* @category Electromagnetic
|
|
380
|
+
*/
|
|
381
|
+
type ElectricCurrent = AbstractUnitFrom<ElectricCurrentUnitClass>;
|
|
382
|
+
/**
|
|
383
|
+
* @group Unit Generators
|
|
384
|
+
* @category Electromagnetic
|
|
385
|
+
*/
|
|
386
|
+
type ElectricCurrentUnit<M extends UnitSubvalues> = ElectricCurrentUnitFrom<UnitMeta<M>>;
|
|
387
|
+
/**
|
|
388
|
+
* @group Unit Generators
|
|
389
|
+
* @category Electromagnetic
|
|
390
|
+
*/
|
|
391
|
+
type ElectricCurrentUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ElectricCurrentUnitClass, M>;
|
|
392
|
+
/**
|
|
393
|
+
* A unit of {@link ElectricCurrent}.
|
|
394
|
+
*
|
|
395
|
+
* @group Units
|
|
396
|
+
* @category Base
|
|
397
|
+
* @symbol `A`
|
|
398
|
+
*/
|
|
399
|
+
type Ampere = ElectricCurrentUnit<{}>;
|
|
400
|
+
|
|
401
|
+
/**
|
|
402
|
+
* @group Unit Classes
|
|
403
|
+
* @category Electromagnetic
|
|
404
|
+
*/
|
|
405
|
+
type ElectricDisplacementFieldUnitClass = BaseUnitClass<{
|
|
406
|
+
Ampere: 1;
|
|
407
|
+
Second: 1;
|
|
408
|
+
Metre: -2;
|
|
409
|
+
}>;
|
|
410
|
+
/**
|
|
411
|
+
* @group Abstract Units
|
|
412
|
+
* @category Electromagnetic
|
|
413
|
+
*/
|
|
414
|
+
type ElectricDisplacementField = AbstractUnitFrom<ElectricDisplacementFieldUnitClass>;
|
|
415
|
+
/**
|
|
416
|
+
* @group Unit Generators
|
|
417
|
+
* @category Electromagnetic
|
|
418
|
+
*/
|
|
419
|
+
type ElectricDisplacementFieldUnit<M extends UnitSubvalues> = ElectricDisplacementFieldUnitFrom<UnitMeta<M>>;
|
|
420
|
+
/**
|
|
421
|
+
* @group Unit Generators
|
|
422
|
+
* @category Electromagnetic
|
|
423
|
+
*/
|
|
424
|
+
type ElectricDisplacementFieldUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ElectricDisplacementFieldUnitClass, M>;
|
|
425
|
+
/**
|
|
426
|
+
* A unit of {@link ElectricDisplacementField}.
|
|
427
|
+
*
|
|
428
|
+
* @group Units
|
|
429
|
+
* @category Electromagnetic
|
|
430
|
+
* @symbol `C/m²`
|
|
431
|
+
*/
|
|
432
|
+
type CoulombPerSquareMetre = ElectricDisplacementFieldUnit<{}>;
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* @group Unit Classes
|
|
436
|
+
* @category Electromagnetic
|
|
437
|
+
*/
|
|
438
|
+
type ElectricFieldStrengthUnitClass = BaseUnitClass<{
|
|
439
|
+
Kilogram: 1;
|
|
440
|
+
Metre: 1;
|
|
441
|
+
Second: -3;
|
|
442
|
+
Ampere: -1;
|
|
443
|
+
}>;
|
|
444
|
+
/**
|
|
445
|
+
* @group Abstract Units
|
|
446
|
+
* @category Electromagnetic
|
|
447
|
+
*/
|
|
448
|
+
type ElectricFieldStrength = AbstractUnitFrom<ElectricFieldStrengthUnitClass>;
|
|
449
|
+
/**
|
|
450
|
+
* @group Unit Generators
|
|
451
|
+
* @category Electromagnetic
|
|
452
|
+
*/
|
|
453
|
+
type ElectricFieldStrengthUnit<M extends UnitSubvalues> = ElectricFieldStrengthUnitFrom<UnitMeta<M>>;
|
|
454
|
+
/**
|
|
455
|
+
* @group Unit Generators
|
|
456
|
+
* @category Electromagnetic
|
|
457
|
+
*/
|
|
458
|
+
type ElectricFieldStrengthUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ElectricFieldStrengthUnitClass, M>;
|
|
459
|
+
/**
|
|
460
|
+
* A unit of {@link ElectricFieldStrength}.
|
|
461
|
+
*
|
|
462
|
+
* @group Units
|
|
463
|
+
* @category Electromagnetic
|
|
464
|
+
* @symbol `V/m`
|
|
465
|
+
*/
|
|
466
|
+
type VoltPerMetre = ElectricFieldStrengthUnit<{}>;
|
|
467
|
+
|
|
468
|
+
/**
|
|
469
|
+
* @group Unit Classes
|
|
470
|
+
* @category Electromagnetic
|
|
471
|
+
*/
|
|
472
|
+
type ElectricInductanceUnitClass = BaseUnitClass<{
|
|
473
|
+
Kilogram: 1;
|
|
474
|
+
Metre: 2;
|
|
475
|
+
Second: -2;
|
|
476
|
+
Ampere: -2;
|
|
477
|
+
}>;
|
|
478
|
+
/**
|
|
479
|
+
* @group Abstract Units
|
|
480
|
+
* @category Electromagnetic
|
|
481
|
+
*/
|
|
482
|
+
type ElectricInductance = AbstractUnitFrom<ElectricInductanceUnitClass>;
|
|
483
|
+
/**
|
|
484
|
+
* @group Unit Generators
|
|
485
|
+
* @category Electromagnetic
|
|
486
|
+
*/
|
|
487
|
+
type ElectricInductanceUnit<M extends UnitSubvalues> = ElectricInductanceUnitFrom<UnitMeta<M>>;
|
|
488
|
+
/**
|
|
489
|
+
* @group Unit Generators
|
|
490
|
+
* @category Electromagnetic
|
|
491
|
+
*/
|
|
492
|
+
type ElectricInductanceUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ElectricInductanceUnitClass, M>;
|
|
493
|
+
/**
|
|
494
|
+
* A unit of {@link ElectricInductance}.
|
|
495
|
+
*
|
|
496
|
+
* @group Units
|
|
497
|
+
* @category Derived
|
|
498
|
+
* @symbol `H`
|
|
499
|
+
*/
|
|
500
|
+
type Henry = ElectricInductanceUnit<{}>;
|
|
501
|
+
|
|
502
|
+
/**
|
|
503
|
+
* @group Unit Classes
|
|
504
|
+
* @category Electromagnetic
|
|
505
|
+
*/
|
|
506
|
+
type ElectricLinearChargeDensityUnitClass = BaseUnitClass<{
|
|
507
|
+
Ampere: 1;
|
|
508
|
+
Second: 1;
|
|
509
|
+
Metre: -1;
|
|
510
|
+
}>;
|
|
511
|
+
/**
|
|
512
|
+
* @group Abstract Units
|
|
513
|
+
* @category Electromagnetic
|
|
514
|
+
*/
|
|
515
|
+
type ElectricLinearChargeDensity = AbstractUnitFrom<ElectricLinearChargeDensityUnitClass>;
|
|
516
|
+
/**
|
|
517
|
+
* @group Unit Generators
|
|
518
|
+
* @category Electromagnetic
|
|
519
|
+
*/
|
|
520
|
+
type ElectricLinearChargeDensityUnit<M extends UnitSubvalues> = ElectricLinearChargeDensityUnitFrom<UnitMeta<M>>;
|
|
521
|
+
/**
|
|
522
|
+
* @group Unit Generators
|
|
523
|
+
* @category Electromagnetic
|
|
524
|
+
*/
|
|
525
|
+
type ElectricLinearChargeDensityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ElectricLinearChargeDensityUnitClass, M>;
|
|
526
|
+
/**
|
|
527
|
+
* A unit of {@link ElectricLinearChargeDensity}.
|
|
528
|
+
*
|
|
529
|
+
* @group Units
|
|
530
|
+
* @category Electromagnetic
|
|
531
|
+
* @symbol `C/m`
|
|
532
|
+
*/
|
|
533
|
+
type CoulombPerMetre = ElectricLinearChargeDensityUnit<{}>;
|
|
534
|
+
|
|
535
|
+
/**
|
|
536
|
+
* @group Unit Classes
|
|
537
|
+
* @category Electromagnetic
|
|
538
|
+
*/
|
|
539
|
+
type ElectricPotentialUnitClass = BaseUnitClass<{
|
|
540
|
+
Kilogram: 1;
|
|
541
|
+
Metre: 2;
|
|
542
|
+
Second: -3;
|
|
543
|
+
Ampere: -1;
|
|
544
|
+
}>;
|
|
545
|
+
/**
|
|
546
|
+
* @group Abstract Units
|
|
547
|
+
* @category Electromagnetic
|
|
548
|
+
*/
|
|
549
|
+
type ElectricPotential = AbstractUnitFrom<ElectricPotentialUnitClass>;
|
|
550
|
+
/**
|
|
551
|
+
* @group Unit Generators
|
|
552
|
+
* @category Electromagnetic
|
|
553
|
+
*/
|
|
554
|
+
type ElectricPotentialUnit<M extends UnitSubvalues> = ElectricPotentialUnitFrom<UnitMeta<M>>;
|
|
555
|
+
/**
|
|
556
|
+
* @group Unit Generators
|
|
557
|
+
* @category Electromagnetic
|
|
558
|
+
*/
|
|
559
|
+
type ElectricPotentialUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ElectricPotentialUnitClass, M>;
|
|
560
|
+
/**
|
|
561
|
+
* A unit of {@link ElectricPotential}.
|
|
562
|
+
*
|
|
563
|
+
* One Volt is equal to the difference of electric potential between two points on a conducting
|
|
564
|
+
* wire carrying a export constant current of one Ampere when the power dissipated between the points is one watt.
|
|
565
|
+
*
|
|
566
|
+
* @group Units
|
|
567
|
+
* @category Derived
|
|
568
|
+
* @symbol `V`
|
|
569
|
+
*/
|
|
570
|
+
type Volt = ElectricPotentialUnit<{}>;
|
|
571
|
+
|
|
572
|
+
/**
|
|
573
|
+
* @group Unit Classes
|
|
574
|
+
* @category Electromagnetic
|
|
575
|
+
*/
|
|
576
|
+
type ElectricResistanceUnitClass = BaseUnitClass<{
|
|
577
|
+
Kilogram: 1;
|
|
578
|
+
Metre: 2;
|
|
579
|
+
Second: -3;
|
|
580
|
+
Ampere: -2;
|
|
581
|
+
}>;
|
|
582
|
+
/**
|
|
583
|
+
* @group Abstract Units
|
|
584
|
+
* @category Electromagnetic
|
|
585
|
+
*/
|
|
586
|
+
type ElectricResistance = AbstractUnitFrom<ElectricResistanceUnitClass>;
|
|
587
|
+
/**
|
|
588
|
+
* @group Unit Generators
|
|
589
|
+
* @category Electromagnetic
|
|
590
|
+
*/
|
|
591
|
+
type ElectricResistanceUnit<M extends UnitSubvalues> = ElectricResistanceUnitFrom<UnitMeta<M>>;
|
|
592
|
+
/**
|
|
593
|
+
* @group Unit Generators
|
|
594
|
+
* @category Electromagnetic
|
|
595
|
+
*/
|
|
596
|
+
type ElectricResistanceUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ElectricResistanceUnitClass, M>;
|
|
597
|
+
/**
|
|
598
|
+
* A unit of {@link ElectricResistance}.
|
|
599
|
+
*
|
|
600
|
+
* One Ohm is equal to the resistance of a conductor in which a current of one Ampere is produced
|
|
601
|
+
* by a potential of one volt across its terminals.
|
|
602
|
+
*
|
|
603
|
+
* @group Units
|
|
604
|
+
* @category Electromagnetic
|
|
605
|
+
* @symbol `Ω`
|
|
606
|
+
*/
|
|
607
|
+
type Ohm = ElectricResistanceUnit<{}>;
|
|
608
|
+
|
|
609
|
+
/**
|
|
610
|
+
* @group Unit Classes
|
|
611
|
+
* @category Electromagnetic
|
|
612
|
+
*/
|
|
613
|
+
type ElectronMobilityUnitClass = BaseUnitClass<{
|
|
614
|
+
Kilogram: -1;
|
|
615
|
+
Second: 2;
|
|
616
|
+
Ampere: 1;
|
|
617
|
+
}>;
|
|
618
|
+
/**
|
|
619
|
+
* @group Abstract Units
|
|
620
|
+
* @category Electromagnetic
|
|
621
|
+
*/
|
|
622
|
+
type ElectronMobility = AbstractUnitFrom<ElectronMobilityUnitClass>;
|
|
623
|
+
/**
|
|
624
|
+
* @group Unit Generators
|
|
625
|
+
* @category Electromagnetic
|
|
626
|
+
*/
|
|
627
|
+
type ElectronMobilityUnit<M extends UnitSubvalues> = ElectronMobilityUnitFrom<UnitMeta<M>>;
|
|
628
|
+
/**
|
|
629
|
+
* @group Unit Generators
|
|
630
|
+
* @category Electromagnetic
|
|
631
|
+
*/
|
|
632
|
+
type ElectronMobilityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ElectronMobilityUnitClass, M>;
|
|
633
|
+
/**
|
|
634
|
+
* A unit of {@link ElectronMobility}.
|
|
635
|
+
*
|
|
636
|
+
* @group Units
|
|
637
|
+
* @category Electromagnetic
|
|
638
|
+
* @symbol `m²/(V⋅s)`
|
|
639
|
+
*/
|
|
640
|
+
type SquareMetrePerVoltSecond = ElectronMobilityUnit<{}>;
|
|
641
|
+
|
|
642
|
+
/**
|
|
643
|
+
* @group Unit Classes
|
|
644
|
+
* @category Electromagnetic
|
|
645
|
+
*/
|
|
646
|
+
type ExposureUnitClass = BaseUnitClass<{
|
|
647
|
+
Ampere: 1;
|
|
648
|
+
Second: 1;
|
|
649
|
+
Kilogram: -1;
|
|
650
|
+
}>;
|
|
651
|
+
/**
|
|
652
|
+
* @group Abstract Units
|
|
653
|
+
* @category Electromagnetic
|
|
654
|
+
*/
|
|
655
|
+
type Exposure = AbstractUnitFrom<ExposureUnitClass>;
|
|
656
|
+
/**
|
|
657
|
+
* @group Unit Generators
|
|
658
|
+
* @category Electromagnetic
|
|
659
|
+
*/
|
|
660
|
+
type ExposureUnit<M extends UnitSubvalues> = ExposureUnitFrom<UnitMeta<M>>;
|
|
661
|
+
/**
|
|
662
|
+
* @group Unit Generators
|
|
663
|
+
* @category Electromagnetic
|
|
664
|
+
*/
|
|
665
|
+
type ExposureUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ExposureUnitClass, M>;
|
|
666
|
+
/**
|
|
667
|
+
* A unit of {@link Exposure}.
|
|
668
|
+
*
|
|
669
|
+
* @group Units
|
|
670
|
+
* @category Electromagnetic
|
|
671
|
+
* @symbol `C/kg`
|
|
672
|
+
*/
|
|
673
|
+
type CoulombPerKilogram = ExposureUnit<{}>;
|
|
674
|
+
|
|
675
|
+
/**
|
|
676
|
+
* @group Unit Classes
|
|
677
|
+
* @category Electromagnetic
|
|
678
|
+
*/
|
|
679
|
+
type MagneticDipoleMomentUnitClass = BaseUnitClass<{
|
|
680
|
+
Metre: 2;
|
|
681
|
+
Ampere: 1;
|
|
682
|
+
}>;
|
|
683
|
+
/**
|
|
684
|
+
* @group Abstract Units
|
|
685
|
+
* @category Electromagnetic
|
|
686
|
+
*/
|
|
687
|
+
type MagneticDipoleMoment = AbstractUnitFrom<MagneticDipoleMomentUnitClass>;
|
|
688
|
+
/**
|
|
689
|
+
* @group Unit Generators
|
|
690
|
+
* @category Electromagnetic
|
|
691
|
+
*/
|
|
692
|
+
type MagneticDipoleMomentUnit<M extends UnitSubvalues> = MagneticDipoleMomentUnitFrom<UnitMeta<M>>;
|
|
693
|
+
/**
|
|
694
|
+
* @group Unit Generators
|
|
695
|
+
* @category Electromagnetic
|
|
696
|
+
*/
|
|
697
|
+
type MagneticDipoleMomentUnitFrom<M extends UnknownUnitMeta> = UnitFrom<MagneticDipoleMomentUnitClass, M>;
|
|
698
|
+
/**
|
|
699
|
+
* A unit of {@link MagneticDipoleMoment}.
|
|
700
|
+
*
|
|
701
|
+
* @group Units
|
|
702
|
+
* @category Electromagnetic
|
|
703
|
+
* @symbol `J/T`
|
|
704
|
+
*/
|
|
705
|
+
type JoulePerTesla = MagneticDipoleMomentUnit<{}>;
|
|
706
|
+
|
|
707
|
+
/**
|
|
708
|
+
* @group Unit Classes
|
|
709
|
+
* @category Electromagnetic
|
|
710
|
+
*/
|
|
711
|
+
type MagneticFieldStrengthUnitClass = BaseUnitClass<{
|
|
712
|
+
Ampere: 1;
|
|
713
|
+
Metre: -1;
|
|
714
|
+
}>;
|
|
715
|
+
/**
|
|
716
|
+
* @group Abstract Units
|
|
717
|
+
* @category Electromagnetic
|
|
718
|
+
*/
|
|
719
|
+
type MagneticFieldStrength = AbstractUnitFrom<MagneticFieldStrengthUnitClass>;
|
|
720
|
+
/**
|
|
721
|
+
* @group Unit Generators
|
|
722
|
+
* @category Electromagnetic
|
|
723
|
+
*/
|
|
724
|
+
type MagneticFieldStrengthUnit<M extends UnitSubvalues> = MagneticFieldStrengthUnitFrom<UnitMeta<M>>;
|
|
725
|
+
/**
|
|
726
|
+
* @group Unit Generators
|
|
727
|
+
* @category Electromagnetic
|
|
728
|
+
*/
|
|
729
|
+
type MagneticFieldStrengthUnitFrom<M extends UnknownUnitMeta> = UnitFrom<MagneticFieldStrengthUnitClass, M>;
|
|
730
|
+
/**
|
|
731
|
+
* A unit of {@link MagneticFieldStrength}.
|
|
732
|
+
*
|
|
733
|
+
* @group Units
|
|
734
|
+
* @category Electromagnetic
|
|
735
|
+
* @symbol `A/m`
|
|
736
|
+
*/
|
|
737
|
+
type AmperePerMetre = MagneticFieldStrengthUnit<{}>;
|
|
738
|
+
|
|
739
|
+
/**
|
|
740
|
+
* @group Unit Classes
|
|
741
|
+
* @category Electromagnetic
|
|
742
|
+
*/
|
|
743
|
+
type MagneticFluxDensityUnitClass = BaseUnitClass<{
|
|
744
|
+
Ampere: -1;
|
|
745
|
+
Kilogram: 1;
|
|
746
|
+
Second: -2;
|
|
747
|
+
}>;
|
|
748
|
+
/**
|
|
749
|
+
* @group Abstract Units
|
|
750
|
+
* @category Electromagnetic
|
|
751
|
+
*/
|
|
752
|
+
type MagneticFluxDensity = AbstractUnitFrom<MagneticFluxDensityUnitClass>;
|
|
753
|
+
/**
|
|
754
|
+
* @group Unit Generators
|
|
755
|
+
* @category Electromagnetic
|
|
756
|
+
*/
|
|
757
|
+
type MagneticFluxDensityUnit<M extends UnitSubvalues> = MagneticFluxDensityUnitFrom<UnitMeta<M>>;
|
|
758
|
+
/**
|
|
759
|
+
* @group Unit Generators
|
|
760
|
+
* @category Electromagnetic
|
|
761
|
+
*/
|
|
762
|
+
type MagneticFluxDensityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<MagneticFluxDensityUnitClass, M>;
|
|
763
|
+
/**
|
|
764
|
+
* A unit of {@link MagneticFluxDensity}.
|
|
765
|
+
*
|
|
766
|
+
* One Tesla is equal equal to one weber per square metre.
|
|
767
|
+
*
|
|
768
|
+
* @group Units
|
|
769
|
+
* @category Derived
|
|
770
|
+
* @symbol `T`
|
|
771
|
+
*/
|
|
772
|
+
type Tesla = MagneticFluxDensityUnit<{}>;
|
|
773
|
+
|
|
774
|
+
/**
|
|
775
|
+
* @group Unit Classes
|
|
776
|
+
* @category Electromagnetic
|
|
777
|
+
*/
|
|
778
|
+
type MagneticFluxUnitClass = BaseUnitClass<{
|
|
779
|
+
Kilogram: 1;
|
|
780
|
+
Metre: 2;
|
|
781
|
+
Second: -2;
|
|
782
|
+
Ampere: -1;
|
|
783
|
+
}>;
|
|
784
|
+
/**
|
|
785
|
+
* @group Abstract Units
|
|
786
|
+
* @category Electromagnetic
|
|
787
|
+
*/
|
|
788
|
+
type MagneticFlux = AbstractUnitFrom<MagneticFluxUnitClass>;
|
|
789
|
+
/**
|
|
790
|
+
* @group Unit Generators
|
|
791
|
+
* @category Electromagnetic
|
|
792
|
+
*/
|
|
793
|
+
type MagneticFluxUnit<M extends UnitSubvalues> = MagneticFluxUnitFrom<UnitMeta<M>>;
|
|
794
|
+
/**
|
|
795
|
+
* @group Unit Generators
|
|
796
|
+
* @category Electromagnetic
|
|
797
|
+
*/
|
|
798
|
+
type MagneticFluxUnitFrom<M extends UnknownUnitMeta> = UnitFrom<MagneticFluxUnitClass, M>;
|
|
799
|
+
/**
|
|
800
|
+
* A unit of {@link MagneticFlux}.
|
|
801
|
+
*
|
|
802
|
+
* One Weber is equal to the magnetic flux that in linking a circuit of one turn produces in it an
|
|
803
|
+
* electromotive force of one volt as it is uniformly reduced to zero within one second.
|
|
804
|
+
*
|
|
805
|
+
* @group Units
|
|
806
|
+
* @category Derived
|
|
807
|
+
* @symbol `Wb`
|
|
808
|
+
*/
|
|
809
|
+
type Weber = MagneticFluxUnit<{}>;
|
|
810
|
+
|
|
811
|
+
/**
|
|
812
|
+
* @group Unit Classes
|
|
813
|
+
* @category Electromagnetic
|
|
814
|
+
*/
|
|
815
|
+
type MagneticMomentUnitClass = BaseUnitClass<{
|
|
816
|
+
Kilogram: 1;
|
|
817
|
+
Metre: 3;
|
|
818
|
+
Second: -2;
|
|
819
|
+
Ampere: -1;
|
|
820
|
+
}>;
|
|
821
|
+
/**
|
|
822
|
+
* @group Abstract Units
|
|
823
|
+
* @category Electromagnetic
|
|
824
|
+
*/
|
|
825
|
+
type MagneticMoment = AbstractUnitFrom<MagneticMomentUnitClass>;
|
|
826
|
+
/**
|
|
827
|
+
* @group Unit Generators
|
|
828
|
+
* @category Electromagnetic
|
|
829
|
+
*/
|
|
830
|
+
type MagneticMomentUnit<M extends UnitSubvalues> = MagneticMomentUnitFrom<UnitMeta<M>>;
|
|
831
|
+
/**
|
|
832
|
+
* @group Unit Generators
|
|
833
|
+
* @category Electromagnetic
|
|
834
|
+
*/
|
|
835
|
+
type MagneticMomentUnitFrom<M extends UnknownUnitMeta> = UnitFrom<MagneticMomentUnitClass, M>;
|
|
836
|
+
/**
|
|
837
|
+
* A unit of {@link MagneticMoment}.
|
|
838
|
+
*
|
|
839
|
+
* @group Units
|
|
840
|
+
* @category Electromagnetic
|
|
841
|
+
* @symbol `Wb⋅m`
|
|
842
|
+
*/
|
|
843
|
+
type WeberMetre = MagneticMomentUnit<{}>;
|
|
844
|
+
|
|
845
|
+
/**
|
|
846
|
+
* @group Unit Classes
|
|
847
|
+
* @category Electromagnetic
|
|
848
|
+
*/
|
|
849
|
+
type MagneticPermeabilityUnitClass = BaseUnitClass<{
|
|
850
|
+
Kilogram: 1;
|
|
851
|
+
Metre: 1;
|
|
852
|
+
Second: -2;
|
|
853
|
+
Ampere: -2;
|
|
854
|
+
}>;
|
|
855
|
+
/**
|
|
856
|
+
* @group Abstract Units
|
|
857
|
+
* @category Electromagnetic
|
|
858
|
+
*/
|
|
859
|
+
type MagneticPermeability = AbstractUnitFrom<MagneticPermeabilityUnitClass>;
|
|
860
|
+
/**
|
|
861
|
+
* @group Unit Generators
|
|
862
|
+
* @category Electromagnetic
|
|
863
|
+
*/
|
|
864
|
+
type MagneticPermeabilityUnit<M extends UnitSubvalues> = MagneticPermeabilityUnitFrom<UnitMeta<M>>;
|
|
865
|
+
/**
|
|
866
|
+
* @group Unit Generators
|
|
867
|
+
* @category Electromagnetic
|
|
868
|
+
*/
|
|
869
|
+
type MagneticPermeabilityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<MagneticPermeabilityUnitClass, M>;
|
|
870
|
+
/**
|
|
871
|
+
* A unit of {@link MagneticPermeability}.
|
|
872
|
+
*
|
|
873
|
+
* @group Units
|
|
874
|
+
* @category Electromagnetic
|
|
875
|
+
* @symbol `H/m`
|
|
876
|
+
*/
|
|
877
|
+
type HenryPerMetre = MagneticPermeabilityUnit<{}>;
|
|
878
|
+
|
|
879
|
+
/**
|
|
880
|
+
* @file Autogenerated File - Don't manually edit.
|
|
881
|
+
*/
|
|
882
|
+
|
|
883
|
+
/**
|
|
884
|
+
* Binary prefix denoting an order of magnitude of 10^1.
|
|
885
|
+
*
|
|
886
|
+
* @group Modifiers
|
|
887
|
+
* @category Metric Prefixes
|
|
888
|
+
*/
|
|
889
|
+
type Deka<T extends UnknownUnit> = Multiply<T, Unit<{}, {
|
|
890
|
+
scalar10: 1;
|
|
891
|
+
}>>;
|
|
892
|
+
/**
|
|
893
|
+
* Binary prefix denoting an order of magnitude of 10^-1.
|
|
894
|
+
*
|
|
895
|
+
* @group Modifiers
|
|
896
|
+
* @category Metric Prefixes
|
|
897
|
+
*/
|
|
898
|
+
type Deci<T extends UnknownUnit> = Multiply<T, Unit<{}, {
|
|
899
|
+
scalar10: -1;
|
|
900
|
+
}>>;
|
|
901
|
+
/**
|
|
902
|
+
* Binary prefix denoting an order of magnitude of 10^2.
|
|
903
|
+
*
|
|
904
|
+
* @group Modifiers
|
|
905
|
+
* @category Metric Prefixes
|
|
906
|
+
*/
|
|
907
|
+
type Hecto<T extends UnknownUnit> = Multiply<T, Unit<{}, {
|
|
908
|
+
scalar10: 2;
|
|
909
|
+
}>>;
|
|
910
|
+
/**
|
|
911
|
+
* Binary prefix denoting an order of magnitude of 10^-2.
|
|
912
|
+
*
|
|
913
|
+
* @group Modifiers
|
|
914
|
+
* @category Metric Prefixes
|
|
915
|
+
*/
|
|
916
|
+
type Centi<T extends UnknownUnit> = Multiply<T, Unit<{}, {
|
|
917
|
+
scalar10: -2;
|
|
918
|
+
}>>;
|
|
919
|
+
/**
|
|
920
|
+
* Binary prefix denoting an order of magnitude of 10^3.
|
|
921
|
+
*
|
|
922
|
+
* @group Modifiers
|
|
923
|
+
* @category Metric Prefixes
|
|
924
|
+
*/
|
|
925
|
+
type Kilo<T extends UnknownUnit> = Multiply<T, Unit<{}, {
|
|
926
|
+
scalar10: 3;
|
|
927
|
+
}>>;
|
|
928
|
+
/**
|
|
929
|
+
* Binary prefix denoting an order of magnitude of 10^-3.
|
|
930
|
+
*
|
|
931
|
+
* @group Modifiers
|
|
932
|
+
* @category Metric Prefixes
|
|
933
|
+
*/
|
|
934
|
+
type Milli<T extends UnknownUnit> = Multiply<T, Unit<{}, {
|
|
935
|
+
scalar10: -3;
|
|
936
|
+
}>>;
|
|
937
|
+
/**
|
|
938
|
+
* Binary prefix denoting an order of magnitude of 10^6.
|
|
939
|
+
*
|
|
940
|
+
* @group Modifiers
|
|
941
|
+
* @category Metric Prefixes
|
|
942
|
+
*/
|
|
943
|
+
type Mega<T extends UnknownUnit> = Multiply<T, Unit<{}, {
|
|
944
|
+
scalar10: 6;
|
|
945
|
+
}>>;
|
|
946
|
+
/**
|
|
947
|
+
* Binary prefix denoting an order of magnitude of 10^-6.
|
|
948
|
+
*
|
|
949
|
+
* @group Modifiers
|
|
950
|
+
* @category Metric Prefixes
|
|
951
|
+
*/
|
|
952
|
+
type Micro<T extends UnknownUnit> = Multiply<T, Unit<{}, {
|
|
953
|
+
scalar10: -6;
|
|
954
|
+
}>>;
|
|
955
|
+
/**
|
|
956
|
+
* Binary prefix denoting an order of magnitude of 10^9.
|
|
957
|
+
*
|
|
958
|
+
* @group Modifiers
|
|
959
|
+
* @category Metric Prefixes
|
|
960
|
+
*/
|
|
961
|
+
type Giga<T extends UnknownUnit> = Multiply<T, Unit<{}, {
|
|
962
|
+
scalar10: 9;
|
|
963
|
+
}>>;
|
|
964
|
+
/**
|
|
965
|
+
* Binary prefix denoting an order of magnitude of 10^-9.
|
|
966
|
+
*
|
|
967
|
+
* @group Modifiers
|
|
968
|
+
* @category Metric Prefixes
|
|
969
|
+
*/
|
|
970
|
+
type Nano<T extends UnknownUnit> = Multiply<T, Unit<{}, {
|
|
971
|
+
scalar10: -9;
|
|
972
|
+
}>>;
|
|
973
|
+
/**
|
|
974
|
+
* Binary prefix denoting an order of magnitude of 10^12.
|
|
975
|
+
*
|
|
976
|
+
* @group Modifiers
|
|
977
|
+
* @category Metric Prefixes
|
|
978
|
+
*/
|
|
979
|
+
type Tera<T extends UnknownUnit> = Multiply<T, Unit<{}, {
|
|
980
|
+
scalar10: 12;
|
|
981
|
+
}>>;
|
|
982
|
+
/**
|
|
983
|
+
* Binary prefix denoting an order of magnitude of 10^-12.
|
|
984
|
+
*
|
|
985
|
+
* @group Modifiers
|
|
986
|
+
* @category Metric Prefixes
|
|
987
|
+
*/
|
|
988
|
+
type Pico<T extends UnknownUnit> = Multiply<T, Unit<{}, {
|
|
989
|
+
scalar10: -12;
|
|
990
|
+
}>>;
|
|
991
|
+
|
|
992
|
+
/**
|
|
993
|
+
* @group Unit Classes
|
|
994
|
+
* @category Electromagnetic
|
|
995
|
+
*/
|
|
996
|
+
type MagneticReluctanceUnitClass = ReciprocalUnitClass<ElectricInductanceUnitClass>;
|
|
997
|
+
/**
|
|
998
|
+
* @group Abstract Units
|
|
999
|
+
* @category Electromagnetic
|
|
1000
|
+
*/
|
|
1001
|
+
type MagneticReluctance = Reciprocal<ElectricInductance>;
|
|
1002
|
+
/**
|
|
1003
|
+
* @group Unit Generators
|
|
1004
|
+
* @category Electromagnetic
|
|
1005
|
+
*/
|
|
1006
|
+
type MagneticReluctanceUnit<M extends UnitSubvalues> = MagneticReluctanceUnitFrom<UnitMeta<M>>;
|
|
1007
|
+
/**
|
|
1008
|
+
* @group Unit Generators
|
|
1009
|
+
* @category Electromagnetic
|
|
1010
|
+
*/
|
|
1011
|
+
type MagneticReluctanceUnitFrom<M extends UnknownUnitMeta> = UnitFrom<MagneticReluctanceUnitClass, M>;
|
|
1012
|
+
|
|
1013
|
+
/**
|
|
1014
|
+
* @group Unit Classes
|
|
1015
|
+
* @category Electromagnetic
|
|
1016
|
+
*/
|
|
1017
|
+
type MagneticRigidityUnitClass = BaseUnitClass<{
|
|
1018
|
+
Ampere: -1;
|
|
1019
|
+
Kilogram: 1;
|
|
1020
|
+
Metre: 1;
|
|
1021
|
+
Second: -2;
|
|
1022
|
+
}>;
|
|
1023
|
+
/**
|
|
1024
|
+
* @group Abstract Units
|
|
1025
|
+
* @category Electromagnetic
|
|
1026
|
+
*/
|
|
1027
|
+
type MagneticRigidity = AbstractUnitFrom<MagneticRigidityUnitClass>;
|
|
1028
|
+
/**
|
|
1029
|
+
* @group Unit Generators
|
|
1030
|
+
* @category Electromagnetic
|
|
1031
|
+
*/
|
|
1032
|
+
type MagneticRigidityUnit<M extends UnitSubvalues> = MagneticRigidityUnitFrom<UnitMeta<M>>;
|
|
1033
|
+
/**
|
|
1034
|
+
* @group Unit Generators
|
|
1035
|
+
* @category Electromagnetic
|
|
1036
|
+
*/
|
|
1037
|
+
type MagneticRigidityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<MagneticRigidityUnitClass, M>;
|
|
1038
|
+
/**
|
|
1039
|
+
* A unit of {@link MagneticRigidity}.
|
|
1040
|
+
*
|
|
1041
|
+
* @group Units
|
|
1042
|
+
* @category Electromagnetic
|
|
1043
|
+
* @symbol `T⋅m`
|
|
1044
|
+
*/
|
|
1045
|
+
type TeslaMetre = MagneticRigidityUnit<{}>;
|
|
1046
|
+
|
|
1047
|
+
/**
|
|
1048
|
+
* @group Unit Classes
|
|
1049
|
+
* @category Electromagnetic
|
|
1050
|
+
*/
|
|
1051
|
+
type MagneticSusceptibilityUnitClass = BaseUnitClass<{
|
|
1052
|
+
Kilogram: -1;
|
|
1053
|
+
Metre: -1;
|
|
1054
|
+
Second: 2;
|
|
1055
|
+
Ampere: 2;
|
|
1056
|
+
}>;
|
|
1057
|
+
/**
|
|
1058
|
+
* @group Abstract Units
|
|
1059
|
+
* @category Electromagnetic
|
|
1060
|
+
*/
|
|
1061
|
+
type MagneticSusceptibility = AbstractUnitFrom<MagneticSusceptibilityUnitClass>;
|
|
1062
|
+
/**
|
|
1063
|
+
* @group Unit Generators
|
|
1064
|
+
* @category Electromagnetic
|
|
1065
|
+
*/
|
|
1066
|
+
type MagneticSusceptibilityUnit<M extends UnitSubvalues> = MagneticSusceptibilityUnitFrom<UnitMeta<M>>;
|
|
1067
|
+
/**
|
|
1068
|
+
* @group Unit Generators
|
|
1069
|
+
* @category Electromagnetic
|
|
1070
|
+
*/
|
|
1071
|
+
type MagneticSusceptibilityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<MagneticSusceptibilityUnitClass, M>;
|
|
1072
|
+
/**
|
|
1073
|
+
* A unit of {@link MagneticSusceptibility}.
|
|
1074
|
+
*
|
|
1075
|
+
* @group Units
|
|
1076
|
+
* @category Electromagnetic
|
|
1077
|
+
* @symbol `m/H`
|
|
1078
|
+
*/
|
|
1079
|
+
type MetrePerHenry = MagneticSusceptibilityUnit<{}>;
|
|
1080
|
+
|
|
1081
|
+
/**
|
|
1082
|
+
* @group Unit Classes
|
|
1083
|
+
* @category Electromagnetic
|
|
1084
|
+
*/
|
|
1085
|
+
type MagneticVectorPotentialUnitClass = BaseUnitClass<{
|
|
1086
|
+
Kilogram: 1;
|
|
1087
|
+
Metre: 1;
|
|
1088
|
+
Second: -2;
|
|
1089
|
+
Ampere: -1;
|
|
1090
|
+
}>;
|
|
1091
|
+
/**
|
|
1092
|
+
* @group Abstract Units
|
|
1093
|
+
* @category Electromagnetic
|
|
1094
|
+
*/
|
|
1095
|
+
type MagneticVectorPotential = AbstractUnitFrom<MagneticVectorPotentialUnitClass>;
|
|
1096
|
+
/**
|
|
1097
|
+
* @group Unit Generators
|
|
1098
|
+
* @category Electromagnetic
|
|
1099
|
+
*/
|
|
1100
|
+
type MagneticVectorPotentialUnit<M extends UnitSubvalues> = MagneticVectorPotentialUnitFrom<UnitMeta<M>>;
|
|
1101
|
+
/**
|
|
1102
|
+
* @group Unit Generators
|
|
1103
|
+
* @category Electromagnetic
|
|
1104
|
+
*/
|
|
1105
|
+
type MagneticVectorPotentialUnitFrom<M extends UnknownUnitMeta> = UnitFrom<MagneticVectorPotentialUnitClass, M>;
|
|
1106
|
+
/**
|
|
1107
|
+
* A unit of {@link MagneticVectorPotential}.
|
|
1108
|
+
*
|
|
1109
|
+
* @group Units
|
|
1110
|
+
* @category Electromagnetic
|
|
1111
|
+
* @symbol `Wb/m`
|
|
1112
|
+
*/
|
|
1113
|
+
type WeberPerMetre = MagneticVectorPotentialUnit<{}>;
|
|
1114
|
+
|
|
1115
|
+
/**
|
|
1116
|
+
* @group Unit Classes
|
|
1117
|
+
* @category Electromagnetic
|
|
1118
|
+
*/
|
|
1119
|
+
type MagnetomotiveForceUnitClass = BaseUnitClass<{
|
|
1120
|
+
Ampere: 1;
|
|
1121
|
+
Radian: 1;
|
|
1122
|
+
}>;
|
|
1123
|
+
/**
|
|
1124
|
+
* @group Abstract Units
|
|
1125
|
+
* @category Electromagnetic
|
|
1126
|
+
*/
|
|
1127
|
+
type MagnetomotiveForce = AbstractUnitFrom<MagnetomotiveForceUnitClass>;
|
|
1128
|
+
/**
|
|
1129
|
+
* @group Unit Generators
|
|
1130
|
+
* @category Electromagnetic
|
|
1131
|
+
*/
|
|
1132
|
+
type MagnetomotiveForceUnit<M extends UnitSubvalues> = MagnetomotiveForceUnitFrom<UnitMeta<M>>;
|
|
1133
|
+
/**
|
|
1134
|
+
* @group Unit Generators
|
|
1135
|
+
* @category Electromagnetic
|
|
1136
|
+
*/
|
|
1137
|
+
type MagnetomotiveForceUnitFrom<M extends UnknownUnitMeta> = UnitFrom<MagnetomotiveForceUnitClass, M>;
|
|
1138
|
+
/**
|
|
1139
|
+
* A unit of {@link MagnetomotiveForce}.
|
|
1140
|
+
*
|
|
1141
|
+
* @group Units
|
|
1142
|
+
* @category Electromagnetic
|
|
1143
|
+
* @symbol `A⋅rad`
|
|
1144
|
+
*/
|
|
1145
|
+
type AmpereRadian = MagnetomotiveForceUnit<{}>;
|
|
1146
|
+
|
|
1147
|
+
/**
|
|
1148
|
+
* @group Unit Classes
|
|
1149
|
+
* @category Electromagnetic
|
|
1150
|
+
*/
|
|
1151
|
+
type PermittivityUnitClass = BaseUnitClass<{
|
|
1152
|
+
Ampere: 2;
|
|
1153
|
+
Second: 4;
|
|
1154
|
+
Kilogram: -1;
|
|
1155
|
+
Metre: -3;
|
|
1156
|
+
}>;
|
|
1157
|
+
/**
|
|
1158
|
+
* @group Abstract Units
|
|
1159
|
+
* @category Electromagnetic
|
|
1160
|
+
*/
|
|
1161
|
+
type Permittivity = AbstractUnitFrom<PermittivityUnitClass>;
|
|
1162
|
+
/**
|
|
1163
|
+
* @group Unit Generators
|
|
1164
|
+
* @category Electromagnetic
|
|
1165
|
+
*/
|
|
1166
|
+
type PermittivityUnit<M extends UnitSubvalues> = PermittivityUnitFrom<UnitMeta<M>>;
|
|
1167
|
+
/**
|
|
1168
|
+
* @group Unit Generators
|
|
1169
|
+
* @category Electromagnetic
|
|
1170
|
+
*/
|
|
1171
|
+
type PermittivityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<PermittivityUnitClass, M>;
|
|
1172
|
+
/**
|
|
1173
|
+
* A unit of {@link Permittivity}.
|
|
1174
|
+
*
|
|
1175
|
+
* @group Units
|
|
1176
|
+
* @category Electromagnetic
|
|
1177
|
+
* @symbol `F/m`
|
|
1178
|
+
*/
|
|
1179
|
+
type FaradPerMetre = PermittivityUnit<{}>;
|
|
1180
|
+
|
|
1181
|
+
/**
|
|
1182
|
+
* @group Unit Classes
|
|
1183
|
+
* @category Electromagnetic
|
|
1184
|
+
*/
|
|
1185
|
+
type ResistivityUnitClass = BaseUnitClass<{
|
|
1186
|
+
Ampere: -2;
|
|
1187
|
+
Kilogram: 1;
|
|
1188
|
+
Metre: 3;
|
|
1189
|
+
Second: -3;
|
|
1190
|
+
}>;
|
|
1191
|
+
/**
|
|
1192
|
+
* @group Abstract Units
|
|
1193
|
+
* @category Electromagnetic
|
|
1194
|
+
*/
|
|
1195
|
+
type Resistivity = AbstractUnitFrom<ResistivityUnitClass>;
|
|
1196
|
+
/**
|
|
1197
|
+
* @group Unit Generators
|
|
1198
|
+
* @category Electromagnetic
|
|
1199
|
+
*/
|
|
1200
|
+
type ResistivityUnit<M extends UnitSubvalues> = ResistivityUnitFrom<UnitMeta<M>>;
|
|
1201
|
+
/**
|
|
1202
|
+
* @group Unit Generators
|
|
1203
|
+
* @category Electromagnetic
|
|
1204
|
+
*/
|
|
1205
|
+
type ResistivityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ResistivityUnitClass, M>;
|
|
1206
|
+
/**
|
|
1207
|
+
* A unit of {@link Resistivity}.
|
|
1208
|
+
*
|
|
1209
|
+
* @group Units
|
|
1210
|
+
* @category Electromagnetic
|
|
1211
|
+
* @symbol `Ωm`
|
|
1212
|
+
*/
|
|
1213
|
+
type OhmMetre = ResistivityUnit<{}>;
|
|
1214
|
+
|
|
1215
|
+
/**
|
|
1216
|
+
* @group Unit Classes
|
|
1217
|
+
* @category Kinematic
|
|
1218
|
+
*/
|
|
1219
|
+
type AccelerationUnitClass = BaseUnitClass<{
|
|
1220
|
+
Metre: 1;
|
|
1221
|
+
Second: -2;
|
|
1222
|
+
}>;
|
|
1223
|
+
/**
|
|
1224
|
+
* @group Abstract Units
|
|
1225
|
+
* @category Kinematic
|
|
1226
|
+
*/
|
|
1227
|
+
type Acceleration = AbstractUnitFrom<AccelerationUnitClass>;
|
|
1228
|
+
/**
|
|
1229
|
+
* @group Unit Generators
|
|
1230
|
+
* @category Kinematic
|
|
1231
|
+
*/
|
|
1232
|
+
type AccelerationUnit<M extends UnitSubvalues> = AccelerationUnitFrom<UnitMeta<M>>;
|
|
1233
|
+
/**
|
|
1234
|
+
* @group Unit Generators
|
|
1235
|
+
* @category Kinematic
|
|
1236
|
+
*/
|
|
1237
|
+
type AccelerationUnitFrom<M extends UnknownUnitMeta> = UnitFrom<AccelerationUnitClass, M>;
|
|
1238
|
+
/**
|
|
1239
|
+
* A unit of {@link Acceleration}.
|
|
1240
|
+
*
|
|
1241
|
+
* @group Units
|
|
1242
|
+
* @category Kinematic
|
|
1243
|
+
* @symbol `m/s²`
|
|
1244
|
+
*/
|
|
1245
|
+
type MetrePerSecondSquared = AccelerationUnit<{}>;
|
|
1246
|
+
|
|
1247
|
+
/**
|
|
1248
|
+
* @group Unit Classes
|
|
1249
|
+
* @category Kinematic
|
|
1250
|
+
*/
|
|
1251
|
+
type AngularAccelerationUnitClass = BaseUnitClass<{
|
|
1252
|
+
Radian: 1;
|
|
1253
|
+
Second: -2;
|
|
1254
|
+
}>;
|
|
1255
|
+
/**
|
|
1256
|
+
* @group Abstract Units
|
|
1257
|
+
* @category Kinematic
|
|
1258
|
+
*/
|
|
1259
|
+
type AngularAcceleration = AbstractUnitFrom<AngularAccelerationUnitClass>;
|
|
1260
|
+
/**
|
|
1261
|
+
* @group Unit Generators
|
|
1262
|
+
* @category Kinematic
|
|
1263
|
+
*/
|
|
1264
|
+
type AngularAccelerationUnit<M extends UnitSubvalues> = AngularAccelerationUnitFrom<UnitMeta<M>>;
|
|
1265
|
+
/**
|
|
1266
|
+
* @group Unit Generators
|
|
1267
|
+
* @category Kinematic
|
|
1268
|
+
*/
|
|
1269
|
+
type AngularAccelerationUnitFrom<M extends UnknownUnitMeta> = UnitFrom<AngularAccelerationUnitClass, M>;
|
|
1270
|
+
/**
|
|
1271
|
+
* A unit of {@link AngularAcceleration}.
|
|
1272
|
+
*
|
|
1273
|
+
* @group Units
|
|
1274
|
+
* @category Kinematic
|
|
1275
|
+
* @symbol `rad/s²`
|
|
1276
|
+
*/
|
|
1277
|
+
type RadianPerSecondSquared = AngularAccelerationUnit<{}>;
|
|
1278
|
+
|
|
1279
|
+
/**
|
|
1280
|
+
* @group Unit Classes
|
|
1281
|
+
* @category Kinematic
|
|
1282
|
+
*/
|
|
1283
|
+
type AngularMomentumUnitClass = BaseUnitClass<{
|
|
1284
|
+
Kilogram: 1;
|
|
1285
|
+
Metre: 2;
|
|
1286
|
+
Second: -1;
|
|
1287
|
+
Radian: -1;
|
|
1288
|
+
}>;
|
|
1289
|
+
/**
|
|
1290
|
+
* @group Abstract Units
|
|
1291
|
+
* @category Kinematic
|
|
1292
|
+
*/
|
|
1293
|
+
type AngularMomentum = AbstractUnitFrom<AngularMomentumUnitClass>;
|
|
1294
|
+
/**
|
|
1295
|
+
* @group Unit Generators
|
|
1296
|
+
* @category Kinematic
|
|
1297
|
+
*/
|
|
1298
|
+
type AngularMomentumUnit<M extends UnitSubvalues> = AngularMomentumUnitFrom<UnitMeta<M>>;
|
|
1299
|
+
/**
|
|
1300
|
+
* @group Unit Generators
|
|
1301
|
+
* @category Kinematic
|
|
1302
|
+
*/
|
|
1303
|
+
type AngularMomentumUnitFrom<M extends UnknownUnitMeta> = UnitFrom<AngularMomentumUnitClass, M>;
|
|
1304
|
+
/**
|
|
1305
|
+
* A unit of {@link AngularMomentum}.
|
|
1306
|
+
*
|
|
1307
|
+
* @group Units
|
|
1308
|
+
* @category Kinematic
|
|
1309
|
+
* @symbol `J⋅s/rad`
|
|
1310
|
+
*/
|
|
1311
|
+
type JouleSecondPerRadian = AngularMomentumUnit<{}>;
|
|
1312
|
+
|
|
1313
|
+
/**
|
|
1314
|
+
* @group Unit Classes
|
|
1315
|
+
* @category Kinematic
|
|
1316
|
+
*/
|
|
1317
|
+
type AngularVelocityUnitClass = BaseUnitClass<{
|
|
1318
|
+
Radian: 1;
|
|
1319
|
+
Second: -1;
|
|
1320
|
+
}>;
|
|
1321
|
+
/**
|
|
1322
|
+
* @group Abstract Units
|
|
1323
|
+
* @category Kinematic
|
|
1324
|
+
*/
|
|
1325
|
+
type AngularVelocity = AbstractUnitFrom<AngularVelocityUnitClass>;
|
|
1326
|
+
/**
|
|
1327
|
+
* @group Unit Generators
|
|
1328
|
+
* @category Kinematic
|
|
1329
|
+
*/
|
|
1330
|
+
type AngularVelocityUnit<M extends UnitSubvalues> = AngularVelocityUnitFrom<UnitMeta<M>>;
|
|
1331
|
+
/**
|
|
1332
|
+
* @group Unit Generators
|
|
1333
|
+
* @category Kinematic
|
|
1334
|
+
*/
|
|
1335
|
+
type AngularVelocityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<AngularVelocityUnitClass, M>;
|
|
1336
|
+
/**
|
|
1337
|
+
* A unit of {@link AngularVelocity}.
|
|
1338
|
+
*
|
|
1339
|
+
* @group Units
|
|
1340
|
+
* @category Kinematic
|
|
1341
|
+
* @symbol `rad/s`
|
|
1342
|
+
*/
|
|
1343
|
+
type RadianPerSecond = AngularVelocityUnit<{}>;
|
|
1344
|
+
|
|
1345
|
+
/**
|
|
1346
|
+
* @group Unit Classes
|
|
1347
|
+
* @category Kinematic
|
|
1348
|
+
*/
|
|
1349
|
+
type CrackleUnitClass = BaseUnitClass<{
|
|
1350
|
+
Metre: 1;
|
|
1351
|
+
Second: -5;
|
|
1352
|
+
}>;
|
|
1353
|
+
/**
|
|
1354
|
+
* @group Abstract Units
|
|
1355
|
+
* @category Kinematic
|
|
1356
|
+
*/
|
|
1357
|
+
type Crackle = AbstractUnitFrom<CrackleUnitClass>;
|
|
1358
|
+
/**
|
|
1359
|
+
* @group Unit Generators
|
|
1360
|
+
* @category Kinematic
|
|
1361
|
+
*/
|
|
1362
|
+
type CrackleUnit<M extends UnitSubvalues> = CrackleUnitFrom<UnitMeta<M>>;
|
|
1363
|
+
/**
|
|
1364
|
+
* @group Unit Generators
|
|
1365
|
+
* @category Kinematic
|
|
1366
|
+
*/
|
|
1367
|
+
type CrackleUnitFrom<M extends UnknownUnitMeta> = UnitFrom<CrackleUnitClass, M>;
|
|
1368
|
+
/**
|
|
1369
|
+
* A unit of {@link Crackle}.
|
|
1370
|
+
*
|
|
1371
|
+
* @group Units
|
|
1372
|
+
* @category Kinematic
|
|
1373
|
+
* @symbol `m/s⁵`
|
|
1374
|
+
*/
|
|
1375
|
+
type MetrePerSecondToTheFifth = CrackleUnit<{}>;
|
|
1376
|
+
|
|
1377
|
+
/**
|
|
1378
|
+
* @group Unit Classes
|
|
1379
|
+
* @category Kinematic
|
|
1380
|
+
*/
|
|
1381
|
+
type FrequencyDriftUnitClass = BaseUnitClass<{
|
|
1382
|
+
Second: -2;
|
|
1383
|
+
}>;
|
|
1384
|
+
/**
|
|
1385
|
+
* @group Abstract Units
|
|
1386
|
+
* @category Kinematic
|
|
1387
|
+
*/
|
|
1388
|
+
type FrequencyDrift = AbstractUnitFrom<FrequencyDriftUnitClass>;
|
|
1389
|
+
/**
|
|
1390
|
+
* @group Unit Generators
|
|
1391
|
+
* @category Kinematic
|
|
1392
|
+
*/
|
|
1393
|
+
type FrequencyDriftUnit<M extends UnitSubvalues> = FrequencyDriftUnitFrom<UnitMeta<M>>;
|
|
1394
|
+
/**
|
|
1395
|
+
* @group Unit Generators
|
|
1396
|
+
* @category Kinematic
|
|
1397
|
+
*/
|
|
1398
|
+
type FrequencyDriftUnitFrom<M extends UnknownUnitMeta> = UnitFrom<FrequencyDriftUnitClass, M>;
|
|
1399
|
+
/**
|
|
1400
|
+
* A unit of {@link FrequencyDrift} equal to one hertz per second.
|
|
1401
|
+
*
|
|
1402
|
+
* @group Units
|
|
1403
|
+
* @category Kinematic
|
|
1404
|
+
* @symbol `Hz/s`
|
|
1405
|
+
*/
|
|
1406
|
+
type HertzPerSecond = FrequencyDriftUnit<{}>;
|
|
1407
|
+
|
|
1408
|
+
/**
|
|
1409
|
+
* @group Unit Classes
|
|
1410
|
+
* @category Kinematic
|
|
1411
|
+
*/
|
|
1412
|
+
type JerkUnitClass = BaseUnitClass<{
|
|
1413
|
+
Metre: 1;
|
|
1414
|
+
Second: -3;
|
|
1415
|
+
}>;
|
|
1416
|
+
/**
|
|
1417
|
+
* @group Abstract Units
|
|
1418
|
+
* @category Kinematic
|
|
1419
|
+
*/
|
|
1420
|
+
type Jerk = AbstractUnitFrom<JerkUnitClass>;
|
|
1421
|
+
/**
|
|
1422
|
+
* @group Unit Generators
|
|
1423
|
+
* @category Kinematic
|
|
1424
|
+
*/
|
|
1425
|
+
type JerkUnit<M extends UnitSubvalues> = JerkUnitFrom<UnitMeta<M>>;
|
|
1426
|
+
/**
|
|
1427
|
+
* @group Unit Generators
|
|
1428
|
+
* @category Kinematic
|
|
1429
|
+
*/
|
|
1430
|
+
type JerkUnitFrom<M extends UnknownUnitMeta> = UnitFrom<JerkUnitClass, M>;
|
|
1431
|
+
/**
|
|
1432
|
+
* A unit of {@link Jerk}.
|
|
1433
|
+
*
|
|
1434
|
+
* @group Units
|
|
1435
|
+
* @category Kinematic
|
|
1436
|
+
* @symbol `m/s³`
|
|
1437
|
+
*/
|
|
1438
|
+
type MetrePerSecondCubed = JerkUnit<{}>;
|
|
1439
|
+
|
|
1440
|
+
/**
|
|
1441
|
+
* @group Unit Classes
|
|
1442
|
+
* @category Kinematic
|
|
1443
|
+
*/
|
|
1444
|
+
type PopUnitClass = BaseUnitClass<{
|
|
1445
|
+
Metre: 1;
|
|
1446
|
+
Second: -6;
|
|
1447
|
+
}>;
|
|
1448
|
+
/**
|
|
1449
|
+
* @group Abstract Units
|
|
1450
|
+
* @category Kinematic
|
|
1451
|
+
*/
|
|
1452
|
+
type Pop = AbstractUnitFrom<PopUnitClass>;
|
|
1453
|
+
/**
|
|
1454
|
+
* @group Unit Generators
|
|
1455
|
+
* @category Kinematic
|
|
1456
|
+
*/
|
|
1457
|
+
type PopUnit<M extends UnitSubvalues> = PopUnitFrom<UnitMeta<M>>;
|
|
1458
|
+
/**
|
|
1459
|
+
* @group Unit Generators
|
|
1460
|
+
* @category Kinematic
|
|
1461
|
+
*/
|
|
1462
|
+
type PopUnitFrom<M extends UnknownUnitMeta> = UnitFrom<PopUnitClass, M>;
|
|
1463
|
+
/**
|
|
1464
|
+
* A unit of {@link Pop}.
|
|
1465
|
+
*
|
|
1466
|
+
* @group Units
|
|
1467
|
+
* @category Kinematic
|
|
1468
|
+
* @symbol `m/s⁶`
|
|
1469
|
+
*/
|
|
1470
|
+
type MetrePerSecondToTheSixth = PopUnit<{}>;
|
|
1471
|
+
|
|
1472
|
+
/**
|
|
1473
|
+
* @group Unit Classes
|
|
1474
|
+
* @category Kinematic
|
|
1475
|
+
*/
|
|
1476
|
+
type SnapUnitClass = BaseUnitClass<{
|
|
1477
|
+
Metre: 1;
|
|
1478
|
+
Second: -4;
|
|
1479
|
+
}>;
|
|
1480
|
+
/**
|
|
1481
|
+
* @group Abstract Units
|
|
1482
|
+
* @category Kinematic
|
|
1483
|
+
*/
|
|
1484
|
+
type Snap = AbstractUnitFrom<SnapUnitClass>;
|
|
1485
|
+
/**
|
|
1486
|
+
* @group Unit Generators
|
|
1487
|
+
* @category Kinematic
|
|
1488
|
+
*/
|
|
1489
|
+
type SnapUnit<M extends UnitSubvalues> = SnapUnitFrom<UnitMeta<M>>;
|
|
1490
|
+
/**
|
|
1491
|
+
* @group Unit Generators
|
|
1492
|
+
* @category Kinematic
|
|
1493
|
+
*/
|
|
1494
|
+
type SnapUnitFrom<M extends UnknownUnitMeta> = UnitFrom<SnapUnitClass, M>;
|
|
1495
|
+
/**
|
|
1496
|
+
* A unit of {@link Snap}.
|
|
1497
|
+
*
|
|
1498
|
+
* @group Units
|
|
1499
|
+
* @category Kinematic
|
|
1500
|
+
* @symbol `m/s⁴`
|
|
1501
|
+
*/
|
|
1502
|
+
type MetrePerSecondToTheFourth = SnapUnit<{}>;
|
|
1503
|
+
|
|
1504
|
+
/**
|
|
1505
|
+
* @group Unit Classes
|
|
1506
|
+
* @category Kinematic
|
|
1507
|
+
*/
|
|
1508
|
+
type TorqueUnitClass = BaseUnitClass<{
|
|
1509
|
+
Kilogram: 1;
|
|
1510
|
+
Metre: 2;
|
|
1511
|
+
Second: -2;
|
|
1512
|
+
Radian: -1;
|
|
1513
|
+
}>;
|
|
1514
|
+
/**
|
|
1515
|
+
* @group Abstract Units
|
|
1516
|
+
* @category Kinematic
|
|
1517
|
+
*/
|
|
1518
|
+
type Torque = AbstractUnitFrom<TorqueUnitClass>;
|
|
1519
|
+
/**
|
|
1520
|
+
* @group Unit Generators
|
|
1521
|
+
* @category Kinematic
|
|
1522
|
+
*/
|
|
1523
|
+
type TorqueUnit<M extends UnitSubvalues> = TorqueUnitFrom<UnitMeta<M>>;
|
|
1524
|
+
/**
|
|
1525
|
+
* @group Unit Generators
|
|
1526
|
+
* @category Kinematic
|
|
1527
|
+
*/
|
|
1528
|
+
type TorqueUnitFrom<M extends UnknownUnitMeta> = UnitFrom<TorqueUnitClass, M>;
|
|
1529
|
+
/**
|
|
1530
|
+
* A unit of {@link Torque}.
|
|
1531
|
+
*
|
|
1532
|
+
* @group Units
|
|
1533
|
+
* @category Kinematic
|
|
1534
|
+
* @symbol `J/rad`
|
|
1535
|
+
*/
|
|
1536
|
+
type JoulePerRadian = TorqueUnit<{}>;
|
|
1537
|
+
/**
|
|
1538
|
+
* A unit of {@link Torque}.
|
|
1539
|
+
*
|
|
1540
|
+
* @group Units
|
|
1541
|
+
* @category Kinematic
|
|
1542
|
+
* @symbol `N⋅m/rad`
|
|
1543
|
+
*/
|
|
1544
|
+
type NewtonMeterPerRadian = JoulePerRadian;
|
|
1545
|
+
|
|
1546
|
+
/**
|
|
1547
|
+
* @group Unit Classes
|
|
1548
|
+
* @category Kinematic
|
|
1549
|
+
*/
|
|
1550
|
+
type VelocityUnitClass = BaseUnitClass<{
|
|
1551
|
+
Metre: 1;
|
|
1552
|
+
Second: -1;
|
|
1553
|
+
}>;
|
|
1554
|
+
/**
|
|
1555
|
+
* @group Abstract Units
|
|
1556
|
+
* @category Kinematic
|
|
1557
|
+
*/
|
|
1558
|
+
type Velocity = AbstractUnitFrom<VelocityUnitClass>;
|
|
1559
|
+
/**
|
|
1560
|
+
* @group Unit Generators
|
|
1561
|
+
* @category Kinematic
|
|
1562
|
+
*/
|
|
1563
|
+
type VelocityUnit<M extends UnitSubvalues> = VelocityUnitFrom<UnitMeta<M>>;
|
|
1564
|
+
/**
|
|
1565
|
+
* @group Unit Generators
|
|
1566
|
+
* @category Kinematic
|
|
1567
|
+
*/
|
|
1568
|
+
type VelocityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<VelocityUnitClass, M>;
|
|
1569
|
+
/**
|
|
1570
|
+
* A unit of {@link Velocity}.
|
|
1571
|
+
*
|
|
1572
|
+
* @group Units
|
|
1573
|
+
* @category Kinematic
|
|
1574
|
+
* @symbol `m/s`
|
|
1575
|
+
*/
|
|
1576
|
+
type MetrePerSecond = VelocityUnit<{}>;
|
|
1577
|
+
|
|
1578
|
+
/**
|
|
1579
|
+
* @group Unit Classes
|
|
1580
|
+
* @category Kinematic
|
|
1581
|
+
*/
|
|
1582
|
+
type VolumetricFlowUnitClass = BaseUnitClass<{
|
|
1583
|
+
Metre: 3;
|
|
1584
|
+
Second: -1;
|
|
1585
|
+
}>;
|
|
1586
|
+
/**
|
|
1587
|
+
* @group Unit Classes
|
|
1588
|
+
* @category Kinematic
|
|
1589
|
+
*/
|
|
1590
|
+
type VolumetricFlow = AbstractUnitFrom<VolumetricFlowUnitClass>;
|
|
1591
|
+
/**
|
|
1592
|
+
* @group Unit Classes
|
|
1593
|
+
* @category Kinematic
|
|
1594
|
+
*/
|
|
1595
|
+
type VolumetricFlowUnit<M extends UnitSubvalues> = VolumetricFlowUnitFrom<UnitMeta<M>>;
|
|
1596
|
+
/**
|
|
1597
|
+
* @group Unit Classes
|
|
1598
|
+
* @category Kinematic
|
|
1599
|
+
*/
|
|
1600
|
+
type VolumetricFlowUnitFrom<M extends UnknownUnitMeta> = UnitFrom<VolumetricFlowUnitClass, M>;
|
|
1601
|
+
/**
|
|
1602
|
+
* A unit of {@link VolumetricFlow}.
|
|
1603
|
+
*
|
|
1604
|
+
* @group Units
|
|
1605
|
+
* @category Kinematic
|
|
1606
|
+
* @symbol `m³/s`
|
|
1607
|
+
*/
|
|
1608
|
+
type CubicMetrePerSecond = VolumetricFlowUnit<{}>;
|
|
1609
|
+
|
|
1610
|
+
/**
|
|
1611
|
+
* @group Unit Classes
|
|
1612
|
+
* @category Mechanical
|
|
1613
|
+
*/
|
|
1614
|
+
type AbsorbedDoseRateUnitClass = BaseUnitClass<{
|
|
1615
|
+
Metre: 2;
|
|
1616
|
+
Second: -3;
|
|
1617
|
+
}>;
|
|
1618
|
+
/**
|
|
1619
|
+
* @group Abstract Units
|
|
1620
|
+
* @category Mechanical
|
|
1621
|
+
*/
|
|
1622
|
+
type AbsorbedDoseRate = AbstractUnitFrom<AbsorbedDoseRateUnitClass>;
|
|
1623
|
+
/**
|
|
1624
|
+
* @group Unit Generators
|
|
1625
|
+
* @category Mechanical
|
|
1626
|
+
*/
|
|
1627
|
+
type AbsorbedDoseRateUnit<M extends UnitSubvalues> = AbsorbedDoseRateUnitFrom<UnitMeta<M>>;
|
|
1628
|
+
/**
|
|
1629
|
+
* @group Unit Generators
|
|
1630
|
+
* @category Mechanical
|
|
1631
|
+
*/
|
|
1632
|
+
type AbsorbedDoseRateUnitFrom<M extends UnknownUnitMeta> = UnitFrom<AbsorbedDoseRateUnitClass, M>;
|
|
1633
|
+
/**
|
|
1634
|
+
* A unit of {@link AbsorbedDoseRate}.
|
|
1635
|
+
*
|
|
1636
|
+
* @group Units
|
|
1637
|
+
* @category Mechanical
|
|
1638
|
+
* @symbol `Gy/s`
|
|
1639
|
+
*/
|
|
1640
|
+
type GrayPerSecond = AbsorbedDoseRateUnit<{}>;
|
|
1641
|
+
|
|
1642
|
+
/**
|
|
1643
|
+
* @group Unit Classes
|
|
1644
|
+
* @category Mechanical
|
|
1645
|
+
*/
|
|
1646
|
+
type ActionUnitClass = BaseUnitClass<{
|
|
1647
|
+
Kilogram: 1;
|
|
1648
|
+
Metre: 2;
|
|
1649
|
+
Second: -1;
|
|
1650
|
+
}>;
|
|
1651
|
+
/**
|
|
1652
|
+
* @group Abstract Units
|
|
1653
|
+
* @category Mechanical
|
|
1654
|
+
*/
|
|
1655
|
+
type Action = AbstractUnitFrom<ActionUnitClass>;
|
|
1656
|
+
/**
|
|
1657
|
+
* @group Unit Generators
|
|
1658
|
+
* @category Mechanical
|
|
1659
|
+
*/
|
|
1660
|
+
type ActionUnit<M extends UnitSubvalues> = ActionUnitFrom<UnitMeta<M>>;
|
|
1661
|
+
/**
|
|
1662
|
+
* @group Unit Generators
|
|
1663
|
+
* @category Mechanical
|
|
1664
|
+
*/
|
|
1665
|
+
type ActionUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ActionUnitClass, M>;
|
|
1666
|
+
/**
|
|
1667
|
+
* A unit of {@link Action}.
|
|
1668
|
+
*
|
|
1669
|
+
* @group Units
|
|
1670
|
+
* @category Mechanical
|
|
1671
|
+
* @symbol `Js`
|
|
1672
|
+
*/
|
|
1673
|
+
type JouleSecond = ActionUnit<{}>;
|
|
1674
|
+
|
|
1675
|
+
/**
|
|
1676
|
+
* @group Unit Classes
|
|
1677
|
+
* @category Mechanical
|
|
1678
|
+
*/
|
|
1679
|
+
type SpecificAngularMomentumUnitClass = BaseUnitClass<{
|
|
1680
|
+
Metre: 2;
|
|
1681
|
+
Second: -1;
|
|
1682
|
+
Radian: -1;
|
|
1683
|
+
}>;
|
|
1684
|
+
/**
|
|
1685
|
+
* @group Abstract Units
|
|
1686
|
+
* @category Mechanical
|
|
1687
|
+
*/
|
|
1688
|
+
type SpecificAngularMomentum = AbstractUnitFrom<SpecificAngularMomentumUnitClass>;
|
|
1689
|
+
/**
|
|
1690
|
+
* @group Unit Generators
|
|
1691
|
+
* @category Mechanical
|
|
1692
|
+
*/
|
|
1693
|
+
type SpecificAngularMomentumUnit<M extends UnitSubvalues> = SpecificAngularMomentumUnitFrom<UnitMeta<M>>;
|
|
1694
|
+
/**
|
|
1695
|
+
* @group Unit Generators
|
|
1696
|
+
* @category Mechanical
|
|
1697
|
+
*/
|
|
1698
|
+
type SpecificAngularMomentumUnitFrom<M extends UnknownUnitMeta> = UnitFrom<SpecificAngularMomentumUnitClass, M>;
|
|
1699
|
+
/**
|
|
1700
|
+
* A unit of {@link SpecificAngularMomentum}.
|
|
1701
|
+
*
|
|
1702
|
+
* @group Units
|
|
1703
|
+
* @category Mechanical
|
|
1704
|
+
* @symbol `J⋅s/rad/kg`
|
|
1705
|
+
*/
|
|
1706
|
+
type JouleSecondPerRadianPerKilogram = SpecificAngularMomentumUnit<{}>;
|
|
1707
|
+
/**
|
|
1708
|
+
* A unit of {@link SpecificAngularMomentum}.
|
|
1709
|
+
*
|
|
1710
|
+
* @group Units
|
|
1711
|
+
* @category Mechanical
|
|
1712
|
+
* @symbol `N⋅m⋅s/rad/kg`
|
|
1713
|
+
*/
|
|
1714
|
+
type NewtonMetreSecondPerRadianPerKilogram = JouleSecondPerRadianPerKilogram;
|
|
1715
|
+
|
|
1716
|
+
/**
|
|
1717
|
+
* @group Unit Classes
|
|
1718
|
+
* @category Mechanical
|
|
1719
|
+
*/
|
|
1720
|
+
type CompressibilityUnitClass = ReciprocalUnitClass<PressureUnitClass>;
|
|
1721
|
+
/**
|
|
1722
|
+
* @group Abstract Units
|
|
1723
|
+
* @category Mechanical
|
|
1724
|
+
*/
|
|
1725
|
+
type Compressibility = Reciprocal<Pressure>;
|
|
1726
|
+
/**
|
|
1727
|
+
* @group Unit Generators
|
|
1728
|
+
* @category Mechanical
|
|
1729
|
+
*/
|
|
1730
|
+
type CompressibilityUnit<M extends UnitSubvalues> = CompressibilityUnitFrom<UnitMeta<M>>;
|
|
1731
|
+
/**
|
|
1732
|
+
* @group Unit Generators
|
|
1733
|
+
* @category Mechanical
|
|
1734
|
+
*/
|
|
1735
|
+
type CompressibilityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<CompressibilityUnitClass, M>;
|
|
1736
|
+
|
|
1737
|
+
/**
|
|
1738
|
+
* @group Unit Classes
|
|
1739
|
+
* @category Mechanical
|
|
1740
|
+
*/
|
|
1741
|
+
type DensityUnitClass = BaseUnitClass<{
|
|
1742
|
+
Kilogram: 1;
|
|
1743
|
+
Metre: -3;
|
|
1744
|
+
}>;
|
|
1745
|
+
/**
|
|
1746
|
+
* @group Abstract Units
|
|
1747
|
+
* @category Mechanical
|
|
1748
|
+
*/
|
|
1749
|
+
type Density = AbstractUnitFrom<DensityUnitClass>;
|
|
1750
|
+
/**
|
|
1751
|
+
* @group Unit Generators
|
|
1752
|
+
* @category Mechanical
|
|
1753
|
+
*/
|
|
1754
|
+
type DensityUnit<M extends UnitSubvalues> = DensityUnitFrom<UnitMeta<M>>;
|
|
1755
|
+
/**
|
|
1756
|
+
* @group Unit Generators
|
|
1757
|
+
* @category Mechanical
|
|
1758
|
+
*/
|
|
1759
|
+
type DensityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<DensityUnitClass, M>;
|
|
1760
|
+
/**
|
|
1761
|
+
* A unit of {@link Density}.
|
|
1762
|
+
*
|
|
1763
|
+
* @group Units
|
|
1764
|
+
* @category Mechanical
|
|
1765
|
+
* @symbol `kg/m³`
|
|
1766
|
+
*/
|
|
1767
|
+
type KilogramPerCubicMetre = DensityUnit<{}>;
|
|
1768
|
+
|
|
1769
|
+
/**
|
|
1770
|
+
* @group Unit Classes
|
|
1771
|
+
* @category Mechanical
|
|
1772
|
+
*/
|
|
1773
|
+
type DynamicViscosityUnitClass = BaseUnitClass<{
|
|
1774
|
+
Kilogram: 1;
|
|
1775
|
+
Metre: -1;
|
|
1776
|
+
Second: -1;
|
|
1777
|
+
}>;
|
|
1778
|
+
/**
|
|
1779
|
+
* @group Abstract Units
|
|
1780
|
+
* @category Mechanical
|
|
1781
|
+
*/
|
|
1782
|
+
type DynamicViscosity = AbstractUnitFrom<DynamicViscosityUnitClass>;
|
|
1783
|
+
/**
|
|
1784
|
+
* @group Unit Generators
|
|
1785
|
+
* @category Mechanical
|
|
1786
|
+
*/
|
|
1787
|
+
type DynamicViscosityUnit<M extends UnitSubvalues> = DynamicViscosityUnitFrom<UnitMeta<M>>;
|
|
1788
|
+
/**
|
|
1789
|
+
* @group Unit Generators
|
|
1790
|
+
* @category Mechanical
|
|
1791
|
+
*/
|
|
1792
|
+
type DynamicViscosityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<DynamicViscosityUnitClass, M>;
|
|
1793
|
+
/**
|
|
1794
|
+
* A unit of {@link DynamicViscosity}.
|
|
1795
|
+
*
|
|
1796
|
+
* @group Units
|
|
1797
|
+
* @category Mechanical
|
|
1798
|
+
* @symbol `Pa⋅s`
|
|
1799
|
+
*/
|
|
1800
|
+
type PascalSecond = DynamicViscosityUnit<{}>;
|
|
1801
|
+
|
|
1802
|
+
/**
|
|
1803
|
+
* @group Unit Classes
|
|
1804
|
+
* @category Mechanical
|
|
1805
|
+
*/
|
|
1806
|
+
type EnergyDensityUnitClass = BaseUnitClass<{
|
|
1807
|
+
Kilogram: 1;
|
|
1808
|
+
Metre: -1;
|
|
1809
|
+
Second: -2;
|
|
1810
|
+
}>;
|
|
1811
|
+
/**
|
|
1812
|
+
* @group Abstract Units
|
|
1813
|
+
* @category Mechanical
|
|
1814
|
+
*/
|
|
1815
|
+
type EnergyDensity = AbstractUnitFrom<EnergyDensityUnitClass>;
|
|
1816
|
+
/**
|
|
1817
|
+
* @group Unit Generators
|
|
1818
|
+
* @category Mechanical
|
|
1819
|
+
*/
|
|
1820
|
+
type EnergyDensityUnit<M extends UnitSubvalues> = EnergyDensityUnitFrom<UnitMeta<M>>;
|
|
1821
|
+
/**
|
|
1822
|
+
* @group Unit Generators
|
|
1823
|
+
* @category Mechanical
|
|
1824
|
+
*/
|
|
1825
|
+
type EnergyDensityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<EnergyDensityUnitClass, M>;
|
|
1826
|
+
/**
|
|
1827
|
+
* A unit of {@link EnergyDensity}.
|
|
1828
|
+
*
|
|
1829
|
+
* @group Units
|
|
1830
|
+
* @category Mechanical
|
|
1831
|
+
* @symbol `J/m³`
|
|
1832
|
+
*/
|
|
1833
|
+
type JoulePerCubicMetre = EnergyDensityUnit<{}>;
|
|
1834
|
+
|
|
1835
|
+
/**
|
|
1836
|
+
* @group Unit Classes
|
|
1837
|
+
* @category Mechanical
|
|
1838
|
+
*/
|
|
1839
|
+
type EnergyFluxDensityUnitClass = BaseUnitClass<{
|
|
1840
|
+
Kilogram: 1;
|
|
1841
|
+
Second: -3;
|
|
1842
|
+
}>;
|
|
1843
|
+
/**
|
|
1844
|
+
* @group Abstract Units
|
|
1845
|
+
* @category Mechanical
|
|
1846
|
+
*/
|
|
1847
|
+
type EnergyFluxDensity = AbstractUnitFrom<EnergyFluxDensityUnitClass>;
|
|
1848
|
+
/**
|
|
1849
|
+
* @group Unit Generators
|
|
1850
|
+
* @category Mechanical
|
|
1851
|
+
*/
|
|
1852
|
+
type EnergyFluxDensityUnit<M extends UnitSubvalues> = EnergyFluxDensityUnitFrom<UnitMeta<M>>;
|
|
1853
|
+
/**
|
|
1854
|
+
* @group Unit Generators
|
|
1855
|
+
* @category Mechanical
|
|
1856
|
+
*/
|
|
1857
|
+
type EnergyFluxDensityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<EnergyFluxDensityUnitClass, M>;
|
|
1858
|
+
/**
|
|
1859
|
+
* A unit of {@link EnergyFluxDensity}.
|
|
1860
|
+
*
|
|
1861
|
+
* @group Units
|
|
1862
|
+
* @category Mechanical
|
|
1863
|
+
* @symbol `J/(m²⋅s)`
|
|
1864
|
+
*/
|
|
1865
|
+
type JoulePerSquareMetreSecond = EnergyFluxDensityUnit<{}>;
|
|
1866
|
+
|
|
1867
|
+
/**
|
|
1868
|
+
* @group Unit Classes
|
|
1869
|
+
* @category Mechanical
|
|
1870
|
+
*/
|
|
1871
|
+
type EnthalpyUnitClass = BaseUnitClass<{
|
|
1872
|
+
Metre: 2;
|
|
1873
|
+
Second: -2;
|
|
1874
|
+
}>;
|
|
1875
|
+
/**
|
|
1876
|
+
* @group Abstract Units
|
|
1877
|
+
* @category Mechanical
|
|
1878
|
+
*/
|
|
1879
|
+
type Enthalpy = AbstractUnitFrom<EnthalpyUnitClass>;
|
|
1880
|
+
/**
|
|
1881
|
+
* @group Unit Generators
|
|
1882
|
+
* @category Mechanical
|
|
1883
|
+
*/
|
|
1884
|
+
type EnthalpyUnit<M extends UnitSubvalues> = EnthalpyUnitFrom<UnitMeta<M>>;
|
|
1885
|
+
/**
|
|
1886
|
+
* @group Unit Generators
|
|
1887
|
+
* @category Mechanical
|
|
1888
|
+
*/
|
|
1889
|
+
type EnthalpyUnitFrom<M extends UnknownUnitMeta> = UnitFrom<EnthalpyUnitClass, M>;
|
|
1890
|
+
/**
|
|
1891
|
+
* A unit of {@link Enthalpy}.
|
|
1892
|
+
*
|
|
1893
|
+
* One gray is equal to the dose of one joule of energy absorbed per one kilogram of matter.
|
|
1894
|
+
*
|
|
1895
|
+
* @group Units
|
|
1896
|
+
* @category Derived
|
|
1897
|
+
* @category Mechanical
|
|
1898
|
+
* @symbol `Gy`
|
|
1899
|
+
*/
|
|
1900
|
+
type Gray = EnthalpyUnit<{}>;
|
|
1901
|
+
|
|
1902
|
+
/**
|
|
1903
|
+
* @group Unit Classes
|
|
1904
|
+
* @category Mechanical
|
|
1905
|
+
*/
|
|
1906
|
+
type ForceUnitClass = BaseUnitClass<{
|
|
1907
|
+
Kilogram: 1;
|
|
1908
|
+
Metre: 1;
|
|
1909
|
+
Second: -2;
|
|
1910
|
+
}>;
|
|
1911
|
+
/**
|
|
1912
|
+
* @group Abstract Units
|
|
1913
|
+
* @category Mechanical
|
|
1914
|
+
*/
|
|
1915
|
+
type Force = AbstractUnitFrom<ForceUnitClass>;
|
|
1916
|
+
/**
|
|
1917
|
+
* @group Unit Generators
|
|
1918
|
+
* @category Mechanical
|
|
1919
|
+
*/
|
|
1920
|
+
type ForceUnit<M extends UnitSubvalues> = ForceUnitFrom<UnitMeta<M>>;
|
|
1921
|
+
/**
|
|
1922
|
+
* @group Unit Generators
|
|
1923
|
+
* @category Mechanical
|
|
1924
|
+
*/
|
|
1925
|
+
type ForceUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ForceUnitClass, M>;
|
|
1926
|
+
/**
|
|
1927
|
+
* A unit of {@link Force}.
|
|
1928
|
+
*
|
|
1929
|
+
* One newton is the force required to accelerate a mass of 1 kilogram at 1 metre per second per second.
|
|
1930
|
+
*
|
|
1931
|
+
* @group Units
|
|
1932
|
+
* @category Derived
|
|
1933
|
+
* @category Mechanical
|
|
1934
|
+
* @symbol `N`
|
|
1935
|
+
*/
|
|
1936
|
+
type Newton = ForceUnit<{}>;
|
|
1937
|
+
|
|
1938
|
+
/**
|
|
1939
|
+
* @group Unit Classes
|
|
1940
|
+
* @category Mechanical
|
|
1941
|
+
*/
|
|
1942
|
+
type IntensityUnitClass = BaseUnitClass<{
|
|
1943
|
+
Kilogram: 1;
|
|
1944
|
+
Second: -3;
|
|
1945
|
+
}>;
|
|
1946
|
+
/**
|
|
1947
|
+
* @group Abstract Units
|
|
1948
|
+
* @category Mechanical
|
|
1949
|
+
*/
|
|
1950
|
+
type Intensity = AbstractUnitFrom<IntensityUnitClass>;
|
|
1951
|
+
/**
|
|
1952
|
+
* @group Unit Generators
|
|
1953
|
+
* @category Mechanical
|
|
1954
|
+
*/
|
|
1955
|
+
type IntensityUnit<M extends UnitSubvalues> = IntensityUnitFrom<UnitMeta<M>>;
|
|
1956
|
+
/**
|
|
1957
|
+
* @group Unit Generators
|
|
1958
|
+
* @category Mechanical
|
|
1959
|
+
*/
|
|
1960
|
+
type IntensityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<IntensityUnitClass, M>;
|
|
1961
|
+
/**
|
|
1962
|
+
* A unit of {@link Intensity}.
|
|
1963
|
+
*
|
|
1964
|
+
* @group Units
|
|
1965
|
+
* @category Mechanical
|
|
1966
|
+
* @symbol `W/m²`
|
|
1967
|
+
*/
|
|
1968
|
+
type WattPerSquareMetre = IntensityUnit<{}>;
|
|
1969
|
+
|
|
1970
|
+
/**
|
|
1971
|
+
* @group Unit Classes
|
|
1972
|
+
* @category Mechanical
|
|
1973
|
+
*/
|
|
1974
|
+
type LinearMassDensityUnitClass = BaseUnitClass<{
|
|
1975
|
+
Kilogram: 1;
|
|
1976
|
+
Metre: -1;
|
|
1977
|
+
}>;
|
|
1978
|
+
/**
|
|
1979
|
+
* @group Abstract Units
|
|
1980
|
+
* @category Mechanical
|
|
1981
|
+
*/
|
|
1982
|
+
type LinearMassDensity = AbstractUnitFrom<LinearMassDensityUnitClass>;
|
|
1983
|
+
/**
|
|
1984
|
+
* @group Unit Generators
|
|
1985
|
+
* @category Mechanical
|
|
1986
|
+
*/
|
|
1987
|
+
type LinearMassDensityUnit<M extends UnitSubvalues> = LinearMassDensityUnitFrom<UnitMeta<M>>;
|
|
1988
|
+
/**
|
|
1989
|
+
* @group Unit Generators
|
|
1990
|
+
* @category Mechanical
|
|
1991
|
+
*/
|
|
1992
|
+
type LinearMassDensityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<LinearMassDensityUnitClass, M>;
|
|
1993
|
+
/**
|
|
1994
|
+
* A unit of {@link LinearMassDensity}.
|
|
1995
|
+
*
|
|
1996
|
+
* @group Units
|
|
1997
|
+
* @category Mechanical
|
|
1998
|
+
* @symbol `kg/m`
|
|
1999
|
+
*/
|
|
2000
|
+
type KilogramPerMetre = LinearMassDensityUnit<{}>;
|
|
2001
|
+
|
|
2002
|
+
/**
|
|
2003
|
+
* @group Unit Classes
|
|
2004
|
+
* @category Mechanical
|
|
2005
|
+
*/
|
|
2006
|
+
type MassFlowRateUnitClass = BaseUnitClass<{
|
|
2007
|
+
Kilogram: 1;
|
|
2008
|
+
Second: -1;
|
|
2009
|
+
}>;
|
|
2010
|
+
/**
|
|
2011
|
+
* @group Abstract Units
|
|
2012
|
+
* @category Mechanical
|
|
2013
|
+
*/
|
|
2014
|
+
type MassFlowRate = AbstractUnitFrom<MassFlowRateUnitClass>;
|
|
2015
|
+
/**
|
|
2016
|
+
* @group Unit Generators
|
|
2017
|
+
* @category Mechanical
|
|
2018
|
+
*/
|
|
2019
|
+
type MassFlowRateUnit<M extends UnitSubvalues> = MassFlowRateUnitFrom<UnitMeta<M>>;
|
|
2020
|
+
/**
|
|
2021
|
+
* @group Unit Generators
|
|
2022
|
+
* @category Mechanical
|
|
2023
|
+
*/
|
|
2024
|
+
type MassFlowRateUnitFrom<M extends UnknownUnitMeta> = UnitFrom<MassFlowRateUnitClass, M>;
|
|
2025
|
+
/**
|
|
2026
|
+
* A unit of {@link MassFlowRate}.
|
|
2027
|
+
*
|
|
2028
|
+
* @group Units
|
|
2029
|
+
* @category Mechanical
|
|
2030
|
+
* @symbol `kg/s`
|
|
2031
|
+
*/
|
|
2032
|
+
type KilogramPerSecond = MassFlowRateUnit<{}>;
|
|
2033
|
+
|
|
2034
|
+
/**
|
|
2035
|
+
* @group Unit Classes
|
|
2036
|
+
* @category Mechanical
|
|
2037
|
+
*/
|
|
2038
|
+
type MomentOfInertiaUnitClass = BaseUnitClass<{
|
|
2039
|
+
Kilogram: 1;
|
|
2040
|
+
Metre: 2;
|
|
2041
|
+
Radian: -2;
|
|
2042
|
+
}>;
|
|
2043
|
+
/**
|
|
2044
|
+
* @group Abstract Units
|
|
2045
|
+
* @category Mechanical
|
|
2046
|
+
*/
|
|
2047
|
+
type MomentOfInertia = AbstractUnitFrom<MomentOfInertiaUnitClass>;
|
|
2048
|
+
/**
|
|
2049
|
+
* @group Unit Generators
|
|
2050
|
+
* @category Mechanical
|
|
2051
|
+
*/
|
|
2052
|
+
type MomentOfInertiaUnit<M extends UnitSubvalues> = MomentOfInertiaUnitFrom<UnitMeta<M>>;
|
|
2053
|
+
/**
|
|
2054
|
+
* @group Unit Generators
|
|
2055
|
+
* @category Mechanical
|
|
2056
|
+
*/
|
|
2057
|
+
type MomentOfInertiaUnitFrom<M extends UnknownUnitMeta> = UnitFrom<MomentOfInertiaUnitClass, M>;
|
|
2058
|
+
/**
|
|
2059
|
+
* A unit of {@link MomentOfInertia}.
|
|
2060
|
+
*
|
|
2061
|
+
* @group Units
|
|
2062
|
+
* @category Mechanical
|
|
2063
|
+
* @symbol `kg⋅m²/sr`
|
|
2064
|
+
*/
|
|
2065
|
+
type KilogramSquareMetrePerSteradian = MomentOfInertiaUnit<{}>;
|
|
2066
|
+
|
|
2067
|
+
/**
|
|
2068
|
+
* @group Unit Classes
|
|
2069
|
+
* @category Mechanical
|
|
2070
|
+
*/
|
|
2071
|
+
type MomentumUnitClass = BaseUnitClass<{
|
|
2072
|
+
Kilogram: 1;
|
|
2073
|
+
Metre: 1;
|
|
2074
|
+
Second: -1;
|
|
2075
|
+
}>;
|
|
2076
|
+
/**
|
|
2077
|
+
* @group Abstract Units
|
|
2078
|
+
* @category Mechanical
|
|
2079
|
+
*/
|
|
2080
|
+
type Momentum = AbstractUnitFrom<MomentumUnitClass>;
|
|
2081
|
+
/**
|
|
2082
|
+
* @group Unit Generators
|
|
2083
|
+
* @category Mechanical
|
|
2084
|
+
*/
|
|
2085
|
+
type MomentumUnit<M extends UnitSubvalues> = MomentumUnitFrom<UnitMeta<M>>;
|
|
2086
|
+
/**
|
|
2087
|
+
* @group Unit Generators
|
|
2088
|
+
* @category Mechanical
|
|
2089
|
+
*/
|
|
2090
|
+
type MomentumUnitFrom<M extends UnknownUnitMeta> = UnitFrom<MomentumUnitClass, M>;
|
|
2091
|
+
/**
|
|
2092
|
+
* One newton second corresponds to a one newton of force applied for one second.
|
|
2093
|
+
*
|
|
2094
|
+
* @group Units
|
|
2095
|
+
* @category Mechanical
|
|
2096
|
+
* @symbol `N⋅s`
|
|
2097
|
+
*/
|
|
2098
|
+
type NewtonSecond = MomentumUnit<{}>;
|
|
2099
|
+
|
|
2100
|
+
/**
|
|
2101
|
+
* @group Unit Classes
|
|
2102
|
+
* @category Mechanical
|
|
2103
|
+
*/
|
|
2104
|
+
type PressureUnitClass = BaseUnitClass<{
|
|
2105
|
+
Kilogram: 1;
|
|
2106
|
+
Metre: -1;
|
|
2107
|
+
Second: -2;
|
|
2108
|
+
}>;
|
|
2109
|
+
/**
|
|
2110
|
+
* @group Abstract Units
|
|
2111
|
+
* @category Mechanical
|
|
2112
|
+
*/
|
|
2113
|
+
type Pressure = AbstractUnitFrom<PressureUnitClass>;
|
|
2114
|
+
/**
|
|
2115
|
+
* @group Unit Generators
|
|
2116
|
+
* @category Mechanical
|
|
2117
|
+
*/
|
|
2118
|
+
type PressureUnit<M extends UnitSubvalues> = PressureUnitFrom<UnitMeta<M>>;
|
|
2119
|
+
/**
|
|
2120
|
+
* @group Unit Generators
|
|
2121
|
+
* @category Mechanical
|
|
2122
|
+
*/
|
|
2123
|
+
type PressureUnitFrom<M extends UnknownUnitMeta> = UnitFrom<PressureUnitClass, M>;
|
|
2124
|
+
/**
|
|
2125
|
+
* A unit of {@link Pressure}.
|
|
2126
|
+
*
|
|
2127
|
+
* One pascal is equal to one newton per square metre.
|
|
2128
|
+
*
|
|
2129
|
+
* @group Units
|
|
2130
|
+
* @category Derived
|
|
2131
|
+
* @category Mechanical
|
|
2132
|
+
* @symbol `Pa`
|
|
2133
|
+
*/
|
|
2134
|
+
type Pascal = PressureUnit<{}>;
|
|
2135
|
+
|
|
2136
|
+
/**
|
|
2137
|
+
* @group Unit Classes
|
|
2138
|
+
* @category Mechanical
|
|
2139
|
+
*/
|
|
2140
|
+
type SpectralRadianceUnitClass = BaseUnitClass<{
|
|
2141
|
+
Kilogram: 1;
|
|
2142
|
+
Metre: -1;
|
|
2143
|
+
Radian: -2;
|
|
2144
|
+
Second: -3;
|
|
2145
|
+
}>;
|
|
2146
|
+
/**
|
|
2147
|
+
* @group Abstract Units
|
|
2148
|
+
* @category Mechanical
|
|
2149
|
+
*/
|
|
2150
|
+
type SpectralRadiance = AbstractUnitFrom<SpectralRadianceUnitClass>;
|
|
2151
|
+
/**
|
|
2152
|
+
* @group Unit Generators
|
|
2153
|
+
* @category Mechanical
|
|
2154
|
+
*/
|
|
2155
|
+
type SpectralRadianceUnit<M extends UnitSubvalues> = SpectralRadianceUnitFrom<UnitMeta<M>>;
|
|
2156
|
+
/**
|
|
2157
|
+
* @group Unit Generators
|
|
2158
|
+
* @category Mechanical
|
|
2159
|
+
*/
|
|
2160
|
+
type SpectralRadianceUnitFrom<M extends UnknownUnitMeta> = UnitFrom<SpectralRadianceUnitClass, M>;
|
|
2161
|
+
/**
|
|
2162
|
+
* A unit of {@link SpectralRadiance}.
|
|
2163
|
+
*
|
|
2164
|
+
* @group Units
|
|
2165
|
+
* @category Mechanical
|
|
2166
|
+
* @symbol `W/(sr⋅m³)`
|
|
2167
|
+
*/
|
|
2168
|
+
type WattPerSteradianCubicMetre = SpectralRadianceUnit<{}>;
|
|
2169
|
+
|
|
2170
|
+
/**
|
|
2171
|
+
* @group Unit Classes
|
|
2172
|
+
* @category Mechanical
|
|
2173
|
+
*/
|
|
2174
|
+
type RadianceUnitClass = BaseUnitClass<{
|
|
2175
|
+
Kilogram: 1;
|
|
2176
|
+
Second: -3;
|
|
2177
|
+
Radian: -2;
|
|
2178
|
+
}>;
|
|
2179
|
+
/**
|
|
2180
|
+
* @group Abstract Units
|
|
2181
|
+
* @category Mechanical
|
|
2182
|
+
*/
|
|
2183
|
+
type Radiance = AbstractUnitFrom<RadianceUnitClass>;
|
|
2184
|
+
/**
|
|
2185
|
+
* @group Unit Generators
|
|
2186
|
+
* @category Mechanical
|
|
2187
|
+
*/
|
|
2188
|
+
type RadianceUnit<M extends UnitSubvalues> = RadianceUnitFrom<UnitMeta<M>>;
|
|
2189
|
+
/**
|
|
2190
|
+
* @group Unit Generators
|
|
2191
|
+
* @category Mechanical
|
|
2192
|
+
*/
|
|
2193
|
+
type RadianceUnitFrom<M extends UnknownUnitMeta> = UnitFrom<RadianceUnitClass, M>;
|
|
2194
|
+
/**
|
|
2195
|
+
* A unit of {@link Radiance}.
|
|
2196
|
+
*
|
|
2197
|
+
* @group Units
|
|
2198
|
+
* @category Mechanical
|
|
2199
|
+
* @symbol `W/(sr⋅m²)`
|
|
2200
|
+
*/
|
|
2201
|
+
type WattPerSteradianquareMetre = RadianceUnit<{}>;
|
|
2202
|
+
|
|
2203
|
+
/**
|
|
2204
|
+
* @group Unit Classes
|
|
2205
|
+
* @category Mechanical
|
|
2206
|
+
*/
|
|
2207
|
+
type RadiantExposureUnitClass = BaseUnitClass<{
|
|
2208
|
+
Kilogram: 1;
|
|
2209
|
+
Second: -2;
|
|
2210
|
+
}>;
|
|
2211
|
+
/**
|
|
2212
|
+
* @group Abstract Units
|
|
2213
|
+
* @category Mechanical
|
|
2214
|
+
*/
|
|
2215
|
+
type RadiantExposure = AbstractUnitFrom<RadiantExposureUnitClass>;
|
|
2216
|
+
/**
|
|
2217
|
+
* @group Unit Generators
|
|
2218
|
+
* @category Mechanical
|
|
2219
|
+
*/
|
|
2220
|
+
type RadiantExposureUnit<M extends UnitSubvalues> = RadiantExposureUnitFrom<UnitMeta<M>>;
|
|
2221
|
+
/**
|
|
2222
|
+
* @group Unit Generators
|
|
2223
|
+
* @category Mechanical
|
|
2224
|
+
*/
|
|
2225
|
+
type RadiantExposureUnitFrom<M extends UnknownUnitMeta> = UnitFrom<RadiantExposureUnitClass, M>;
|
|
2226
|
+
/**
|
|
2227
|
+
* A unit of {@link RadiantExposure}.
|
|
2228
|
+
*
|
|
2229
|
+
* @group Units
|
|
2230
|
+
* @category Mechanical
|
|
2231
|
+
* @symbol `J/m²`
|
|
2232
|
+
*/
|
|
2233
|
+
type JoulePerSquareMetre = RadiantExposureUnit<{}>;
|
|
2234
|
+
|
|
2235
|
+
/**
|
|
2236
|
+
* @group Unit Classes
|
|
2237
|
+
* @category Mechanical
|
|
2238
|
+
*/
|
|
2239
|
+
type RadiantIntensityUnitClass = BaseUnitClass<{
|
|
2240
|
+
Kilogram: 1;
|
|
2241
|
+
Metre: 2;
|
|
2242
|
+
Second: -3;
|
|
2243
|
+
Radian: -2;
|
|
2244
|
+
}>;
|
|
2245
|
+
/**
|
|
2246
|
+
* @group Abstract Units
|
|
2247
|
+
* @category Mechanical
|
|
2248
|
+
*/
|
|
2249
|
+
type RadiantIntensity = AbstractUnitFrom<RadiantIntensityUnitClass>;
|
|
2250
|
+
/**
|
|
2251
|
+
* @group Unit Generators
|
|
2252
|
+
* @category Mechanical
|
|
2253
|
+
*/
|
|
2254
|
+
type RadiantIntensityUnit<M extends UnitSubvalues> = RadiantIntensityUnitFrom<UnitMeta<M>>;
|
|
2255
|
+
/**
|
|
2256
|
+
* @group Unit Generators
|
|
2257
|
+
* @category Mechanical
|
|
2258
|
+
*/
|
|
2259
|
+
type RadiantIntensityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<RadiantIntensityUnitClass, M>;
|
|
2260
|
+
/**
|
|
2261
|
+
* A unit of {@link RadiantIntensity}.
|
|
2262
|
+
*
|
|
2263
|
+
* @group Units
|
|
2264
|
+
* @category Mechanical
|
|
2265
|
+
* @symbol `W/sr`
|
|
2266
|
+
*/
|
|
2267
|
+
type WattPerSteradian = RadiantIntensityUnit<{}>;
|
|
2268
|
+
|
|
2269
|
+
/**
|
|
2270
|
+
* @group Unit Classes
|
|
2271
|
+
* @category Mechanical
|
|
2272
|
+
*/
|
|
2273
|
+
type SpecificEnergyUnitClass = BaseUnitClass<{
|
|
2274
|
+
Metre: 2;
|
|
2275
|
+
Second: -2;
|
|
2276
|
+
}>;
|
|
2277
|
+
/**
|
|
2278
|
+
* @group Abstract Units
|
|
2279
|
+
* @category Mechanical
|
|
2280
|
+
*/
|
|
2281
|
+
type SpecificEnergy = AbstractUnitFrom<SpecificEnergyUnitClass>;
|
|
2282
|
+
/**
|
|
2283
|
+
* @group Unit Generators
|
|
2284
|
+
* @category Mechanical
|
|
2285
|
+
*/
|
|
2286
|
+
type SpecificEnergyUnit<M extends UnitSubvalues> = SpecificEnergyUnitFrom<UnitMeta<M>>;
|
|
2287
|
+
/**
|
|
2288
|
+
* @group Unit Generators
|
|
2289
|
+
* @category Mechanical
|
|
2290
|
+
*/
|
|
2291
|
+
type SpecificEnergyUnitFrom<M extends UnknownUnitMeta> = UnitFrom<SpecificEnergyUnitClass, M>;
|
|
2292
|
+
/**
|
|
2293
|
+
* A unit of {@link SpecificEnergy}.
|
|
2294
|
+
*
|
|
2295
|
+
* @group Units
|
|
2296
|
+
* @category Mechanical
|
|
2297
|
+
* @symbol `J/kg`
|
|
2298
|
+
*/
|
|
2299
|
+
type JoulePerKilogram = SpecificEnergyUnit<{}>;
|
|
2300
|
+
|
|
2301
|
+
/**
|
|
2302
|
+
* @group Unit Classes
|
|
2303
|
+
* @category Mechanical
|
|
2304
|
+
*/
|
|
2305
|
+
type SpectralIntensityUnitClass = BaseUnitClass<{
|
|
2306
|
+
Kilogram: 1;
|
|
2307
|
+
Metre: 1;
|
|
2308
|
+
Second: -3;
|
|
2309
|
+
Radian: -2;
|
|
2310
|
+
}>;
|
|
2311
|
+
/**
|
|
2312
|
+
* @group Abstract Units
|
|
2313
|
+
* @category Mechanical
|
|
2314
|
+
*/
|
|
2315
|
+
type SpectralIntensity = AbstractUnitFrom<SpectralIntensityUnitClass>;
|
|
2316
|
+
/**
|
|
2317
|
+
* @group Unit Generators
|
|
2318
|
+
* @category Mechanical
|
|
2319
|
+
*/
|
|
2320
|
+
type SpectralIntensityUnit<M extends UnitSubvalues> = SpectralIntensityUnitFrom<UnitMeta<M>>;
|
|
2321
|
+
/**
|
|
2322
|
+
* @group Unit Generators
|
|
2323
|
+
* @category Mechanical
|
|
2324
|
+
*/
|
|
2325
|
+
type SpectralIntensityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<SpectralIntensityUnitClass, M>;
|
|
2326
|
+
/**
|
|
2327
|
+
* A unit of {@link SpectralIntensity}.
|
|
2328
|
+
*
|
|
2329
|
+
* @group Units
|
|
2330
|
+
* @category Mechanical
|
|
2331
|
+
* @symbol `W/(sr⋅m)`
|
|
2332
|
+
*/
|
|
2333
|
+
type WattPerSteradianMetre = SpectralIntensityUnit<{}>;
|
|
2334
|
+
|
|
2335
|
+
/**
|
|
2336
|
+
* @group Unit Classes
|
|
2337
|
+
* @category Mechanical
|
|
2338
|
+
*/
|
|
2339
|
+
type SpectralIrradianceUnitClass = BaseUnitClass<{
|
|
2340
|
+
Kilogram: 1;
|
|
2341
|
+
Metre: -1;
|
|
2342
|
+
Second: -3;
|
|
2343
|
+
}>;
|
|
2344
|
+
/**
|
|
2345
|
+
* @group Abstract Units
|
|
2346
|
+
* @category Mechanical
|
|
2347
|
+
*/
|
|
2348
|
+
type SpectralIrradiance = AbstractUnitFrom<SpectralIrradianceUnitClass>;
|
|
2349
|
+
/**
|
|
2350
|
+
* @group Unit Generators
|
|
2351
|
+
* @category Mechanical
|
|
2352
|
+
*/
|
|
2353
|
+
type SpectralIrradianceUnit<M extends UnitSubvalues> = SpectralIrradianceUnitFrom<UnitMeta<M>>;
|
|
2354
|
+
/**
|
|
2355
|
+
* @group Unit Generators
|
|
2356
|
+
* @category Mechanical
|
|
2357
|
+
*/
|
|
2358
|
+
type SpectralIrradianceUnitFrom<M extends UnknownUnitMeta> = UnitFrom<SpectralIrradianceUnitClass, M>;
|
|
2359
|
+
/**
|
|
2360
|
+
* A unit of {@link SpectralIrradiance}.
|
|
2361
|
+
*
|
|
2362
|
+
* @group Units
|
|
2363
|
+
* @category Mechanical
|
|
2364
|
+
* @symbol `W/m³`
|
|
2365
|
+
*/
|
|
2366
|
+
type WattPerCubicMetre = SpectralIrradianceUnit<{}>;
|
|
2367
|
+
|
|
2368
|
+
/**
|
|
2369
|
+
* @group Unit Classes
|
|
2370
|
+
* @category Mechanical
|
|
2371
|
+
*/
|
|
2372
|
+
type SpectralPowerUnitClass = BaseUnitClass<{
|
|
2373
|
+
Kilogram: 1;
|
|
2374
|
+
Metre: 1;
|
|
2375
|
+
Second: -3;
|
|
2376
|
+
}>;
|
|
2377
|
+
/**
|
|
2378
|
+
* @group Abstract Units
|
|
2379
|
+
* @category Mechanical
|
|
2380
|
+
*/
|
|
2381
|
+
type SpectralPower = AbstractUnitFrom<SpectralPowerUnitClass>;
|
|
2382
|
+
/**
|
|
2383
|
+
* @group Unit Generators
|
|
2384
|
+
* @category Mechanical
|
|
2385
|
+
*/
|
|
2386
|
+
type SpectralPowerUnit<M extends UnitSubvalues> = SpectralPowerUnitFrom<UnitMeta<M>>;
|
|
2387
|
+
/**
|
|
2388
|
+
* @group Unit Generators
|
|
2389
|
+
* @category Mechanical
|
|
2390
|
+
*/
|
|
2391
|
+
type SpectralPowerUnitFrom<M extends UnknownUnitMeta> = UnitFrom<SpectralPowerUnitClass, M>;
|
|
2392
|
+
/**
|
|
2393
|
+
* A unit of {@link SpectralPower}.
|
|
2394
|
+
*
|
|
2395
|
+
* @group Units
|
|
2396
|
+
* @category Mechanical
|
|
2397
|
+
* @symbol `W/m`
|
|
2398
|
+
*/
|
|
2399
|
+
type WattPerMetre = SpectralPowerUnit<{}>;
|
|
2400
|
+
|
|
2401
|
+
/**
|
|
2402
|
+
* @group Unit Classes
|
|
2403
|
+
* @category Mechanical
|
|
2404
|
+
*/
|
|
2405
|
+
type StiffnessUnitClass = BaseUnitClass<{
|
|
2406
|
+
Kilogram: 1;
|
|
2407
|
+
Second: -2;
|
|
2408
|
+
}>;
|
|
2409
|
+
/**
|
|
2410
|
+
* @group Abstract Units
|
|
2411
|
+
* @category Mechanical
|
|
2412
|
+
*/
|
|
2413
|
+
type Stiffness = AbstractUnitFrom<StiffnessUnitClass>;
|
|
2414
|
+
/**
|
|
2415
|
+
* @group Unit Generators
|
|
2416
|
+
* @category Mechanical
|
|
2417
|
+
*/
|
|
2418
|
+
type StiffnessUnit<M extends UnitSubvalues> = StiffnessUnitFrom<UnitMeta<M>>;
|
|
2419
|
+
/**
|
|
2420
|
+
* @group Unit Generators
|
|
2421
|
+
* @category Mechanical
|
|
2422
|
+
*/
|
|
2423
|
+
type StiffnessUnitFrom<M extends UnknownUnitMeta> = UnitFrom<StiffnessUnitClass, M>;
|
|
2424
|
+
/**
|
|
2425
|
+
* A unit of {@link Stiffness}.
|
|
2426
|
+
*
|
|
2427
|
+
* @group Units
|
|
2428
|
+
* @category Mechanical
|
|
2429
|
+
* @symbol `N/m`
|
|
2430
|
+
*/
|
|
2431
|
+
type NewtonPerMetre = StiffnessUnit<{}>;
|
|
2432
|
+
|
|
2433
|
+
/**
|
|
2434
|
+
* @group Unit Classes
|
|
2435
|
+
* @category Mechanical
|
|
2436
|
+
*/
|
|
2437
|
+
type SurfaceDensityUnitClass = BaseUnitClass<{
|
|
2438
|
+
Kilogram: 1;
|
|
2439
|
+
Metre: -2;
|
|
2440
|
+
}>;
|
|
2441
|
+
/**
|
|
2442
|
+
* @group Abstract Units
|
|
2443
|
+
* @category Mechanical
|
|
2444
|
+
*/
|
|
2445
|
+
type SurfaceDensity = AbstractUnitFrom<SurfaceDensityUnitClass>;
|
|
2446
|
+
/**
|
|
2447
|
+
* @group Unit Generators
|
|
2448
|
+
* @category Mechanical
|
|
2449
|
+
*/
|
|
2450
|
+
type SurfaceDensityUnit<M extends UnitSubvalues> = SurfaceDensityUnitFrom<UnitMeta<M>>;
|
|
2451
|
+
/**
|
|
2452
|
+
* @group Unit Generators
|
|
2453
|
+
* @category Mechanical
|
|
2454
|
+
*/
|
|
2455
|
+
type SurfaceDensityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<SurfaceDensityUnitClass, M>;
|
|
2456
|
+
/**
|
|
2457
|
+
* A unit of {@link SurfaceDensity}.
|
|
2458
|
+
*
|
|
2459
|
+
* @group Units
|
|
2460
|
+
* @category Mechanical
|
|
2461
|
+
* @symbol `kg/m²`
|
|
2462
|
+
*/
|
|
2463
|
+
type KilogramPerSquareMetre = SurfaceDensityUnit<{}>;
|
|
2464
|
+
|
|
2465
|
+
/**
|
|
2466
|
+
* @group Unit Classes
|
|
2467
|
+
* @category Mechanical
|
|
2468
|
+
*/
|
|
2469
|
+
type KinematicViscosityUnitClass = BaseUnitClass<{
|
|
2470
|
+
Metre: 2;
|
|
2471
|
+
Second: -1;
|
|
2472
|
+
}>;
|
|
2473
|
+
/**
|
|
2474
|
+
* @group Abstract Units
|
|
2475
|
+
* @category Mechanical
|
|
2476
|
+
*/
|
|
2477
|
+
type KinematicViscosity = AbstractUnitFrom<KinematicViscosityUnitClass>;
|
|
2478
|
+
/**
|
|
2479
|
+
* @group Unit Generators
|
|
2480
|
+
* @category Mechanical
|
|
2481
|
+
*/
|
|
2482
|
+
type KinematicViscosityUnit<M extends UnitSubvalues> = KinematicViscosityUnitFrom<UnitMeta<M>>;
|
|
2483
|
+
/**
|
|
2484
|
+
* @group Unit Generators
|
|
2485
|
+
* @category Mechanical
|
|
2486
|
+
*/
|
|
2487
|
+
type KinematicViscosityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<KinematicViscosityUnitClass, M>;
|
|
2488
|
+
/**
|
|
2489
|
+
* A unit of {@link KinematicViscosity}.
|
|
2490
|
+
*
|
|
2491
|
+
* @group Units
|
|
2492
|
+
* @category Mechanical
|
|
2493
|
+
* @symbol `m²/s`
|
|
2494
|
+
*/
|
|
2495
|
+
type SquareMetrePerSecond = KinematicViscosityUnit<{}>;
|
|
2496
|
+
|
|
2497
|
+
/**
|
|
2498
|
+
* @group Unit Classes
|
|
2499
|
+
* @category Mechanical
|
|
2500
|
+
*/
|
|
2501
|
+
type WorkUnitClass = EnergyUnitClass;
|
|
2502
|
+
/**
|
|
2503
|
+
* @group Abstract Units
|
|
2504
|
+
* @category Mechanical
|
|
2505
|
+
*/
|
|
2506
|
+
type Work = Energy;
|
|
2507
|
+
/**
|
|
2508
|
+
* @group Unit Generators
|
|
2509
|
+
* @category Mechanical
|
|
2510
|
+
*/
|
|
2511
|
+
type WorkUnit<M extends UnitSubvalues> = EnergyUnit<M>;
|
|
2512
|
+
/**
|
|
2513
|
+
* @group Unit Generators
|
|
2514
|
+
* @category Mechanical
|
|
2515
|
+
*/
|
|
2516
|
+
type WorkUnitFrom<M extends UnknownUnitMeta> = EnergyUnitFrom<M>;
|
|
2517
|
+
/**
|
|
2518
|
+
* A unit of {@link Work}.
|
|
2519
|
+
*
|
|
2520
|
+
* @group Units
|
|
2521
|
+
* @category Mechanical
|
|
2522
|
+
* @symbol `N⋅m`
|
|
2523
|
+
*/
|
|
2524
|
+
type NewtonMetre = Joule;
|
|
2525
|
+
|
|
2526
|
+
/**
|
|
2527
|
+
* @group Unit Classes
|
|
2528
|
+
* @category Mechanical
|
|
2529
|
+
*/
|
|
2530
|
+
type YankUnitClass = BaseUnitClass<{
|
|
2531
|
+
Kilogram: 1;
|
|
2532
|
+
Metre: 1;
|
|
2533
|
+
Second: -3;
|
|
2534
|
+
}>;
|
|
2535
|
+
/**
|
|
2536
|
+
* @group Unit Classes
|
|
2537
|
+
* @category Mechanical
|
|
2538
|
+
*/
|
|
2539
|
+
type Yank = AbstractUnitFrom<YankUnitClass>;
|
|
2540
|
+
/**
|
|
2541
|
+
* @group Unit Classes
|
|
2542
|
+
* @category Mechanical
|
|
2543
|
+
*/
|
|
2544
|
+
type YankUnit<M extends UnitSubvalues> = YankUnitFrom<UnitMeta<M>>;
|
|
2545
|
+
/**
|
|
2546
|
+
* @group Unit Classes
|
|
2547
|
+
* @category Mechanical
|
|
2548
|
+
*/
|
|
2549
|
+
type YankUnitFrom<M extends UnknownUnitMeta> = UnitFrom<YankUnitClass, M>;
|
|
2550
|
+
/**
|
|
2551
|
+
* A unit of {@link Yank}.
|
|
2552
|
+
*
|
|
2553
|
+
* @group Units
|
|
2554
|
+
* @category Mechanical
|
|
2555
|
+
* @symbol `N/s`
|
|
2556
|
+
*/
|
|
2557
|
+
type NewtonPerSecond = YankUnit<{}>;
|
|
2558
|
+
|
|
2559
|
+
/**
|
|
2560
|
+
* @group Unit Classes
|
|
2561
|
+
* @category Photometric
|
|
2562
|
+
*/
|
|
2563
|
+
type LuminanceUnitClass = BaseUnitClass<{
|
|
2564
|
+
Candela: 1;
|
|
2565
|
+
Metre: -2;
|
|
2566
|
+
}>;
|
|
2567
|
+
/**
|
|
2568
|
+
* @group Abstract Units
|
|
2569
|
+
* @category Photometric
|
|
2570
|
+
*/
|
|
2571
|
+
type Luminance = AbstractUnitFrom<LuminanceUnitClass>;
|
|
2572
|
+
/**
|
|
2573
|
+
* @group Unit Generators
|
|
2574
|
+
* @category Photometric
|
|
2575
|
+
*/
|
|
2576
|
+
type LuminanceUnit<M extends UnitSubvalues> = LuminanceUnitFrom<UnitMeta<M>>;
|
|
2577
|
+
/**
|
|
2578
|
+
* @group Unit Generators
|
|
2579
|
+
* @category Photometric
|
|
2580
|
+
*/
|
|
2581
|
+
type LuminanceUnitFrom<M extends UnknownUnitMeta> = UnitFrom<LuminanceUnitClass, M>;
|
|
2582
|
+
/**
|
|
2583
|
+
* A unit of {@link Luminance}.
|
|
2584
|
+
*
|
|
2585
|
+
* @group Units
|
|
2586
|
+
* @category Derived
|
|
2587
|
+
* @category Photometric
|
|
2588
|
+
* @symbol `lx`
|
|
2589
|
+
*/
|
|
2590
|
+
type Lux = LuminanceUnit<{}>;
|
|
2591
|
+
/**
|
|
2592
|
+
* A unit of {@link Luminance}.
|
|
2593
|
+
*
|
|
2594
|
+
* @group Units
|
|
2595
|
+
* @category Photometric
|
|
2596
|
+
* @symbol `cd/m²`
|
|
2597
|
+
*/
|
|
2598
|
+
type CandelaPerSquareMetre = Lux;
|
|
2599
|
+
|
|
2600
|
+
/**
|
|
2601
|
+
* @group Unit Classes
|
|
2602
|
+
* @category Photometric
|
|
2603
|
+
*/
|
|
2604
|
+
type LuminousEfficacyUnitClass = BaseUnitClass<{
|
|
2605
|
+
Candela: 1;
|
|
2606
|
+
Radian: 2;
|
|
2607
|
+
Kilogram: -1;
|
|
2608
|
+
Metre: -2;
|
|
2609
|
+
Second: 3;
|
|
2610
|
+
}>;
|
|
2611
|
+
/**
|
|
2612
|
+
* @group Abstract Units
|
|
2613
|
+
* @category Photometric
|
|
2614
|
+
*/
|
|
2615
|
+
type LuminousEfficacy = AbstractUnitFrom<LuminousEfficacyUnitClass>;
|
|
2616
|
+
/**
|
|
2617
|
+
* @group Unit Generators
|
|
2618
|
+
* @category Photometric
|
|
2619
|
+
*/
|
|
2620
|
+
type LuminousEfficacyUnit<M extends UnitSubvalues> = LuminousEfficacyUnitFrom<UnitMeta<M>>;
|
|
2621
|
+
/**
|
|
2622
|
+
* @group Unit Generators
|
|
2623
|
+
* @category Photometric
|
|
2624
|
+
*/
|
|
2625
|
+
type LuminousEfficacyUnitFrom<M extends UnknownUnitMeta> = UnitFrom<LuminousEfficacyUnitClass, M>;
|
|
2626
|
+
/**
|
|
2627
|
+
* A unit of {@link LuminousEfficacy}.
|
|
2628
|
+
*
|
|
2629
|
+
* @group Units
|
|
2630
|
+
* @category Photometric
|
|
2631
|
+
* @symbol `lm/W`
|
|
2632
|
+
*/
|
|
2633
|
+
type LumenPerWatt = LuminousEfficacyUnit<{}>;
|
|
2634
|
+
|
|
2635
|
+
/**
|
|
2636
|
+
* @group Unit Classes
|
|
2637
|
+
* @category Photometric
|
|
2638
|
+
*/
|
|
2639
|
+
type LuminousEnergyUnitClass = BaseUnitClass<{
|
|
2640
|
+
Candela: 1;
|
|
2641
|
+
Radian: 2;
|
|
2642
|
+
Second: 1;
|
|
2643
|
+
}>;
|
|
2644
|
+
/**
|
|
2645
|
+
* @group Abstract Units
|
|
2646
|
+
* @category Photometric
|
|
2647
|
+
*/
|
|
2648
|
+
type LuminousEnergy = AbstractUnitFrom<LuminousEnergyUnitClass>;
|
|
2649
|
+
/**
|
|
2650
|
+
* @group Unit Generators
|
|
2651
|
+
* @category Photometric
|
|
2652
|
+
*/
|
|
2653
|
+
type LuminousEnergyUnit<M extends UnitSubvalues> = LuminousEnergyUnitFrom<UnitMeta<M>>;
|
|
2654
|
+
/**
|
|
2655
|
+
* @group Unit Generators
|
|
2656
|
+
* @category Photometric
|
|
2657
|
+
*/
|
|
2658
|
+
type LuminousEnergyUnitFrom<M extends UnknownUnitMeta> = UnitFrom<LuminousEnergyUnitClass, M>;
|
|
2659
|
+
/**
|
|
2660
|
+
* A unit of {@link LuminousEnergy}.
|
|
2661
|
+
*
|
|
2662
|
+
* @group Units
|
|
2663
|
+
* @category Photometric
|
|
2664
|
+
* @symbol `lm⋅s`
|
|
2665
|
+
*/
|
|
2666
|
+
type LumenSecond = LuminousEnergyUnit<{}>;
|
|
2667
|
+
|
|
2668
|
+
/**
|
|
2669
|
+
* @group Unit Classes
|
|
2670
|
+
* @category Photometric
|
|
2671
|
+
*/
|
|
2672
|
+
type LuminousExposureUnitClass = BaseUnitClass<{
|
|
2673
|
+
Candela: 1;
|
|
2674
|
+
Metre: -2;
|
|
2675
|
+
Second: 1;
|
|
2676
|
+
}>;
|
|
2677
|
+
/**
|
|
2678
|
+
* @group Abstract Units
|
|
2679
|
+
* @category Photometric
|
|
2680
|
+
*/
|
|
2681
|
+
type LuminousExposure = AbstractUnitFrom<LuminousExposureUnitClass>;
|
|
2682
|
+
/**
|
|
2683
|
+
* @group Unit Generators
|
|
2684
|
+
* @category Photometric
|
|
2685
|
+
*/
|
|
2686
|
+
type LuminousExposureUnit<M extends UnitSubvalues> = LuminousExposureUnitFrom<UnitMeta<M>>;
|
|
2687
|
+
/**
|
|
2688
|
+
* @group Unit Generators
|
|
2689
|
+
* @category Photometric
|
|
2690
|
+
*/
|
|
2691
|
+
type LuminousExposureUnitFrom<M extends UnknownUnitMeta> = UnitFrom<LuminousExposureUnitClass, M>;
|
|
2692
|
+
/**
|
|
2693
|
+
* A unit of {@link LuminousExposure}.
|
|
2694
|
+
*
|
|
2695
|
+
* @group Units
|
|
2696
|
+
* @category Photometric
|
|
2697
|
+
* @symbol `lx⋅s`
|
|
2698
|
+
*/
|
|
2699
|
+
type LuxSecond = LuminousExposureUnit<{}>;
|
|
2700
|
+
|
|
2701
|
+
/**
|
|
2702
|
+
* @group Unit Classes
|
|
2703
|
+
* @category Photometric
|
|
2704
|
+
*/
|
|
2705
|
+
type LuminousFluxUnitClass = BaseUnitClass<{
|
|
2706
|
+
Candela: 1;
|
|
2707
|
+
Radian: 2;
|
|
2708
|
+
}>;
|
|
2709
|
+
/**
|
|
2710
|
+
* @group Abstract Units
|
|
2711
|
+
* @category Photometric
|
|
2712
|
+
*/
|
|
2713
|
+
type LuminousFlux = AbstractUnitFrom<LuminousFluxUnitClass>;
|
|
2714
|
+
/**
|
|
2715
|
+
* @group Unit Generators
|
|
2716
|
+
* @category Photometric
|
|
2717
|
+
*/
|
|
2718
|
+
type LuminousFluxUnit<M extends UnitSubvalues> = LuminousFluxUnitFrom<UnitMeta<M>>;
|
|
2719
|
+
/**
|
|
2720
|
+
* @group Unit Generators
|
|
2721
|
+
* @category Photometric
|
|
2722
|
+
*/
|
|
2723
|
+
type LuminousFluxUnitFrom<M extends UnknownUnitMeta> = UnitFrom<LuminousFluxUnitClass, M>;
|
|
2724
|
+
/**
|
|
2725
|
+
* One Lumen is equal to the amount of light given out through a solid angle by a source of one
|
|
2726
|
+
* candela intensity radiating equally in all directions.
|
|
2727
|
+
*
|
|
2728
|
+
* @group Units
|
|
2729
|
+
* @category Derived
|
|
2730
|
+
* @symbol `lm`
|
|
2731
|
+
*/
|
|
2732
|
+
type Lumen = LuminousFluxUnit<{}>;
|
|
2733
|
+
|
|
2734
|
+
/**
|
|
2735
|
+
* @group Unit Classes
|
|
2736
|
+
* @category Photometric
|
|
2737
|
+
*/
|
|
2738
|
+
type LuminousIntensityUnitClass = BaseUnitClass<{
|
|
2739
|
+
Candela: 1;
|
|
2740
|
+
}>;
|
|
2741
|
+
/**
|
|
2742
|
+
* @group Abstract Units
|
|
2743
|
+
* @category Photometric
|
|
2744
|
+
*/
|
|
2745
|
+
type LuminousIntensity = AbstractUnitFrom<LuminousIntensityUnitClass>;
|
|
2746
|
+
/**
|
|
2747
|
+
* @group Unit Generators
|
|
2748
|
+
* @category Photometric
|
|
2749
|
+
*/
|
|
2750
|
+
type LuminousIntensityUnit<M extends UnitSubvalues> = LuminousIntensityUnitFrom<UnitMeta<M>>;
|
|
2751
|
+
/**
|
|
2752
|
+
* @group Unit Generators
|
|
2753
|
+
* @category Photometric
|
|
2754
|
+
*/
|
|
2755
|
+
type LuminousIntensityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<LuminousIntensityUnitClass, M>;
|
|
2756
|
+
/**
|
|
2757
|
+
* A unit of luminous intensity.
|
|
2758
|
+
*
|
|
2759
|
+
* @group Units
|
|
2760
|
+
* @category Base
|
|
2761
|
+
* @symbol `cd`
|
|
2762
|
+
*/
|
|
2763
|
+
type Candela = LuminousIntensityUnit<{}>;
|
|
2764
|
+
|
|
2765
|
+
/**
|
|
2766
|
+
* @group Unit Classes
|
|
2767
|
+
* @category Electromagnetic
|
|
2768
|
+
* @category Mechanical
|
|
2769
|
+
*/
|
|
2770
|
+
type PowerUnitClass = BaseUnitClass<{
|
|
2771
|
+
Kilogram: 1;
|
|
2772
|
+
Metre: 2;
|
|
2773
|
+
Second: -3;
|
|
2774
|
+
}>;
|
|
2775
|
+
/**
|
|
2776
|
+
* @group Abstract Units
|
|
2777
|
+
* @category Electromagnetic
|
|
2778
|
+
* @category Mechanical
|
|
2779
|
+
*/
|
|
2780
|
+
type Power = AbstractUnitFrom<PowerUnitClass>;
|
|
2781
|
+
/**
|
|
2782
|
+
* @group Unit Generators
|
|
2783
|
+
* @category Electromagnetic
|
|
2784
|
+
* @category Mechanical
|
|
2785
|
+
*/
|
|
2786
|
+
type PowerUnit<M extends UnitSubvalues> = PowerUnitFrom<UnitMeta<M>>;
|
|
2787
|
+
/**
|
|
2788
|
+
* @group Unit Generators
|
|
2789
|
+
* @category Electromagnetic
|
|
2790
|
+
* @category Mechanical
|
|
2791
|
+
*/
|
|
2792
|
+
type PowerUnitFrom<M extends UnknownUnitMeta> = UnitFrom<PowerUnitClass, M>;
|
|
2793
|
+
/**
|
|
2794
|
+
* A unit of {@link Power}.
|
|
2795
|
+
*
|
|
2796
|
+
* @group Units
|
|
2797
|
+
* @category Derived
|
|
2798
|
+
* @category Electromagnetic
|
|
2799
|
+
* @category Mechanical
|
|
2800
|
+
* @symbol `W`
|
|
2801
|
+
*/
|
|
2802
|
+
type Watt = PowerUnit<{}>;
|
|
2803
|
+
|
|
2804
|
+
/**
|
|
2805
|
+
* @group Unit Classes
|
|
2806
|
+
* @category Thermodynamic
|
|
2807
|
+
*/
|
|
2808
|
+
type EntropyUnitClass = BaseUnitClass<{
|
|
2809
|
+
Kilogram: 1;
|
|
2810
|
+
Metre: 2;
|
|
2811
|
+
Second: -2;
|
|
2812
|
+
Kelvin: -1;
|
|
2813
|
+
}>;
|
|
2814
|
+
/**
|
|
2815
|
+
* @group Abstract Units
|
|
2816
|
+
* @category Thermodynamic
|
|
2817
|
+
*/
|
|
2818
|
+
type Entropy = AbstractUnitFrom<EntropyUnitClass>;
|
|
2819
|
+
/**
|
|
2820
|
+
* @group Unit Generators
|
|
2821
|
+
* @category Thermodynamic
|
|
2822
|
+
*/
|
|
2823
|
+
type EntropyUnit<M extends UnitSubvalues> = EntropyUnitFrom<UnitMeta<M>>;
|
|
2824
|
+
/**
|
|
2825
|
+
* @group Unit Generators
|
|
2826
|
+
* @category Thermodynamic
|
|
2827
|
+
*/
|
|
2828
|
+
type EntropyUnitFrom<M extends UnknownUnitMeta> = UnitFrom<EntropyUnitClass, M>;
|
|
2829
|
+
/**
|
|
2830
|
+
* A unit of {@link Entropy}.
|
|
2831
|
+
*
|
|
2832
|
+
* @group Units
|
|
2833
|
+
* @category Thermodynamic
|
|
2834
|
+
* @symbol `J/K`
|
|
2835
|
+
*/
|
|
2836
|
+
type JoulePerKelvin = EntropyUnit<{}>;
|
|
2837
|
+
|
|
2838
|
+
/**
|
|
2839
|
+
* @group Unit Classes
|
|
2840
|
+
* @category Thermodynamic
|
|
2841
|
+
*/
|
|
2842
|
+
type SpecificEntropyUnitClass = BaseUnitClass<{
|
|
2843
|
+
Metre: 2;
|
|
2844
|
+
Second: -2;
|
|
2845
|
+
Kelvin: -1;
|
|
2846
|
+
}>;
|
|
2847
|
+
/**
|
|
2848
|
+
* @group Abstract Units
|
|
2849
|
+
* @category Thermodynamic
|
|
2850
|
+
*/
|
|
2851
|
+
type SpecificEntropy = AbstractUnitFrom<SpecificEntropyUnitClass>;
|
|
2852
|
+
/**
|
|
2853
|
+
* @group Unit Generators
|
|
2854
|
+
* @category Thermodynamic
|
|
2855
|
+
*/
|
|
2856
|
+
type SpecificEntropyUnit<M extends UnitSubvalues> = SpecificEntropyUnitFrom<UnitMeta<M>>;
|
|
2857
|
+
/**
|
|
2858
|
+
* @group Unit Generators
|
|
2859
|
+
* @category Thermodynamic
|
|
2860
|
+
*/
|
|
2861
|
+
type SpecificEntropyUnitFrom<M extends UnknownUnitMeta> = UnitFrom<SpecificEntropyUnitClass, M>;
|
|
2862
|
+
/**
|
|
2863
|
+
* A unit of {@link SpecificEntropy}.
|
|
2864
|
+
*
|
|
2865
|
+
* @group Units
|
|
2866
|
+
* @category Thermodynamic
|
|
2867
|
+
* @symbol `J/(K⋅kg)`
|
|
2868
|
+
*/
|
|
2869
|
+
type JoulePerKilogramKelvin = SpecificEntropyUnit<{}>;
|
|
2870
|
+
|
|
2871
|
+
/**
|
|
2872
|
+
* @group Unit Classes
|
|
2873
|
+
* @category Thermodynamic
|
|
2874
|
+
*/
|
|
2875
|
+
type SpecificVolumeUnitClass = BaseUnitClass<{
|
|
2876
|
+
Kilogram: -1;
|
|
2877
|
+
Metre: 3;
|
|
2878
|
+
}>;
|
|
2879
|
+
/**
|
|
2880
|
+
* @group Abstract Units
|
|
2881
|
+
* @category Thermodynamic
|
|
2882
|
+
*/
|
|
2883
|
+
type SpecificVolume = AbstractUnitFrom<SpecificVolumeUnitClass>;
|
|
2884
|
+
/**
|
|
2885
|
+
* @group Unit Generators
|
|
2886
|
+
* @category Thermodynamic
|
|
2887
|
+
*/
|
|
2888
|
+
type SpecificVolumeUnit<M extends UnitSubvalues> = SpecificVolumeUnitFrom<UnitMeta<M>>;
|
|
2889
|
+
/**
|
|
2890
|
+
* @group Unit Generators
|
|
2891
|
+
* @category Thermodynamic
|
|
2892
|
+
*/
|
|
2893
|
+
type SpecificVolumeUnitFrom<M extends UnknownUnitMeta> = UnitFrom<SpecificVolumeUnitClass, M>;
|
|
2894
|
+
/**
|
|
2895
|
+
* A unit of {@link SpecificVolume}.
|
|
2896
|
+
*
|
|
2897
|
+
* @group Units
|
|
2898
|
+
* @category Mechanical
|
|
2899
|
+
* @symbol `m³/kg`
|
|
2900
|
+
*/
|
|
2901
|
+
type CubicMetrePerKilogram = SpecificVolumeUnit<{}>;
|
|
2902
|
+
|
|
2903
|
+
/**
|
|
2904
|
+
* @group Unit Classes
|
|
2905
|
+
* @category Thermodynamic
|
|
2906
|
+
*/
|
|
2907
|
+
type TemperatureGradientUnitClass = BaseUnitClass<{
|
|
2908
|
+
Kelvin: 1;
|
|
2909
|
+
Metre: -1;
|
|
2910
|
+
}>;
|
|
2911
|
+
/**
|
|
2912
|
+
* @group Abstract Units
|
|
2913
|
+
* @category Thermodynamic
|
|
2914
|
+
*/
|
|
2915
|
+
type TemperatureGradient = AbstractUnitFrom<TemperatureGradientUnitClass>;
|
|
2916
|
+
/**
|
|
2917
|
+
* @group Unit Generators
|
|
2918
|
+
* @category Thermodynamic
|
|
2919
|
+
*/
|
|
2920
|
+
type TemperatureGradientUnit<M extends UnitSubvalues> = TemperatureGradientUnitFrom<UnitMeta<M>>;
|
|
2921
|
+
/**
|
|
2922
|
+
* @group Unit Generators
|
|
2923
|
+
* @category Thermodynamic
|
|
2924
|
+
*/
|
|
2925
|
+
type TemperatureGradientUnitFrom<M extends UnknownUnitMeta> = UnitFrom<TemperatureGradientUnitClass, M>;
|
|
2926
|
+
/**
|
|
2927
|
+
* A unit of {@link TemperatureGradient}.
|
|
2928
|
+
*
|
|
2929
|
+
* @group Units
|
|
2930
|
+
* @category Thermodynamic
|
|
2931
|
+
* @symbol `K/m`
|
|
2932
|
+
*/
|
|
2933
|
+
type KelvinPerMetre = TemperatureGradientUnit<{}>;
|
|
2934
|
+
|
|
2935
|
+
/**
|
|
2936
|
+
* @group Unit Classes
|
|
2937
|
+
* @category Thermodynamic
|
|
2938
|
+
*/
|
|
2939
|
+
type ThermalConductivityUnitClass = BaseUnitClass<{
|
|
2940
|
+
Kilogram: 1;
|
|
2941
|
+
Metre: 1;
|
|
2942
|
+
Second: -3;
|
|
2943
|
+
Kelvin: -1;
|
|
2944
|
+
}>;
|
|
2945
|
+
/**
|
|
2946
|
+
* @group Abstract Units
|
|
2947
|
+
* @category Thermodynamic
|
|
2948
|
+
*/
|
|
2949
|
+
type ThermalConductivity = AbstractUnitFrom<ThermalConductivityUnitClass>;
|
|
2950
|
+
/**
|
|
2951
|
+
* @group Unit Generators
|
|
2952
|
+
* @category Thermodynamic
|
|
2953
|
+
*/
|
|
2954
|
+
type ThermalConductivityUnit<M extends UnitSubvalues> = ThermalConductivityUnitFrom<UnitMeta<M>>;
|
|
2955
|
+
/**
|
|
2956
|
+
* @group Unit Generators
|
|
2957
|
+
* @category Thermodynamic
|
|
2958
|
+
*/
|
|
2959
|
+
type ThermalConductivityUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ThermalConductivityUnitClass, M>;
|
|
2960
|
+
/**
|
|
2961
|
+
* A unit of {@link ThermalConductivity}.
|
|
2962
|
+
*
|
|
2963
|
+
* @group Units
|
|
2964
|
+
* @category Thermodynamic
|
|
2965
|
+
* @symbol `W/(m⋅K)`
|
|
2966
|
+
*/
|
|
2967
|
+
type WattPerMetreKelvin = ThermalConductivityUnit<{}>;
|
|
2968
|
+
|
|
2969
|
+
/**
|
|
2970
|
+
* @group Unit Classes
|
|
2971
|
+
* @category Thermodynamic
|
|
2972
|
+
*/
|
|
2973
|
+
type ThermalExpansionCoefficientUnitClass = ReciprocalUnitClass<TemperatureUnitClass>;
|
|
2974
|
+
/**
|
|
2975
|
+
* @group Abstract Units
|
|
2976
|
+
* @category Thermodynamic
|
|
2977
|
+
*/
|
|
2978
|
+
type ThermalExpansionCoefficient = Reciprocal<Temperature>;
|
|
2979
|
+
/**
|
|
2980
|
+
* @group Unit Generators
|
|
2981
|
+
* @category Thermodynamic
|
|
2982
|
+
*/
|
|
2983
|
+
type ThermalExpansionCoefficientUnit<M extends UnitSubvalues> = ThermalExpansionCoefficientUnitFrom<UnitMeta<M>>;
|
|
2984
|
+
/**
|
|
2985
|
+
* @group Unit Generators
|
|
2986
|
+
* @category Thermodynamic
|
|
2987
|
+
*/
|
|
2988
|
+
type ThermalExpansionCoefficientUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ThermalExpansionCoefficientUnitClass, M>;
|
|
2989
|
+
|
|
2990
|
+
/**
|
|
2991
|
+
* @group Unit Classes
|
|
2992
|
+
* @category Thermodynamic
|
|
2993
|
+
*/
|
|
2994
|
+
type ThermalResistanceUnitClass = BaseUnitClass<{
|
|
2995
|
+
Kilogram: -1;
|
|
2996
|
+
Metre: -2;
|
|
2997
|
+
Second: 3;
|
|
2998
|
+
Kelvin: 1;
|
|
2999
|
+
}>;
|
|
3000
|
+
/**
|
|
3001
|
+
* @group Abstract Units
|
|
3002
|
+
* @category Thermodynamic
|
|
3003
|
+
*/
|
|
3004
|
+
type ThermalResistance = AbstractUnitFrom<ThermalResistanceUnitClass>;
|
|
3005
|
+
/**
|
|
3006
|
+
* @group Unit Generators
|
|
3007
|
+
* @category Thermodynamic
|
|
3008
|
+
*/
|
|
3009
|
+
type ThermalResistanceUnit<M extends UnitSubvalues> = ThermalResistanceUnitFrom<UnitMeta<M>>;
|
|
3010
|
+
/**
|
|
3011
|
+
* @group Unit Generators
|
|
3012
|
+
* @category Thermodynamic
|
|
3013
|
+
*/
|
|
3014
|
+
type ThermalResistanceUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ThermalResistanceUnitClass, M>;
|
|
3015
|
+
/**
|
|
3016
|
+
* A unit of {@link ThermalResistance}.
|
|
3017
|
+
*
|
|
3018
|
+
* @group Units
|
|
3019
|
+
* @category Thermodynamic
|
|
3020
|
+
* @symbol `K/W`
|
|
3021
|
+
*/
|
|
3022
|
+
type KelvinPerWatt = ThermalResistanceUnit<{}>;
|
|
3023
|
+
|
|
3024
|
+
/**
|
|
3025
|
+
* @group Unit Classes
|
|
3026
|
+
* @category Thermodynamic
|
|
3027
|
+
*/
|
|
3028
|
+
type ThermalTransmittanceUnitClass = BaseUnitClass<{
|
|
3029
|
+
Kilogram: 1;
|
|
3030
|
+
Second: -3;
|
|
3031
|
+
Kelvin: -1;
|
|
3032
|
+
}>;
|
|
3033
|
+
/**
|
|
3034
|
+
* @group Abstract Units
|
|
3035
|
+
* @category Thermodynamic
|
|
3036
|
+
*/
|
|
3037
|
+
type ThermalTransmittance = AbstractUnitFrom<ThermalTransmittanceUnitClass>;
|
|
3038
|
+
/**
|
|
3039
|
+
* @group Unit Generators
|
|
3040
|
+
* @category Thermodynamic
|
|
3041
|
+
*/
|
|
3042
|
+
type ThermalTransmittanceUnit<M extends UnitSubvalues> = ThermalTransmittanceUnitFrom<UnitMeta<M>>;
|
|
3043
|
+
/**
|
|
3044
|
+
* @group Unit Generators
|
|
3045
|
+
* @category Thermodynamic
|
|
3046
|
+
*/
|
|
3047
|
+
type ThermalTransmittanceUnitFrom<M extends UnknownUnitMeta> = UnitFrom<ThermalTransmittanceUnitClass, M>;
|
|
3048
|
+
/**
|
|
3049
|
+
* A unit of {@link ThermalTransmittance}.
|
|
3050
|
+
*
|
|
3051
|
+
* @group Units
|
|
3052
|
+
* @category Thermodynamic
|
|
3053
|
+
*/
|
|
3054
|
+
type WattPerSquareMetrePerKelvin = ThermalTransmittanceUnit<{}>;
|
|
3055
|
+
|
|
3056
|
+
export { AbsorbedDoseRate, AbsorbedDoseRateUnit, AbsorbedDoseRateUnitClass, AbsorbedDoseRateUnitFrom, Acceleration, AccelerationUnit, AccelerationUnitClass, AccelerationUnitFrom, Action, ActionUnit, ActionUnitClass, ActionUnitFrom, AmountOfSubstance, AmountOfSubstanceUnit, AmountOfSubstanceUnitClass, AmountOfSubstanceUnitFrom, Ampere, AmperePerMetre, AmperePerSquareMetre, AmpereRadian, AngularAcceleration, AngularAccelerationUnit, AngularAccelerationUnitClass, AngularAccelerationUnitFrom, AngularMomentum, AngularMomentumUnit, AngularMomentumUnitClass, AngularMomentumUnitFrom, AngularVelocity, AngularVelocityUnit, AngularVelocityUnitClass, AngularVelocityUnitFrom, BaseUnitClass, Candela, CandelaPerSquareMetre, CatalyticActivity, CatalyticActivityUnit, CatalyticActivityUnitClass, CatalyticActivityUnitFrom, Centi, Compressibility, CompressibilityUnit, CompressibilityUnitClass, CompressibilityUnitFrom, Concentration, Coulomb, CoulombPerCubicMetre, CoulombPerKilogram, CoulombPerMetre, CoulombPerSquareMetre, Crackle, CrackleUnit, CrackleUnitClass, CrackleUnitFrom, CubicMetrePerKilogram, CubicMetrePerSecond, Deci, Deka, Density, DensityUnit, DensityUnitClass, DensityUnitFrom, DynamicViscosity, DynamicViscosityUnit, DynamicViscosityUnitClass, DynamicViscosityUnitFrom, ElectricCapacitance, ElectricCapacitanceUnit, ElectricCapacitanceUnitClass, ElectricCapacitanceUnitFrom, ElectricCharge, ElectricChargeDensity, ElectricChargeDensityUnit, ElectricChargeDensityUnitClass, ElectricChargeDensityUnitFrom, ElectricChargeUnit, ElectricChargeUnitClass, ElectricChargeUnitFrom, ElectricConductance, ElectricConductanceUnit, ElectricConductanceUnitClass, ElectricConductanceUnitFrom, ElectricCurrent, ElectricCurrentDensity, ElectricCurrentDensityUnit, ElectricCurrentDensityUnitClass, ElectricCurrentDensityUnitFrom, ElectricCurrentUnit, ElectricCurrentUnitClass, ElectricCurrentUnitFrom, ElectricDisplacementField, ElectricDisplacementFieldUnit, ElectricDisplacementFieldUnitClass, ElectricDisplacementFieldUnitFrom, ElectricFieldStrength, ElectricFieldStrengthUnit, ElectricFieldStrengthUnitClass, ElectricFieldStrengthUnitFrom, ElectricInductance, ElectricInductanceUnit, ElectricInductanceUnitClass, ElectricInductanceUnitFrom, ElectricLinearChargeDensity, ElectricLinearChargeDensityUnit, ElectricLinearChargeDensityUnitClass, ElectricLinearChargeDensityUnitFrom, ElectricPotential, ElectricPotentialUnit, ElectricPotentialUnitClass, ElectricPotentialUnitFrom, ElectricResistance, ElectricResistanceUnit, ElectricResistanceUnitClass, ElectricResistanceUnitFrom, ElectricalConductivity, ElectricalConductivityUnit, ElectricalConductivityUnitClass, ElectricalConductivityUnitFrom, ElectronMobility, ElectronMobilityUnit, ElectronMobilityUnitClass, ElectronMobilityUnitFrom, Energy, EnergyDensity, EnergyDensityUnit, EnergyDensityUnitClass, EnergyDensityUnitFrom, EnergyFluxDensity, EnergyFluxDensityUnit, EnergyFluxDensityUnitClass, EnergyFluxDensityUnitFrom, EnergyUnit, EnergyUnitClass, EnergyUnitFrom, Enthalpy, EnthalpyUnit, EnthalpyUnitClass, EnthalpyUnitFrom, Entropy, EntropyUnit, EntropyUnitClass, EntropyUnitFrom, Exposure, ExposureUnit, ExposureUnitClass, ExposureUnitFrom, Farad, FaradPerMetre, Force, ForceUnit, ForceUnitClass, ForceUnitFrom, FrequencyDrift, FrequencyDriftUnit, FrequencyDriftUnitClass, FrequencyDriftUnitFrom, Giga, Gray, GrayPerSecond, Hecto, Henry, HenryPerMetre, HertzPerSecond, Intensity, IntensityUnit, IntensityUnitClass, IntensityUnitFrom, Jerk, JerkUnit, JerkUnitClass, JerkUnitFrom, Joule, JoulePerCubicMetre, JoulePerKelvin, JoulePerKilogram, JoulePerKilogramKelvin, JoulePerRadian, JoulePerSquareMetre, JoulePerSquareMetreSecond, JoulePerTesla, JouleSecond, JouleSecondPerRadian, JouleSecondPerRadianPerKilogram, Katal, KelvinPerMetre, KelvinPerWatt, Kilo, KilogramPerCubicMetre, KilogramPerMetre, KilogramPerSecond, KilogramPerSquareMetre, KilogramSquareMetrePerSteradian, KinematicViscosity, KinematicViscosityUnit, KinematicViscosityUnitClass, KinematicViscosityUnitFrom, LinearMassDensity, LinearMassDensityUnit, LinearMassDensityUnitClass, LinearMassDensityUnitFrom, Lumen, LumenPerWatt, LumenSecond, Luminance, LuminanceUnit, LuminanceUnitClass, LuminanceUnitFrom, LuminousEfficacy, LuminousEfficacyUnit, LuminousEfficacyUnitClass, LuminousEfficacyUnitFrom, LuminousEnergy, LuminousEnergyUnit, LuminousEnergyUnitClass, LuminousEnergyUnitFrom, LuminousExposure, LuminousExposureUnit, LuminousExposureUnitClass, LuminousExposureUnitFrom, LuminousFlux, LuminousFluxUnit, LuminousFluxUnitClass, LuminousFluxUnitFrom, LuminousIntensity, LuminousIntensityUnit, LuminousIntensityUnitClass, LuminousIntensityUnitFrom, Lux, LuxSecond, MagneticDipoleMoment, MagneticDipoleMomentUnit, MagneticDipoleMomentUnitClass, MagneticDipoleMomentUnitFrom, MagneticFieldStrength, MagneticFieldStrengthUnit, MagneticFieldStrengthUnitClass, MagneticFieldStrengthUnitFrom, MagneticFlux, MagneticFluxDensity, MagneticFluxDensityUnit, MagneticFluxDensityUnitClass, MagneticFluxDensityUnitFrom, MagneticFluxUnit, MagneticFluxUnitClass, MagneticFluxUnitFrom, MagneticMoment, MagneticMomentUnit, MagneticMomentUnitClass, MagneticMomentUnitFrom, MagneticPermeability, MagneticPermeabilityUnit, MagneticPermeabilityUnitClass, MagneticPermeabilityUnitFrom, MagneticReluctance, MagneticReluctanceUnit, MagneticReluctanceUnitClass, MagneticReluctanceUnitFrom, MagneticRigidity, MagneticRigidityUnit, MagneticRigidityUnitClass, MagneticRigidityUnitFrom, MagneticSusceptibility, MagneticSusceptibilityUnit, MagneticSusceptibilityUnitClass, MagneticSusceptibilityUnitFrom, MagneticVectorPotential, MagneticVectorPotentialUnit, MagneticVectorPotentialUnitClass, MagneticVectorPotentialUnitFrom, MagnetomotiveForce, MagnetomotiveForceUnit, MagnetomotiveForceUnitClass, MagnetomotiveForceUnitFrom, MassFlowRate, MassFlowRateUnit, MassFlowRateUnitClass, MassFlowRateUnitFrom, Mega, MetrePerHenry, MetrePerSecond, MetrePerSecondCubed, MetrePerSecondSquared, MetrePerSecondToTheFifth, MetrePerSecondToTheFourth, MetrePerSecondToTheSixth, Micro, Milli, MolarConcentration, MolarConcentrationUnit, MolarConcentrationUnitClass, MolarConcentrationUnitFrom, Mole, MolePerCubicMetre, MolePerLiter, MomentOfInertia, MomentOfInertiaUnit, MomentOfInertiaUnitClass, MomentOfInertiaUnitFrom, Momentum, MomentumUnit, MomentumUnitClass, MomentumUnitFrom, Nano, Newton, NewtonMeterPerRadian, NewtonMetre, NewtonMetreSecondPerRadianPerKilogram, NewtonPerMetre, NewtonPerSecond, NewtonSecond, Ohm, OhmMetre, Pascal, PascalSecond, Permittivity, PermittivityUnit, PermittivityUnitClass, PermittivityUnitFrom, Pico, Pop, PopUnit, PopUnitClass, PopUnitFrom, Power, PowerUnit, PowerUnitClass, PowerUnitFrom, Pressure, PressureUnit, PressureUnitClass, PressureUnitFrom, RadianPerSecond, RadianPerSecondSquared, Radiance, RadianceUnit, RadianceUnitClass, RadianceUnitFrom, RadiantExposure, RadiantExposureUnit, RadiantExposureUnitClass, RadiantExposureUnitFrom, RadiantIntensity, RadiantIntensityUnit, RadiantIntensityUnitClass, RadiantIntensityUnitFrom, Reciprocal, ReciprocalUnitClass, Resistivity, ResistivityUnit, ResistivityUnitClass, ResistivityUnitFrom, Siemens, SiemensPerMetre, Snap, SnapUnit, SnapUnitClass, SnapUnitFrom, SolidAngle, SolidAngleUnit, SolidAngleUnitClass, SolidAngleUnitFrom, SpecificAngularMomentum, SpecificAngularMomentumUnit, SpecificAngularMomentumUnitClass, SpecificAngularMomentumUnitFrom, SpecificEnergy, SpecificEnergyUnit, SpecificEnergyUnitClass, SpecificEnergyUnitFrom, SpecificEntropy, SpecificEntropyUnit, SpecificEntropyUnitClass, SpecificEntropyUnitFrom, SpecificVolume, SpecificVolumeUnit, SpecificVolumeUnitClass, SpecificVolumeUnitFrom, SpectralIntensity, SpectralIntensityUnit, SpectralIntensityUnitClass, SpectralIntensityUnitFrom, SpectralIrradiance, SpectralIrradianceUnit, SpectralIrradianceUnitClass, SpectralIrradianceUnitFrom, SpectralPower, SpectralPowerUnit, SpectralPowerUnitClass, SpectralPowerUnitFrom, SpectralRadiance, SpectralRadianceUnit, SpectralRadianceUnitClass, SpectralRadianceUnitFrom, SquareMetrePerSecond, SquareMetrePerVoltSecond, Steradian, Stiffness, StiffnessUnit, StiffnessUnitClass, StiffnessUnitFrom, SurfaceDensity, SurfaceDensityUnit, SurfaceDensityUnitClass, SurfaceDensityUnitFrom, Temperature, TemperatureGradient, TemperatureGradientUnit, TemperatureGradientUnitClass, TemperatureGradientUnitFrom, TemperatureUnitClass, Tera, Tesla, TeslaMetre, ThermalConductivity, ThermalConductivityUnit, ThermalConductivityUnitClass, ThermalConductivityUnitFrom, ThermalExpansionCoefficient, ThermalExpansionCoefficientUnit, ThermalExpansionCoefficientUnitClass, ThermalExpansionCoefficientUnitFrom, ThermalResistance, ThermalResistanceUnit, ThermalResistanceUnitClass, ThermalResistanceUnitFrom, ThermalTransmittance, ThermalTransmittanceUnit, ThermalTransmittanceUnitClass, ThermalTransmittanceUnitFrom, Torque, TorqueUnit, TorqueUnitClass, TorqueUnitFrom, Velocity, VelocityUnit, VelocityUnitClass, VelocityUnitFrom, Volt, VoltPerMetre, VolumetricFlow, VolumetricFlowUnit, VolumetricFlowUnitClass, VolumetricFlowUnitFrom, Watt, WattPerCubicMetre, WattPerMetre, WattPerMetreKelvin, WattPerSquareMetre, WattPerSquareMetrePerKelvin, WattPerSteradian, WattPerSteradianCubicMetre, WattPerSteradianMetre, WattPerSteradianquareMetre, Weber, WeberMetre, WeberPerMetre, Work, WorkUnit, WorkUnitClass, WorkUnitFrom, Yank, YankUnit, YankUnitClass, YankUnitFrom };
|