-
Notifications
You must be signed in to change notification settings - Fork 382
/
RotationalAcceleration.json
58 lines (58 loc) · 1.53 KB
/
RotationalAcceleration.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
{
"Name": "RotationalAcceleration",
"BaseUnit": "RadianPerSecondSquared",
"XmlDocSummary": "Angular acceleration is the rate of change of rotational speed.",
"BaseDimensions": {
"T": -2
},
"Units": [
{
"SingularName": "RadianPerSecondSquared",
"PluralName": "RadiansPerSecondSquared",
"FromUnitToBaseFunc": "{x}",
"FromBaseToUnitFunc": "{x}",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "rad/s²" ]
}
]
},
{
"SingularName": "DegreePerSecondSquared",
"PluralName": "DegreesPerSecondSquared",
"FromUnitToBaseFunc": "(Math.PI / 180) * {x}",
"FromBaseToUnitFunc": "(180 / Math.PI) * {x}",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "°/s²", "deg/s²" ]
}
]
},
{
"SingularName": "RevolutionPerMinutePerSecond",
"PluralName": "RevolutionsPerMinutePerSecond",
"FromUnitToBaseFunc": "((2 * Math.PI) / 60) * {x}",
"FromBaseToUnitFunc": "(60 / (2 * Math.PI)) * {x}",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "rpm/s" ]
}
]
},
{
"SingularName": "RevolutionPerSecondSquared",
"PluralName": "RevolutionsPerSecondSquared",
"FromUnitToBaseFunc": "(2 * Math.PI) * {x}",
"FromBaseToUnitFunc": "(1 / (2 * Math.PI)) * {x}",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "r/s²" ]
}
]
}
]
}