This repository was archived by the owner on May 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunits.hpp
562 lines (484 loc) · 20.3 KB
/
units.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
#pragma once
// Don't crash your Mars Orbiter
// Coherent unit system based on SI
#include <cmath>
#include <ratio>
#include <algorithm>
#include <iostream>
#include <type_traits>
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
template <typename Mass, typename Length, typename Time, typename Angle, typename Tag = std::ratio<0>>
struct Dimensions {
Mass mass;
Length length;
Time time;
Angle angle;
Tag tag;
};
// The units used internally are:
// Kilograms for Mass
// Meters for Length
// Seconds for Time
// Radians for Angle
template <typename Mass, typename Length, typename Time, typename Angle, typename Rep = double>
class Quantity {
double value;
public:
// A proxy to be able to extract dimension units with decltype
// Not used at runtime
inline static Dimensions<Mass, Length, Time, Angle> dim{};
explicit constexpr inline Quantity() : value(0) {
}
explicit constexpr inline Quantity(double val) : value(val) {
}
constexpr inline double raw() {
return value;
}
constexpr inline Quantity const& operator+=(const Quantity& rhs) {
value += rhs.value;
return *this;
}
constexpr inline Quantity const& operator-=(const Quantity& rhs) {
value -= rhs.value;
return *this;
}
constexpr inline Quantity operator-() {
return Quantity(value * -1);
}
constexpr inline Quantity const& operator*=(const double rhs) {
value *= rhs;
return *this;
}
constexpr inline Quantity const& operator/=(const double rhs) {
value /= rhs;
return *this;
}
// Returns the value of the quantity in multiples of the specified unit
constexpr inline double convert(const Quantity unit) const {
return value / unit.raw();
}
// returns the raw value of the quantity (this breaks the type-safety of the unit system)
constexpr inline double raw() const {
return value;
}
};
template<typename Q1, typename Q2>
constexpr inline Q1 unit_cast(Q2 quantity) {
return Q1(quantity.raw());
}
template <typename Q1, typename Q2>
using Multiplication = Quantity<std::ratio_add<decltype(Q1::dim.mass), decltype(Q2::dim.mass)>,
std::ratio_add<decltype(Q1::dim.length), decltype(Q2::dim.length)>,
std::ratio_add<decltype(Q1::dim.time), decltype(Q2::dim.time)>,
std::ratio_add<decltype(Q1::dim.angle), decltype(Q2::dim.angle)>>;
template <typename Q1, typename Q2>
using Division = Quantity<std::ratio_subtract<decltype(Q1::dim.mass), decltype(Q2::dim.mass)>,
std::ratio_subtract<decltype(Q1::dim.length), decltype(Q2::dim.length)>,
std::ratio_subtract<decltype(Q1::dim.time), decltype(Q2::dim.time)>,
std::ratio_subtract<decltype(Q1::dim.angle), decltype(Q2::dim.angle)>>;
#define QUANTITY_NEW(Name, base, Mass, Length, Time, Angle) \
using Name = Quantity<std::ratio<Mass>, std::ratio<Length>, std::ratio<Time>, std::ratio<Angle>>; \
constexpr inline Name base = Name(1); \
constexpr inline Name operator""_##base(long double value) { \
return Name(static_cast<double>(value)); \
} \
constexpr inline Name operator""_##base(unsigned long long value) { \
return Name(static_cast<double>(value)); \
} \
constexpr inline Name from_##base(double value) { \
return Name(value); \
} \
constexpr inline double to_##base(Name quantity) { \
return quantity.raw(); \
} \
inline std::ostream& operator<<(std::ostream& os, const Name& quantity) { \
os << quantity.raw() << "_" << #base; \
return os; \
}
#define QUANTITY_NEW_TAGGED(Name, base, Mass, Length, Time, Angle, Tag) \
using Name = Quantity<std::ratio<Mass>, std::ratio<Length>, std::ratio<Time>, std::ratio<Angle>, std::ratio<Tag>>; \
constexpr inline Name base = Name(1); \
constexpr inline Name operator""_##base(long double value) { \
return Name(static_cast<double>(value)); \
} \
constexpr inline Name operator""_##base(unsigned long long value) { \
return Name(static_cast<double>(value)); \
} \
constexpr inline Name from_##base(double value) { \
return Name(value); \
} \
constexpr inline double to_##base(Name quantity) { \
return quantity.raw(); \
} \
inline std::ostream& operator<<(std::ostream& os, const Name& quantity) { \
os << quantity.raw() << "_" << #base; \
return os; \
}
#define QUANTITY_LIT(Name, suffix, ratio) \
constexpr inline Name suffix = ratio; \
constexpr inline Name operator""_##suffix(long double value) { \
return Name(static_cast<double>(value) * ratio); \
} \
constexpr inline Name operator""_##suffix(unsigned long long value) { \
return Name(static_cast<double>(value) * ratio); \
} \
constexpr inline Name from_##suffix(double value) { \
return value * ratio; \
} \
constexpr inline double to_##suffix(Name quantity) { \
return quantity.convert(ratio); \
}
QUANTITY_NEW(Number, num, 0, 0, 0, 0)
// Aritmetic operators
template <typename Q>
constexpr inline Q operator+(const Q& lhs, const Q& rhs) {
return Q(lhs.raw() + rhs.raw());
}
template <typename Q>
constexpr inline Q operator-(const Q& lhs, const Q& rhs) {
return Q(lhs.raw() - rhs.raw());
}
template <typename Q1, typename Q2>
constexpr inline Multiplication<Q1, Q2>
operator*(const Q1& lhs, const Q2& rhs) {
return Multiplication<Q1, Q2>(lhs.raw() * rhs.raw());
}
template <typename Q, typename = std::enable_if_t<std::is_class<Q>::value>>
constexpr inline Q operator*(const double& lhs, const Q& rhs) {
return Q(lhs * rhs.raw());
}
template <typename Q, typename = std::enable_if_t<std::is_class<Q>::value>>
constexpr inline Q operator*(const Q& lhs, const double& rhs) {
return Q(lhs.raw() * rhs);
}
template <typename Q1, typename Q2>
constexpr inline Division<Q1, Q2>
operator/(const Q1& lhs, const Q2& rhs) {
return Division<Q1, Q2>(lhs.raw() / rhs.raw());
}
template <typename Q>
constexpr inline Quantity<std::ratio_subtract<std::ratio<0>, decltype(Q::dim.mass)>,
std::ratio_subtract<std::ratio<0>, decltype(Q::dim.length)>,
std::ratio_subtract<std::ratio<0>, decltype(Q::dim.time)>,
std::ratio_subtract<std::ratio<0>, decltype(Q::dim.angle)>>
operator/(const double& x, const Q& rhs) {
return Quantity<std::ratio_subtract<std::ratio<0>, decltype(Q::dim.mass)>,
std::ratio_subtract<std::ratio<0>, decltype(Q::dim.length)>,
std::ratio_subtract<std::ratio<0>, decltype(Q::dim.time)>,
std::ratio_subtract<std::ratio<0>, decltype(Q::dim.angle)>>(x / rhs.raw());
}
template <typename Q, typename = std::enable_if_t<std::is_class<Q>::value>>
constexpr inline Q operator/(const Q& rhs, const double& x) {
return Q(rhs.raw() / x);
}
// Comparison operators
template <typename Q>
constexpr inline bool operator==(const Q& lhs, const Q& rhs) {
return (lhs.raw() == rhs.raw());
}
template <typename Q>
constexpr inline bool operator!=(const Q& lhs, const Q& rhs) {
return (lhs.raw() != rhs.raw());
}
template <typename Q>
constexpr inline bool operator<=(const Q& lhs, const Q& rhs) {
return (lhs.raw() <= rhs.raw());
}
template <typename Q>
constexpr inline bool operator>=(const Q& lhs, const Q& rhs) {
return (lhs.raw() >= rhs.raw());
}
template <typename Q>
constexpr inline bool operator<(const Q& lhs, const Q& rhs) {
return (lhs.raw() < rhs.raw());
}
template <typename Q>
constexpr inline bool operator>(const Q& lhs, const Q& rhs) {
return (lhs.raw() > rhs.raw());
}
namespace units {
template <typename Q>
constexpr inline Q abs(const Q& lhs) {
return Q(std::abs(lhs.raw()));
}
template <typename R, typename Q>
constexpr inline Quantity<std::ratio_multiply<decltype(Q::dim.mass), R>,
std::ratio_multiply<decltype(Q::dim.length), R>,
std::ratio_multiply<decltype(Q::dim.time), R>,
std::ratio_multiply<decltype(Q::dim.angle), R>>
pow(const Q& lhs) {
return Quantity<std::ratio_multiply<decltype(Q::dim.mass), R>,
std::ratio_multiply<decltype(Q::dim.dlenth), R>,
std::ratio_multiply<decltype(Q::dim.time), R>,
std::ratio_multiply<decltype(Q::dim.angle), R>>(std::pow(lhs.raw(), double(R::num) / R::den));
}
template <int R, typename Q>
constexpr inline Quantity<std::ratio_multiply<decltype(Q::dim.mass), std::ratio<R>>,
std::ratio_multiply<decltype(Q::dim.length), std::ratio<R>>,
std::ratio_multiply<decltype(Q::dim.time), std::ratio<R>>,
std::ratio_multiply<decltype(Q::dim.angle), std::ratio<R>>>
pow(
const Quantity<decltype(Q::dim.mass),
decltype(Q::dim.length),
decltype(Q::dim.time),
decltype(Q::dim.angle)>& lhs) {
return Quantity<std::ratio_multiply<decltype(Q::dim.mass), std::ratio<R>>,
std::ratio_multiply<decltype(Q::dim.length), std::ratio<R>>,
std::ratio_multiply<decltype(Q::dim.time), std::ratio<R>>,
std::ratio_multiply<decltype(Q::dim.angle), std::ratio<R>>>(std::pow(lhs.raw(), R));
}
template <int R, typename Q>
constexpr inline Quantity<std::ratio_divide<decltype(Q::dim.mass), std::ratio<R>>,
std::ratio_divide<decltype(Q::dim.length), std::ratio<R>>,
std::ratio_divide<decltype(Q::dim.time), std::ratio<R>>,
std::ratio_divide<decltype(Q::dim.angle), std::ratio<R>>>
root(
const Quantity<decltype(Q::dim.mass),
decltype(Q::dim.length),
decltype(Q::dim.time),
decltype(Q::dim.angle)>& lhs) {
return Quantity<std::ratio_divide<decltype(Q::dim.mass), std::ratio<R>>,
std::ratio_divide<decltype(Q::dim.length), std::ratio<R>>,
std::ratio_divide<decltype(Q::dim.time), std::ratio<R>>,
std::ratio_divide<decltype(Q::dim.angle), std::ratio<R>>>(std::pow(lhs.raw(), 1.0 / R));
}
template <typename Q>
constexpr inline Quantity<std::ratio_divide<decltype(Q::dim.mass), std::ratio<2>>,
std::ratio_divide<decltype(Q::dim.length), std::ratio<2>>,
std::ratio_divide<decltype(Q::dim.time), std::ratio<2>>,
std::ratio_divide<decltype(Q::dim.angle), std::ratio<2>>>
sqrt(
const Quantity<decltype(Q::dim.mass),
decltype(Q::dim.length),
decltype(Q::dim.time),
decltype(Q::dim.angle)>& rhs) {
return Quantity<std::ratio_divide<decltype(Q::dim.mass), std::ratio<2>>,
std::ratio_divide<decltype(Q::dim.length), std::ratio<2>>,
std::ratio_divide<decltype(Q::dim.time), std::ratio<2>>,
std::ratio_divide<decltype(Q::dim.angle), std::ratio<2>>>(std::sqrt(rhs.raw()));
}
template <typename Q>
constexpr inline Quantity<std::ratio_divide<decltype(Q::dim.mass), std::ratio<3>>,
std::ratio_divide<decltype(Q::dim.length), std::ratio<3>>,
std::ratio_divide<decltype(Q::dim.time), std::ratio<3>>,
std::ratio_divide<decltype(Q::dim.angle), std::ratio<3>>>
cbrt(
const Quantity<decltype(Q::dim.mass),
decltype(Q::dim.length), decltype(Q::dim.time),
decltype(Q::dim.angle)>& rhs) {
return Quantity<std::ratio_divide<decltype(Q::dim.mass), std::ratio<3>>,
std::ratio_divide<decltype(Q::dim.length), std::ratio<3>>,
std::ratio_divide<decltype(Q::dim.time), std::ratio<3>>,
std::ratio_divide<decltype(Q::dim.angle), std::ratio<3>>>(std::cbrt(rhs.raw()));
}
template <typename Q>
constexpr inline Quantity<std::ratio_multiply<decltype(Q::dim.mass), std::ratio<2>>,
std::ratio_multiply<decltype(Q::dim.length), std::ratio<2>>,
std::ratio_multiply<decltype(Q::dim.time), std::ratio<2>>,
std::ratio_multiply<decltype(Q::dim.angle), std::ratio<2>>>
square(
const Quantity<decltype(Q::dim.mass),
decltype(Q::dim.length), decltype(Q::dim.time),
decltype(Q::dim.angle)>& rhs) {
return Quantity<std::ratio_multiply<decltype(Q::dim.mass), std::ratio<2>>,
std::ratio_multiply<decltype(Q::dim.length), std::ratio<2>>,
std::ratio_multiply<decltype(Q::dim.time), std::ratio<2>>,
std::ratio_multiply<decltype(Q::dim.angle), std::ratio<2>>>(std::pow(rhs.raw(), 2));
}
template <typename Q>
constexpr inline Quantity<std::ratio_multiply<decltype(Q::dim.mass), std::ratio<3>>,
std::ratio_multiply<decltype(Q::dim.length), std::ratio<3>>,
std::ratio_multiply<decltype(Q::dim.time), std::ratio<3>>,
std::ratio_multiply<decltype(Q::dim.angle), std::ratio<3>>>
cube(
const Quantity<decltype(Q::dim.mass),
decltype(Q::dim.length),
decltype(Q::dim.time),
decltype(Q::dim.angle)>& rhs) {
return Quantity<std::ratio_multiply<decltype(Q::dim.mass), std::ratio<3>>,
std::ratio_multiply<decltype(Q::dim.length), std::ratio<3>>,
std::ratio_multiply<decltype(Q::dim.time), std::ratio<3>>,
std::ratio_multiply<decltype(Q::dim.angle), std::ratio<3>>>(std::pow(rhs.raw(), 3));
}
template <typename Q>
constexpr inline Q hypot(const Q& lhs,
const Q& rhs) {
return Q(std::hypot(lhs.raw(), rhs.raw()));
}
template <typename Q>
constexpr inline Q mod(const Q& lhs,
const Q& rhs) {
return Q(std::fmod(lhs.raw(), rhs.raw()));
}
template <typename Q1, typename Q2>
constexpr inline Q1 copysign(const Q1& lhs,
const Q2& rhs) {
return Q1(std::copysign(lhs.raw(), rhs.raw()));
}
template <typename Q>
constexpr inline bool signbit(const Q& lhs) {
return std::signbit(lhs.raw());
}
template <typename Q>
constexpr inline Q clamp(const Q& lhs,
const Q& lo, Q& hi) {
return Q(std::clamp(lhs.raw(), lo.raw(), hi.raw()));
}
template <typename Q>
constexpr inline Q ceil(const Q& lhs,
const Q& rhs) {
return Q(std::ceil(lhs.raw() / rhs.raw()) * rhs.raw());
}
template <typename Q>
constexpr inline Q floor(const Q& lhs,
const Q& rhs) {
return Q(std::floor(lhs.raw() / rhs.raw()) * rhs.raw());
}
template <typename Q>
constexpr inline Q trunc(const Q& lhs,
const Q& rhs) {
return Q(std::trunc(lhs.raw() / rhs.raw()) * rhs.raw());
}
template <typename Q>
constexpr inline Q round(const Q& lhs,
const Q& rhs) {
return Q(std::round(lhs.raw() / rhs.raw()) * rhs.raw());
}
constexpr inline Number
sin(const Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>& rhs) {
return Number(std::sin(rhs.raw()));
}
constexpr inline Number
cos(const Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>& rhs) {
return Number(std::cos(rhs.raw()));
}
constexpr inline Number
tan(const Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>& rhs) {
return Number(std::tan(rhs.raw()));
}
constexpr inline Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>
asin(const Number& rhs) {
return Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>(
std::asin(rhs.raw()));
}
constexpr inline Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>
acos(const Number& rhs) {
return Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>(
std::acos(rhs.raw()));
}
constexpr inline Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>
atan(const Number& rhs) {
return Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>(
std::atan(rhs.raw()));
}
constexpr inline Number
sinh(const Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>& rhs) {
return Number(std::sinh(rhs.raw()));
}
constexpr inline Number
cosh(const Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>& rhs) {
return Number(std::cosh(rhs.raw()));
}
constexpr inline Number
tanh(const Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>& rhs) {
return Number(std::tanh(rhs.raw()));
}
constexpr inline Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>
asinh(const Number& rhs) {
return Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>(
std::asinh(rhs.raw()));
}
constexpr inline Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>
acosh(const Number& rhs) {
return Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>(
std::acosh(rhs.raw()));
}
constexpr inline Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>
atanh(const Number& rhs) {
return Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>(
std::atanh(rhs.raw()));
}
template <typename Q>
constexpr inline Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>
atan2(const Q& lhs, const Q& rhs) {
return Quantity<std::ratio<0>, std::ratio<0>, std::ratio<0>, std::ratio<1>>(
std::atan2(lhs.raw(), rhs.raw()));
}
} // namespace units
QUANTITY_NEW(Time, sec, 0, 0, 1, 0)
QUANTITY_LIT(Time, ms, sec / 1000)
QUANTITY_LIT(Time, min, sec * 60)
QUANTITY_LIT(Time, hr, min * 60)
QUANTITY_LIT(Time, day, hr * 24)
QUANTITY_NEW(Length, m, 0, 1, 0, 0)
QUANTITY_LIT(Length, mm, m / 1000)
QUANTITY_LIT(Length, cm, m / 100)
QUANTITY_LIT(Length, km, m * 1000)
QUANTITY_LIT(Length, in, cm * 2.54)
QUANTITY_LIT(Length, ft, in * 12)
QUANTITY_LIT(Length, yd, ft * 3)
QUANTITY_LIT(Length, mi, ft * 5280)
QUANTITY_LIT(Length, tiles, 600 * mm)
QUANTITY_NEW(Angle, rad, 0, 0, 0, 1)
QUANTITY_LIT(Angle, deg, (M_PI / 180)* rad)
QUANTITY_LIT(Angle, rot, 360 * deg)
QUANTITY_NEW(LinearVelocity, mps, 0, 1, -1, 0)
QUANTITY_LIT(LinearVelocity, cmps, cm / sec)
QUANTITY_LIT(LinearVelocity, inps, in / sec)
QUANTITY_LIT(LinearVelocity, miph, mi / hr)
QUANTITY_LIT(LinearVelocity, kmph, km / hr)
QUANTITY_NEW(AngularVelocity, radps, 0, 0, -1, 1)
QUANTITY_LIT(AngularVelocity, degps, deg / sec)
QUANTITY_LIT(AngularVelocity, rps, rot / sec)
QUANTITY_LIT(AngularVelocity, rpm, rot / min)
QUANTITY_NEW(LinearAcceleration, mps2, 0, 1, -2, 0)
QUANTITY_LIT(LinearAcceleration, cmps2, cm / sec / sec)
QUANTITY_LIT(LinearAcceleration, inps2, in / sec / sec)
QUANTITY_LIT(LinearAcceleration, miph2, mi / hr / hr)
QUANTITY_LIT(LinearAcceleration, kmph2, km / hr / hr)
QUANTITY_NEW(AngularAcceleration, radps2, 0, 0, -2, 1)
QUANTITY_LIT(AngularAcceleration, degps2, deg / sec /sec)
QUANTITY_LIT(AngularAcceleration, rps2, rot / sec / sec)
QUANTITY_LIT(AngularAcceleration, rpm2, rot / min / min)
QUANTITY_NEW(LinearJerk, mps3, 0, 1, -3, 0)
QUANTITY_LIT(LinearJerk, cmps3, cm / sec / sec / sec)
QUANTITY_LIT(LinearJerk, inps3, in / sec / sec / sec)
QUANTITY_LIT(LinearJerk, miph3, mi / hr / hr / hr)
QUANTITY_LIT(LinearJerk, kmph3, km / hr / hr / hr)
QUANTITY_NEW(AngularJerk, radps3, 0, 0, -3, 1)
QUANTITY_LIT(AngularJerk, rps3, rot / sec / sec / sec)
QUANTITY_LIT(AngularJerk, rpm3, rot / min / min / min)
QUANTITY_NEW_TAGGED(Temperature, celcius, 0, 0, 0, 0, 0)
QUANTITY_NEW_TAGGED(Voltage, volts, 0, 0, 0, 0, 1)
QUANTITY_LIT(Voltage, mvolts, volts / 1000)
template <typename Q>
Quantity<
decltype(Q::dim.mass),
decltype(Q::dim.angle),
decltype(Q::dim.time),
decltype(Q::dim.length)>
to_linear(
Quantity<decltype(Q::dim.mass),
decltype(Q::dim.length),
decltype(Q::dim.time),
decltype(Q::dim.angle)> angular,
Length diameter) {
return unit_cast<Quantity<decltype(Q::dim.mass), decltype(Q::dim.angle), decltype(Q::dim.time), decltype(Q::dim.length)>>(angular * (diameter / 2.0));
}
template <typename Q>
Quantity<
decltype(Q::dim.mass),
decltype(Q::dim.angle),
decltype(Q::dim.time),
decltype(Q::dim.length)>
to_angular(
Quantity<decltype(Q::dim.mass),
decltype(Q::dim.length),
decltype(Q::dim.time),
decltype(Q::dim.angle)> linear,
Length diameter) {
return unit_cast<Quantity<decltype(Q::dim.mass), decltype(Q::dim.angle), decltype(Q::dim.time), decltype(Q::dim.length)>>(linear / (diameter / 2.0));
}
constexpr Time FOREVER = Time(std::numeric_limits<double>::infinity());