-
Notifications
You must be signed in to change notification settings - Fork 390
/
Copy pathFrequency.json
113 lines (113 loc) · 3.12 KB
/
Frequency.json
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
{
"Name": "Frequency",
"BaseUnit": "Hertz",
"XmlDocSummary": "The number of occurrences of a repeating event per unit time.",
"BaseDimensions": {
"T": -1
},
"Units": [
{
"SingularName": "Hertz",
"PluralName": "Hertz",
"BaseUnits": {
"T": "Second"
},
"FromUnitToBaseFunc": "{x}",
"FromBaseToUnitFunc": "{x}",
"Prefixes": [ "Micro", "Milli", "Kilo", "Mega", "Giga", "Tera" ],
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "Hz" ]
},
{
"Culture": "ru-RU",
"Abbreviations": [ "Гц" ]
}
]
},
{
"SingularName": "RadianPerSecond",
"PluralName": "RadiansPerSecond",
"XmlDocSummary": "In SI units, angular frequency is normally presented with the unit radian per second, and need not express a rotational value. The unit hertz (Hz) is dimensionally equivalent, but by convention it is only used for frequency f, never for angular frequency ω. This convention is used to help avoid the confusion that arises when dealing with quantities such as frequency and angular quantities because the units of measure (such as cycle or radian) are considered to be one and hence may be omitted when expressing quantities in terms of SI units.",
"XmlDocRemarks": "https://en.wikipedia.org/wiki/Angular_frequency",
"FromUnitToBaseFunc": "{x} / (2 * Math.PI)",
"FromBaseToUnitFunc": "{x} * (2 * Math.PI)",
"OmitExtensionMethod": true,
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "rad/s" ]
},
{
"Culture": "ru-RU",
"Abbreviations": [ "рад/с" ]
}
]
},
{
"SingularName": "CyclePerMinute",
"PluralName": "CyclesPerMinute",
"BaseUnits": {
"T": "Minute"
},
"FromUnitToBaseFunc": "{x} / 60",
"FromBaseToUnitFunc": "{x} * 60",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "cpm" ]
}
]
},
{
"SingularName": "CyclePerHour",
"PluralName": "CyclesPerHour",
"BaseUnits": {
"T": "Hour"
},
"FromUnitToBaseFunc": "{x} / 3600",
"FromBaseToUnitFunc": "{x} * 3600",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "cph" ]
}
]
},
{
"SingularName": "BeatPerMinute",
"PluralName": "BeatsPerMinute",
"BaseUnits": {
"T": "Minute"
},
"FromUnitToBaseFunc": "{x} / 60",
"FromBaseToUnitFunc": "{x} * 60",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "bpm" ]
}
]
},
{
"SingularName": "PerSecond",
"PluralName": "PerSecond",
"BaseUnits": {
"T": "Second"
},
"FromUnitToBaseFunc": "{x}",
"FromBaseToUnitFunc": "{x}",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "s⁻¹" ]
},
{
"Culture": "ru-RU",
"Abbreviations": [ "с⁻¹" ]
}
]
}
]
}