forked from angularsen/UnitsNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AreaMomentOfInertia.json
100 lines (100 loc) · 2.43 KB
/
AreaMomentOfInertia.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
{
"Name": "AreaMomentOfInertia",
"BaseUnit": "MeterToTheFourth",
"XmlDocSummary": "A geometric property of an area that reflects how its points are distributed with regard to an axis.",
"BaseDimensions": {
"L": 4
},
"Units": [
{
"SingularName": "MeterToTheFourth",
"PluralName": "MetersToTheFourth",
"BaseUnits": {
"L": "Meter"
},
"FromUnitToBaseFunc": "{x}",
"FromBaseToUnitFunc": "{x}",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "m⁴", "m^4" ]
}
]
},
{
"SingularName": "DecimeterToTheFourth",
"PluralName": "DecimetersToTheFourth",
"BaseUnits": {
"L": "Decimeter"
},
"FromUnitToBaseFunc": "{x} / 1e4",
"FromBaseToUnitFunc": "{x} * 1e4",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "dm⁴", "dm^4" ]
}
]
},
{
"SingularName": "CentimeterToTheFourth",
"PluralName": "CentimetersToTheFourth",
"BaseUnits": {
"L": "Centimeter"
},
"FromUnitToBaseFunc": "{x} / 1e8",
"FromBaseToUnitFunc": "{x} * 1e8",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "cm⁴", "cm^4" ]
}
]
},
{
"SingularName": "MillimeterToTheFourth",
"PluralName": "MillimetersToTheFourth",
"BaseUnits": {
"L": "Millimeter"
},
"FromUnitToBaseFunc": "{x} / 1e12",
"FromBaseToUnitFunc": "{x} * 1e12",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "mm⁴", "mm^4" ]
}
]
},
{
"SingularName": "FootToTheFourth",
"PluralName": "FeetToTheFourth",
"BaseUnits": {
"L": "Foot"
},
"FromUnitToBaseFunc": "{x} * Math.Pow(0.3048, 4)",
"FromBaseToUnitFunc": "{x} / Math.Pow(0.3048, 4)",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "ft⁴", "ft^4" ]
}
]
},
{
"SingularName": "InchToTheFourth",
"PluralName": "InchesToTheFourth",
"BaseUnits": {
"L": "Inch"
},
"FromUnitToBaseFunc": "{x} * Math.Pow(2.54e-2, 4)",
"FromBaseToUnitFunc": "{x} / Math.Pow(2.54e-2, 4)",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "in⁴", "in^4" ]
}
]
}
]
}