forked from angularsen/UnitsNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MassFraction.json
106 lines (106 loc) · 2.71 KB
/
MassFraction.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
{
"Name": "MassFraction",
"BaseUnit": "DecimalFraction",
"XmlDocSummary": "The mass fraction is defined as the mass of a constituent divided by the total mass of the mixture.",
"XmlDocRemarks": "https://en.wikipedia.org/wiki/Mass_fraction_(chemistry)",
"Units": [
{
"SingularName": "DecimalFraction",
"PluralName": "DecimalFractions",
"FromUnitToBaseFunc": "{x}",
"FromBaseToUnitFunc": "{x}",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "" ]
}
]
},
{
"SingularName": "GramPerGram",
"PluralName": "GramsPerGram",
"FromUnitToBaseFunc": "{x}",
"FromBaseToUnitFunc": "{x}",
"Prefixes": [ "Nano", "Micro", "Milli", "Centi", "Deci", "Deca", "Hecto", "Kilo" ],
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "g/g" ]
}
]
},
{
"SingularName": "GramPerKilogram",
"PluralName": "GramsPerKilogram",
"FromUnitToBaseFunc": "{x} / 1e3",
"FromBaseToUnitFunc": "{x} * 1e3",
"Prefixes": [ "Nano", "Micro", "Milli", "Centi", "Deci", "Deca", "Hecto", "Kilo" ],
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "g/kg" ]
}
]
},
{
"SingularName": "Percent",
"PluralName": "Percent",
"FromUnitToBaseFunc": "{x} / 1e2",
"FromBaseToUnitFunc": "{x} * 1e2",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "%", "% (w/w)" ]
}
]
},
{
"SingularName": "PartPerThousand",
"PluralName": "PartsPerThousand",
"FromUnitToBaseFunc": "{x} / 1e3",
"FromBaseToUnitFunc": "{x} * 1e3",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "‰" ]
}
]
},
{
"SingularName": "PartPerMillion",
"PluralName": "PartsPerMillion",
"FromUnitToBaseFunc": "{x} / 1e6",
"FromBaseToUnitFunc": "{x} * 1e6",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "ppm" ]
}
]
},
{
"SingularName": "PartPerBillion",
"PluralName": "PartsPerBillion",
"FromUnitToBaseFunc": "{x} / 1e9",
"FromBaseToUnitFunc": "{x} * 1e9",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "ppb" ]
}
]
},
{
"SingularName": "PartPerTrillion",
"PluralName": "PartsPerTrillion",
"FromUnitToBaseFunc": "{x} / 1e12",
"FromBaseToUnitFunc": "{x} * 1e12",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "ppt" ]
}
]
}
]
}