forked from angularsen/UnitsNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Molality.json
45 lines (45 loc) · 1.03 KB
/
Molality.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
{
"Name": "Molality",
"BaseUnit": "MolePerKilogram",
"XmlDocSummary": "Molality is a measure of the amount of solute in a solution relative to a given mass of solvent.",
"XmlDocRemarks": "https://en.wikipedia.org/wiki/Molality",
"BaseDimensions": {
"N": 1,
"M": -1
},
"Units": [
{
"SingularName": "MolePerKilogram",
"PluralName": "MolesPerKilogram",
"BaseUnits": {
"N": "Mole",
"M": "Kilogram"
},
"FromUnitToBaseFunc": "{x}",
"FromBaseToUnitFunc": "{x}",
"Prefixes": [ "Milli" ],
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "mol/kg" ]
}
]
},
{
"SingularName": "MolePerGram",
"PluralName": "MolesPerGram",
"BaseUnits": {
"N": "Mole",
"M": "Gram"
},
"FromUnitToBaseFunc": "{x} / 1e-3",
"FromBaseToUnitFunc": "{x} * 1e-3",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "mol/g" ]
}
]
}
]
}