Skip to content

Commit ad07cc4

Browse files
committed
Add StandardVolumeFlow quantity (#724)
1 parent 9070996 commit ad07cc4

File tree

9 files changed

+157
-0
lines changed

9 files changed

+157
-0
lines changed
Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
{
2+
"Name": "StandardVolumeFlow",
3+
"BaseUnit": "StandardCubicMeterPerSecond",
4+
"XmlDoc": "The molar flow rate of a gas corrected to standardized conditions of temperature and pressure thus representing a fixed number of moles of gas regardless of composition and actual flow conditions.",
5+
"BaseDimensions": {
6+
"M": 1,
7+
"T": -1
8+
},
9+
"Units": [
10+
{
11+
"SingularName": "StandardCubicMeterPerSecond",
12+
"PluralName": "StandardCubicMetersPerSecond",
13+
"FromUnitToBaseFunc": "x",
14+
"FromBaseToUnitFunc": "x",
15+
"Localization": [
16+
{
17+
"Culture": "en-US",
18+
"Abbreviations": [ "Sm³/s" ]
19+
}
20+
]
21+
},
22+
{
23+
"SingularName": "StandardCubicMeterPerMinute",
24+
"PluralName": "StandardCubicMetersPerMinute",
25+
"FromUnitToBaseFunc": "x/60",
26+
"FromBaseToUnitFunc": "x*60",
27+
"Localization": [
28+
{
29+
"Culture": "en-US",
30+
"Abbreviations": [ "Sm³/min" ]
31+
}
32+
]
33+
},
34+
{
35+
"SingularName": "StandardCubicMeterPerHour",
36+
"PluralName": "StandardCubicMetersPerHour",
37+
"FromUnitToBaseFunc": "x/3600",
38+
"FromBaseToUnitFunc": "x*3600",
39+
"Localization": [
40+
{
41+
"Culture": "en-US",
42+
"Abbreviations": [ "Sm³/h" ]
43+
}
44+
]
45+
},
46+
{
47+
"SingularName": "StandardCubicMeterPerDay",
48+
"PluralName": "StandardCubicMetersPerDay",
49+
"FromUnitToBaseFunc": "x/86400",
50+
"FromBaseToUnitFunc": "x*86400",
51+
"Localization": [
52+
{
53+
"Culture": "en-US",
54+
"Abbreviations": [ "Sm³/d" ]
55+
}
56+
]
57+
},
58+
{
59+
"SingularName": "StandardCubicCentimeterPerMinute",
60+
"PluralName": "StandardCubicCentimetersPerMinute",
61+
"FromUnitToBaseFunc": "x*1.6666666666667e-8",
62+
"FromBaseToUnitFunc": "x/1.6666666666667e-8",
63+
"Localization": [
64+
{
65+
"Culture": "en-US",
66+
"Abbreviations": [ "sccm" ]
67+
}
68+
]
69+
},
70+
{
71+
"SingularName": "StandardCubicFootPerSecond",
72+
"PluralName": "StandardCubicFeetPerSecond",
73+
"FromUnitToBaseFunc": "x/35.314666721",
74+
"FromBaseToUnitFunc": "x*35.314666721",
75+
"Localization": [
76+
{
77+
"Culture": "en-US",
78+
"Abbreviations": [ "Sft³/s" ]
79+
}
80+
]
81+
},
82+
{
83+
"SingularName": "StandardCubicFootPerMinute",
84+
"PluralName": "StandardCubicFeetPerMinute",
85+
"FromUnitToBaseFunc": "x/2118.88000326",
86+
"FromBaseToUnitFunc": "x*2118.88000326",
87+
"Localization": [
88+
{
89+
"Culture": "en-US",
90+
"Abbreviations": [ "scfm" ]
91+
}
92+
]
93+
},
94+
{
95+
"SingularName": "StandardCubicFootPerHour",
96+
"PluralName": "StandardCubicFeetPerHour",
97+
"FromUnitToBaseFunc": "x*7.8657907199999087346816086183876e-6",
98+
"FromBaseToUnitFunc": "x/7.8657907199999087346816086183876e-6",
99+
"Localization": [
100+
{
101+
"Culture": "en-US",
102+
"Abbreviations": [ "scfh" ]
103+
}
104+
]
105+
}
106+
]
107+
}

UnitsNet.Tests/GeneratedCode/IQuantityTests.g.cs

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UnitsNet.WindowsRuntimeComponent/GeneratedCode/Quantity.g.cs

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UnitsNet.WindowsRuntimeComponent/GeneratedCode/QuantityType.g.cs

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UnitsNet.WindowsRuntimeComponent/GeneratedCode/UnitAbbreviationsCache.g.cs

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UnitsNet/GeneratedCode/Quantity.g.cs

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UnitsNet/GeneratedCode/QuantityType.g.cs

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UnitsNet/GeneratedCode/UnitAbbreviationsCache.g.cs

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UnitsNet/GeneratedCode/UnitConverter.g.cs

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)