@@ -172,6 +172,9 @@ private static readonly (string CultureName, Type UnitType, int UnitValue, strin
172172 ( "en-US" , typeof ( BrakeSpecificFuelConsumptionUnit ) , ( int ) BrakeSpecificFuelConsumptionUnit . KilogramPerJoule , new string [ ] { "kg/J" } ) ,
173173 ( "en-US" , typeof ( BrakeSpecificFuelConsumptionUnit ) , ( int ) BrakeSpecificFuelConsumptionUnit . PoundPerMechanicalHorsepowerHour , new string [ ] { "lb/hph" } ) ,
174174 ( "en-US" , typeof ( CapacitanceUnit ) , ( int ) CapacitanceUnit . Farad , new string [ ] { "F" } ) ,
175+ ( "en-US" , typeof ( CoefficientOfThermalExpansionUnit ) , ( int ) CoefficientOfThermalExpansionUnit . InverseDegreeCelsius , new string [ ] { "°C⁻¹" , "1/°C" } ) ,
176+ ( "en-US" , typeof ( CoefficientOfThermalExpansionUnit ) , ( int ) CoefficientOfThermalExpansionUnit . InverseDegreeFahrenheit , new string [ ] { "°F⁻¹" , "1/°F" } ) ,
177+ ( "en-US" , typeof ( CoefficientOfThermalExpansionUnit ) , ( int ) CoefficientOfThermalExpansionUnit . InverseKelvin , new string [ ] { "K⁻¹" , "1/K" } ) ,
175178 ( "en-US" , typeof ( DensityUnit ) , ( int ) DensityUnit . CentigramPerDeciliter , new string [ ] { "cg/dl" } ) ,
176179 ( "en-US" , typeof ( DensityUnit ) , ( int ) DensityUnit . CentigramPerLiter , new string [ ] { "cg/L" } ) ,
177180 ( "en-US" , typeof ( DensityUnit ) , ( int ) DensityUnit . CentigramPerMilliliter , new string [ ] { "cg/ml" } ) ,
@@ -546,10 +549,12 @@ private static readonly (string CultureName, Type UnitType, int UnitValue, strin
546549 ( "ru-RU" , typeof ( MassFlowUnit ) , ( int ) MassFlowUnit . KilogramPerHour , new string [ ] { "кг/ч" } ) ,
547550 ( "en-US" , typeof ( MassFlowUnit ) , ( int ) MassFlowUnit . KilogramPerSecond , new string [ ] { "kg/S" } ) ,
548551 ( "en-US" , typeof ( MassFlowUnit ) , ( int ) MassFlowUnit . MegapoundPerHour , new string [ ] { "Mlb/h" } ) ,
552+ ( "en-US" , typeof ( MassFlowUnit ) , ( int ) MassFlowUnit . MegapoundPerMinute , new string [ ] { "Mlb/min" } ) ,
549553 ( "en-US" , typeof ( MassFlowUnit ) , ( int ) MassFlowUnit . MicrogramPerSecond , new string [ ] { "µg/S" } ) ,
550554 ( "en-US" , typeof ( MassFlowUnit ) , ( int ) MassFlowUnit . MilligramPerSecond , new string [ ] { "mg/S" } ) ,
551555 ( "en-US" , typeof ( MassFlowUnit ) , ( int ) MassFlowUnit . NanogramPerSecond , new string [ ] { "ng/S" } ) ,
552556 ( "en-US" , typeof ( MassFlowUnit ) , ( int ) MassFlowUnit . PoundPerHour , new string [ ] { "lb/h" } ) ,
557+ ( "en-US" , typeof ( MassFlowUnit ) , ( int ) MassFlowUnit . PoundPerMinute , new string [ ] { "lb/min" } ) ,
553558 ( "en-US" , typeof ( MassFlowUnit ) , ( int ) MassFlowUnit . ShortTonPerHour , new string [ ] { "short tn/h" } ) ,
554559 ( "en-US" , typeof ( MassFlowUnit ) , ( int ) MassFlowUnit . TonnePerDay , new string [ ] { "t/d" } ) ,
555560 ( "en-US" , typeof ( MassFlowUnit ) , ( int ) MassFlowUnit . TonnePerHour , new string [ ] { "t/h" } ) ,
@@ -981,6 +986,8 @@ private static readonly (string CultureName, Type UnitType, int UnitValue, strin
981986 ( "ru-RU" , typeof ( VolumeUnit ) , ( int ) VolumeUnit . KilocubicMeter , new string [ ] { "kм³" } ) ,
982987 ( "en-US" , typeof ( VolumeUnit ) , ( int ) VolumeUnit . KiloimperialGallon , new string [ ] { "kgal (imp.)" } ) ,
983988 ( "ru-RU" , typeof ( VolumeUnit ) , ( int ) VolumeUnit . KiloimperialGallon , new string [ ] { "kАнглийский галлон" } ) ,
989+ ( "en-US" , typeof ( VolumeUnit ) , ( int ) VolumeUnit . Kiloliter , new string [ ] { "kl" } ) ,
990+ ( "ru-RU" , typeof ( VolumeUnit ) , ( int ) VolumeUnit . Kiloliter , new string [ ] { "кл" } ) ,
984991 ( "en-US" , typeof ( VolumeUnit ) , ( int ) VolumeUnit . KilousGallon , new string [ ] { "kgal (U.S.)" } ) ,
985992 ( "ru-RU" , typeof ( VolumeUnit ) , ( int ) VolumeUnit . KilousGallon , new string [ ] { "kАмериканский галлон" } ) ,
986993 ( "en-US" , typeof ( VolumeUnit ) , ( int ) VolumeUnit . Liter , new string [ ] { "l" } ) ,
0 commit comments