forked from angularsen/UnitsNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Compressibility.json
101 lines (101 loc) · 2.53 KB
/
Compressibility.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
{
"Name": "Compressibility",
"BaseUnit": "InversePascal",
"XmlDoc": "Compressibility is the measure of the relative volume change of a fluid or solid in response to pressure changes.",
"BaseDimensions": {
"L": 1,
"M": -1,
"T": 2
},
"Units": [
{
"SingularName": "InversePascal",
"PluralName": "InversePascals",
"BaseUnits": {
"L": "Meter",
"M": "Kilogram",
"T": "Second"
},
"FromUnitToBaseFunc": "{x}",
"FromBaseToUnitFunc": "{x}",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "Pa⁻¹", "1/Pa" ]
}
]
},
{
"SingularName": "InverseKilopascal",
"PluralName": "InverseKilopascals",
"FromUnitToBaseFunc": "{x} * 1e3",
"FromBaseToUnitFunc": "{x} / 1e3",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "kPa⁻¹", "1/kPa" ]
}
]
},
{
"SingularName": "InverseMegapascal",
"PluralName": "InverseMegapascals",
"FromUnitToBaseFunc": "{x} * 1e6",
"FromBaseToUnitFunc": "{x} / 1e6",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "MPa⁻¹", "1/MPa" ]
}
]
},
{
"SingularName": "InverseAtmosphere",
"PluralName": "InverseAtmospheres",
"FromUnitToBaseFunc": "{x} * 101325",
"FromBaseToUnitFunc": "{x} / 101325",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "atm⁻¹", "1/atm" ]
}
]
},
{
"SingularName": "InverseMillibar",
"PluralName": "InverseMillibars",
"FromUnitToBaseFunc": "{x} * 100",
"FromBaseToUnitFunc": "{x} / 100",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "mbar⁻¹", "1/mbar" ]
}
]
},
{
"SingularName": "InverseBar",
"PluralName": "InverseBars",
"FromUnitToBaseFunc": "{x} * 1e5",
"FromBaseToUnitFunc": "{x} / 1e5",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "bar⁻¹", "1/bar" ]
}
]
},
{
"SingularName": "InversePoundForcePerSquareInch",
"PluralName": "InversePoundsForcePerSquareInch",
"FromUnitToBaseFunc": "{x} * 6.894757293168361e3",
"FromBaseToUnitFunc": "{x} / 6.894757293168361e3",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "psi⁻¹", "1/psi" ]
}
]
}
]
}