Skip to content

Commit 4431e85

Browse files
authored
Rename SpecificFuelConsumption.GramPerKiloNewtonSecond to GramPerKilonewtonSecond (#1491)
Rename `SpecificFuelConsumption.GramPerKiloNewtonSecond` to `GramPerKilonewtonSecond` (part of #1200)
1 parent 9fb882e commit 4431e85

File tree

11 files changed

+207
-207
lines changed

11 files changed

+207
-207
lines changed

Common/UnitDefinitions/SpecificFuelConsumption.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "SpecificFuelConsumption",
3-
"BaseUnit": "GramPerKiloNewtonSecond",
3+
"BaseUnit": "GramPerKilonewtonSecond",
44
"XmlDocSummary": "SFC is the fuel efficiency of an engine design with respect to thrust output",
55
"XmlDocRemarks": "https://en.wikipedia.org/wiki/Thrust-specific_fuel_consumption",
66
"BaseDimensions": {
@@ -33,8 +33,8 @@
3333
]
3434
},
3535
{
36-
"SingularName": "GramPerKiloNewtonSecond",
37-
"PluralName": "GramsPerKiloNewtonSecond",
36+
"SingularName": "GramPerKilonewtonSecond",
37+
"PluralName": "GramsPerKilonewtonSecond",
3838
"BaseUnits": {
3939
"L": "Meter",
4040
"T": "Second"

Common/UnitEnumValues.g.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1331,9 +1331,9 @@
13311331
"MegajoulePerKilogramKelvin": 9
13321332
},
13331333
"SpecificFuelConsumption": {
1334-
"GramPerKiloNewtonSecond": 1,
1334+
"GramPerKilonewtonSecond": 1,
13351335
"KilogramPerKilogramForceHour": 2,
1336-
"KilogramPerKiloNewtonSecond": 3,
1336+
"KilogramPerKilonewtonSecond": 3,
13371337
"PoundMassPerPoundForceHour": 4
13381338
},
13391339
"SpecificVolume": {

UnitsNet.NanoFramework/GeneratedCode/Quantities/SpecificFuelConsumption.g.cs

+13-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UnitsNet.NanoFramework/GeneratedCode/Units/SpecificFuelConsumptionUnit.g.cs

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UnitsNet.NumberExtensions.Tests/GeneratedCode/NumberToSpecificFuelConsumptionExtensionsTest.g.cs

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UnitsNet.NumberExtensions/GeneratedCode/NumberToSpecificFuelConsumptionExtensions.g.cs

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UnitsNet.Tests/CustomCode/SpecificFuelConsumptionTests.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ public class SpecificFuelConsumptionTests : SpecificFuelConsumptionTestsBase
2727
// Override properties in base class here
2828
protected override bool SupportsSIUnitSystem => false;
2929

30-
protected override double GramsPerKiloNewtonSecondInOneGramPerKiloNewtonSecond => 1;
30+
protected override double GramsPerKilonewtonSecondInOneGramPerKilonewtonSecond => 1;
3131

32-
protected override double KilogramsPerKiloNewtonSecondInOneGramPerKiloNewtonSecond => 1e-3;
32+
protected override double KilogramsPerKilonewtonSecondInOneGramPerKilonewtonSecond => 1e-3;
3333

34-
protected override double PoundsMassPerPoundForceHourInOneGramPerKiloNewtonSecond => 0.03529827;
34+
protected override double PoundsMassPerPoundForceHourInOneGramPerKilonewtonSecond => 0.03529827;
3535

36-
protected override double KilogramsPerKilogramForceHourInOneGramPerKiloNewtonSecond => 0.03529827;
36+
protected override double KilogramsPerKilogramForceHourInOneGramPerKilonewtonSecond => 0.03529827;
3737
}
3838
}

0 commit comments

Comments
 (0)