|
2 | 2 |
|
3 | 3 | # <editor-fold desc="DISTANCES">
|
4 | 4 | MM = float
|
| 5 | +"""Millimeters (mm), represented as a float.""" |
5 | 6 | CM = float
|
| 7 | +"""Centimeters (cm), represented as a float.""" |
6 | 8 | M = float
|
| 9 | +"""Meters (m), represented as a float.""" |
7 | 10 | KM = float
|
| 11 | +"""Kilometers (km), represented as a float.""" |
8 | 12 | # </editor-fold>
|
9 | 13 |
|
10 | 14 | # <editor-fold desc="ROTATIONS">
|
11 | 15 | DEG = float
|
| 16 | +"""Degrees (deg), represented as a float.""" |
12 | 17 | RAD = float
|
| 18 | +"""Radians (rad), represented as a float.""" |
13 | 19 | # </editor-fold>
|
14 | 20 |
|
15 | 21 | # <editor-fold desc="WEIGHTS">
|
16 |
| -KG = float |
17 | 22 | G = float
|
| 23 | +"""Grams (g), represented as a float.""" |
| 24 | +KG = float |
| 25 | +"""Kilograms (kg), represented as a float.""" |
18 | 26 | KG_M3 = float
|
| 27 | +"""Kilograms per cubic meter (kg/m³), represented as a float.""" |
19 | 28 | KG_M = float
|
| 29 | +"""Kilograms per meter (kg/m), represented as a float.""" |
20 | 30 | # </editor-fold>
|
21 | 31 |
|
22 | 32 | # <editor-fold desc="FORCES">
|
23 | 33 | N = float
|
| 34 | +"""Newtons (N), represented as a float.""" |
24 | 35 | KN = float
|
| 36 | +"""Kilonewtons (kN), value represented as a float.""" |
25 | 37 | KN_M = float
|
| 38 | +"""Kilonewtons per meter (kN/m), represented as a float.""" |
26 | 39 | # </editor-fold>
|
27 | 40 |
|
28 | 41 | # <editor-fold desc="MOMENTS">
|
29 | 42 | NM = float
|
| 43 | +"""Newton-meters (Nm), represented as a float.""" |
30 | 44 | KNM = float
|
| 45 | +"""Kilonewton-meters (kNm), represented as a float.""" |
31 | 46 | # </editor-fold>
|
32 | 47 |
|
33 | 48 | # <editor-fold desc="STRESSES">
|
34 |
| -MPA = float |
35 | 49 | KPA = float
|
| 50 | +"""Kilopascals (KPa), represented as a float.""" |
| 51 | +MPA = float |
| 52 | +"""Megapascals (MPa), represented as a float.""" |
36 | 53 | GPA = float
|
| 54 | +"""Gigapascals (GPa), represented as a float.""" |
37 | 55 | # </editor-fold>
|
38 | 56 |
|
39 | 57 | # <editor-fold desc="AREAS">
|
40 | 58 | MM2 = float
|
| 59 | +"""Square millimeters (mm²), represented as a float.""" |
41 | 60 | MM2_M = float
|
| 61 | +"""Square millimeters per meter, (mm²/m), represented as a float.""" |
42 | 62 | CM2 = float
|
| 63 | +"""Square centimeters (cm²), represented as a float.""" |
43 | 64 | DM2 = float
|
| 65 | +"""Square decimeters (dm²), represented as a float.""" |
44 | 66 | M2 = float
|
| 67 | +"""Square meters (m²), represented as a float.""" |
45 | 68 | KM2 = float
|
| 69 | +"""Square kilometers (km²), represented as a float.""" |
46 | 70 | # </editor-fold>
|
47 | 71 |
|
48 | 72 | # <editor-fold desc="VOLUMES">
|
49 | 73 | MM3 = float
|
| 74 | +"""Cubic millimeters (mm³), represented as a float.""" |
50 | 75 | CM3 = float
|
| 76 | +"""Cubic centimeters (cm³), represented as a float.""" |
51 | 77 | M3 = float
|
| 78 | +"""Cubic meters (m³), represented as a float.""" |
52 | 79 | M3_M = float
|
| 80 | +"""Cubic meters per meter (m³/m), represented as a float.""" |
53 | 81 | # </editor-fold>
|
54 | 82 |
|
55 | 83 | # <editor-fold desc="BI-QUADRATIC">
|
56 | 84 | MM4 = float
|
| 85 | +"""Millimeters to the fourth power (mm⁴), represented as a float.""" |
57 | 86 | CM4 = float
|
| 87 | +"""Centimeters to the fourth power (cm⁴), represented as a float.""" |
58 | 88 | M4 = float
|
| 89 | +"""Meters to the fourth power (m⁴), represented as a float.""" |
59 | 90 | # </editor-fold>
|
60 | 91 |
|
61 | 92 | # <editor-fold desc="COMPOUNDS">
|
62 | 93 | N_M2 = float
|
| 94 | +"""Newton per square meter (N/m²), represented as a float.""" |
63 | 95 | KN_M2 = float
|
| 96 | +"""Kilonewton per square meter (kN/m²), represented as a float.""" |
64 | 97 | # </editor-fold>
|
65 | 98 |
|
66 | 99 | # <editor-fold desc="TIME">
|
67 |
| -HOURS = float |
68 |
| -MINUTES = float |
69 | 100 | SECONDS = float
|
| 101 | +"""Seconds (sec), represented as a float.""" |
| 102 | +MINUTES = float |
| 103 | +"""Minutes (min), represented as a float.""" |
| 104 | +HOURS = float |
| 105 | +"""Hours (h), represented as a float.""" |
70 | 106 | DAYS = float
|
| 107 | +"""Days (days), represented as a float.""" |
71 | 108 | WEEKS = float
|
| 109 | +"""Weeks (weeks), represented as a float.""" |
72 | 110 | MONTHS = float
|
| 111 | +"""Months (months), represented as a float.""" |
73 | 112 | YEARS = float
|
| 113 | +"""Years (years), represented as a float.""" |
74 | 114 | # </editor-fold>
|
75 | 115 |
|
76 |
| -# <editor-fold desc="Ratio's"> |
77 |
| -RATIO = float |
| 116 | +# <editor-fold desc="Percentages"> |
78 | 117 | PERCENTAGE = float
|
79 |
| -DIMENSIONLESS = float |
| 118 | +"""Percentage (%), represented as a float.""" |
80 | 119 | PER_MILLE = float
|
| 120 | +"""Per mille (‰), represented as a float.""" |
| 121 | +# </editor-fold> |
| 122 | + |
| 123 | +# <editor-fold desc="Ratio's"> |
| 124 | +RATIO = float |
| 125 | +"""Ratio, represented as a float.""" |
81 | 126 | PER_DEGREE = float
|
| 127 | +"""Per degree (1/°), represented as a float.""" |
| 128 | +DIMENSIONLESS = float |
| 129 | +"""Dimensionless, represented as a float.""" |
82 | 130 | # </editor-fold>
|
0 commit comments