@@ -127,7 +127,7 @@ public static BaseDimensions BaseDimensions
127
127
/// <summary>
128
128
/// Get VolumeFlow in CentilitersPerMinute.
129
129
/// </summary>
130
- public double CentilitersPerMinute => As ( VolumeFlowUnit . CentilitersPerMinute ) ;
130
+ public double CentilitersPerMinute => As ( VolumeFlowUnit . CentiliterPerMinute ) ;
131
131
132
132
/// <summary>
133
133
/// Get VolumeFlow in CubicDecimetersPerMinute.
@@ -182,37 +182,37 @@ public static BaseDimensions BaseDimensions
182
182
/// <summary>
183
183
/// Get VolumeFlow in DecilitersPerMinute.
184
184
/// </summary>
185
- public double DecilitersPerMinute => As ( VolumeFlowUnit . DecilitersPerMinute ) ;
185
+ public double DecilitersPerMinute => As ( VolumeFlowUnit . DeciliterPerMinute ) ;
186
186
187
187
/// <summary>
188
188
/// Get VolumeFlow in KilolitersPerMinute.
189
189
/// </summary>
190
- public double KilolitersPerMinute => As ( VolumeFlowUnit . KilolitersPerMinute ) ;
190
+ public double KilolitersPerMinute => As ( VolumeFlowUnit . KiloliterPerMinute ) ;
191
191
192
192
/// <summary>
193
193
/// Get VolumeFlow in LitersPerHour.
194
194
/// </summary>
195
- public double LitersPerHour => As ( VolumeFlowUnit . LitersPerHour ) ;
195
+ public double LitersPerHour => As ( VolumeFlowUnit . LiterPerHour ) ;
196
196
197
197
/// <summary>
198
198
/// Get VolumeFlow in LitersPerMinute.
199
199
/// </summary>
200
- public double LitersPerMinute => As ( VolumeFlowUnit . LitersPerMinute ) ;
200
+ public double LitersPerMinute => As ( VolumeFlowUnit . LiterPerMinute ) ;
201
201
202
202
/// <summary>
203
203
/// Get VolumeFlow in LitersPerSecond.
204
204
/// </summary>
205
- public double LitersPerSecond => As ( VolumeFlowUnit . LitersPerSecond ) ;
205
+ public double LitersPerSecond => As ( VolumeFlowUnit . LiterPerSecond ) ;
206
206
207
207
/// <summary>
208
208
/// Get VolumeFlow in MicrolitersPerMinute.
209
209
/// </summary>
210
- public double MicrolitersPerMinute => As ( VolumeFlowUnit . MicrolitersPerMinute ) ;
210
+ public double MicrolitersPerMinute => As ( VolumeFlowUnit . MicroliterPerMinute ) ;
211
211
212
212
/// <summary>
213
213
/// Get VolumeFlow in MillilitersPerMinute.
214
214
/// </summary>
215
- public double MillilitersPerMinute => As ( VolumeFlowUnit . MillilitersPerMinute ) ;
215
+ public double MillilitersPerMinute => As ( VolumeFlowUnit . MilliliterPerMinute ) ;
216
216
217
217
/// <summary>
218
218
/// Get VolumeFlow in MillionUsGallonsPerDay.
@@ -222,37 +222,37 @@ public static BaseDimensions BaseDimensions
222
222
/// <summary>
223
223
/// Get VolumeFlow in NanolitersPerMinute.
224
224
/// </summary>
225
- public double NanolitersPerMinute => As ( VolumeFlowUnit . NanolitersPerMinute ) ;
225
+ public double NanolitersPerMinute => As ( VolumeFlowUnit . NanoliterPerMinute ) ;
226
226
227
227
/// <summary>
228
228
/// Get VolumeFlow in OilBarrelsPerDay.
229
229
/// </summary>
230
- public double OilBarrelsPerDay => As ( VolumeFlowUnit . OilBarrelsPerDay ) ;
230
+ public double OilBarrelsPerDay => As ( VolumeFlowUnit . OilBarrelPerDay ) ;
231
231
232
232
/// <summary>
233
233
/// Get VolumeFlow in OilBarrelsPerHour.
234
234
/// </summary>
235
- public double OilBarrelsPerHour => As ( VolumeFlowUnit . OilBarrelsPerHour ) ;
235
+ public double OilBarrelsPerHour => As ( VolumeFlowUnit . OilBarrelPerHour ) ;
236
236
237
237
/// <summary>
238
238
/// Get VolumeFlow in OilBarrelsPerMinute.
239
239
/// </summary>
240
- public double OilBarrelsPerMinute => As ( VolumeFlowUnit . OilBarrelsPerMinute ) ;
240
+ public double OilBarrelsPerMinute => As ( VolumeFlowUnit . OilBarrelPerMinute ) ;
241
241
242
242
/// <summary>
243
243
/// Get VolumeFlow in UsGallonsPerHour.
244
244
/// </summary>
245
- public double UsGallonsPerHour => As ( VolumeFlowUnit . UsGallonsPerHour ) ;
245
+ public double UsGallonsPerHour => As ( VolumeFlowUnit . UsGallonPerHour ) ;
246
246
247
247
/// <summary>
248
248
/// Get VolumeFlow in UsGallonsPerMinute.
249
249
/// </summary>
250
- public double UsGallonsPerMinute => As ( VolumeFlowUnit . UsGallonsPerMinute ) ;
250
+ public double UsGallonsPerMinute => As ( VolumeFlowUnit . UsGallonPerMinute ) ;
251
251
252
252
/// <summary>
253
253
/// Get VolumeFlow in UsGallonsPerSecond.
254
254
/// </summary>
255
- public double UsGallonsPerSecond => As ( VolumeFlowUnit . UsGallonsPerSecond ) ;
255
+ public double UsGallonsPerSecond => As ( VolumeFlowUnit . UsGallonPerSecond ) ;
256
256
257
257
#endregion
258
258
@@ -274,7 +274,7 @@ public static VolumeFlow FromCentilitersPerMinute(QuantityValue centiliterspermi
274
274
#endif
275
275
{
276
276
double value = ( double ) centilitersperminute ;
277
- return new VolumeFlow ( value , VolumeFlowUnit . CentilitersPerMinute ) ;
277
+ return new VolumeFlow ( value , VolumeFlowUnit . CentiliterPerMinute ) ;
278
278
}
279
279
280
280
/// <summary>
@@ -428,7 +428,7 @@ public static VolumeFlow FromDecilitersPerMinute(QuantityValue decilitersperminu
428
428
#endif
429
429
{
430
430
double value = ( double ) decilitersperminute ;
431
- return new VolumeFlow ( value , VolumeFlowUnit . DecilitersPerMinute ) ;
431
+ return new VolumeFlow ( value , VolumeFlowUnit . DeciliterPerMinute ) ;
432
432
}
433
433
434
434
/// <summary>
@@ -442,7 +442,7 @@ public static VolumeFlow FromKilolitersPerMinute(QuantityValue kilolitersperminu
442
442
#endif
443
443
{
444
444
double value = ( double ) kilolitersperminute ;
445
- return new VolumeFlow ( value , VolumeFlowUnit . KilolitersPerMinute ) ;
445
+ return new VolumeFlow ( value , VolumeFlowUnit . KiloliterPerMinute ) ;
446
446
}
447
447
448
448
/// <summary>
@@ -456,7 +456,7 @@ public static VolumeFlow FromLitersPerHour(QuantityValue litersperhour)
456
456
#endif
457
457
{
458
458
double value = ( double ) litersperhour ;
459
- return new VolumeFlow ( value , VolumeFlowUnit . LitersPerHour ) ;
459
+ return new VolumeFlow ( value , VolumeFlowUnit . LiterPerHour ) ;
460
460
}
461
461
462
462
/// <summary>
@@ -470,7 +470,7 @@ public static VolumeFlow FromLitersPerMinute(QuantityValue litersperminute)
470
470
#endif
471
471
{
472
472
double value = ( double ) litersperminute ;
473
- return new VolumeFlow ( value , VolumeFlowUnit . LitersPerMinute ) ;
473
+ return new VolumeFlow ( value , VolumeFlowUnit . LiterPerMinute ) ;
474
474
}
475
475
476
476
/// <summary>
@@ -484,7 +484,7 @@ public static VolumeFlow FromLitersPerSecond(QuantityValue literspersecond)
484
484
#endif
485
485
{
486
486
double value = ( double ) literspersecond ;
487
- return new VolumeFlow ( value , VolumeFlowUnit . LitersPerSecond ) ;
487
+ return new VolumeFlow ( value , VolumeFlowUnit . LiterPerSecond ) ;
488
488
}
489
489
490
490
/// <summary>
@@ -498,7 +498,7 @@ public static VolumeFlow FromMicrolitersPerMinute(QuantityValue microliterspermi
498
498
#endif
499
499
{
500
500
double value = ( double ) microlitersperminute ;
501
- return new VolumeFlow ( value , VolumeFlowUnit . MicrolitersPerMinute ) ;
501
+ return new VolumeFlow ( value , VolumeFlowUnit . MicroliterPerMinute ) ;
502
502
}
503
503
504
504
/// <summary>
@@ -512,7 +512,7 @@ public static VolumeFlow FromMillilitersPerMinute(QuantityValue milliliterspermi
512
512
#endif
513
513
{
514
514
double value = ( double ) millilitersperminute ;
515
- return new VolumeFlow ( value , VolumeFlowUnit . MillilitersPerMinute ) ;
515
+ return new VolumeFlow ( value , VolumeFlowUnit . MilliliterPerMinute ) ;
516
516
}
517
517
518
518
/// <summary>
@@ -540,7 +540,7 @@ public static VolumeFlow FromNanolitersPerMinute(QuantityValue nanolitersperminu
540
540
#endif
541
541
{
542
542
double value = ( double ) nanolitersperminute ;
543
- return new VolumeFlow ( value , VolumeFlowUnit . NanolitersPerMinute ) ;
543
+ return new VolumeFlow ( value , VolumeFlowUnit . NanoliterPerMinute ) ;
544
544
}
545
545
546
546
/// <summary>
@@ -554,7 +554,7 @@ public static VolumeFlow FromOilBarrelsPerDay(QuantityValue oilbarrelsperday)
554
554
#endif
555
555
{
556
556
double value = ( double ) oilbarrelsperday ;
557
- return new VolumeFlow ( value , VolumeFlowUnit . OilBarrelsPerDay ) ;
557
+ return new VolumeFlow ( value , VolumeFlowUnit . OilBarrelPerDay ) ;
558
558
}
559
559
560
560
/// <summary>
@@ -568,7 +568,7 @@ public static VolumeFlow FromOilBarrelsPerHour(QuantityValue oilbarrelsperhour)
568
568
#endif
569
569
{
570
570
double value = ( double ) oilbarrelsperhour ;
571
- return new VolumeFlow ( value , VolumeFlowUnit . OilBarrelsPerHour ) ;
571
+ return new VolumeFlow ( value , VolumeFlowUnit . OilBarrelPerHour ) ;
572
572
}
573
573
574
574
/// <summary>
@@ -582,7 +582,7 @@ public static VolumeFlow FromOilBarrelsPerMinute(QuantityValue oilbarrelsperminu
582
582
#endif
583
583
{
584
584
double value = ( double ) oilbarrelsperminute ;
585
- return new VolumeFlow ( value , VolumeFlowUnit . OilBarrelsPerMinute ) ;
585
+ return new VolumeFlow ( value , VolumeFlowUnit . OilBarrelPerMinute ) ;
586
586
}
587
587
588
588
/// <summary>
@@ -596,7 +596,7 @@ public static VolumeFlow FromUsGallonsPerHour(QuantityValue usgallonsperhour)
596
596
#endif
597
597
{
598
598
double value = ( double ) usgallonsperhour ;
599
- return new VolumeFlow ( value , VolumeFlowUnit . UsGallonsPerHour ) ;
599
+ return new VolumeFlow ( value , VolumeFlowUnit . UsGallonPerHour ) ;
600
600
}
601
601
602
602
/// <summary>
@@ -610,7 +610,7 @@ public static VolumeFlow FromUsGallonsPerMinute(QuantityValue usgallonsperminute
610
610
#endif
611
611
{
612
612
double value = ( double ) usgallonsperminute ;
613
- return new VolumeFlow ( value , VolumeFlowUnit . UsGallonsPerMinute ) ;
613
+ return new VolumeFlow ( value , VolumeFlowUnit . UsGallonPerMinute ) ;
614
614
}
615
615
616
616
/// <summary>
@@ -624,7 +624,7 @@ public static VolumeFlow FromUsGallonsPerSecond(QuantityValue usgallonspersecond
624
624
#endif
625
625
{
626
626
double value = ( double ) usgallonspersecond ;
627
- return new VolumeFlow ( value , VolumeFlowUnit . UsGallonsPerSecond ) ;
627
+ return new VolumeFlow ( value , VolumeFlowUnit . UsGallonPerSecond ) ;
628
628
}
629
629
630
630
@@ -775,7 +775,7 @@ private double AsBaseUnit()
775
775
{
776
776
switch ( Unit )
777
777
{
778
- case VolumeFlowUnit . CentilitersPerMinute : return ( _value / 60000.00000 ) * 1e-2d ;
778
+ case VolumeFlowUnit . CentiliterPerMinute : return ( _value / 60000.00000 ) * 1e-2d ;
779
779
case VolumeFlowUnit . CubicDecimeterPerMinute : return _value / 60000.00000 ;
780
780
case VolumeFlowUnit . CubicFootPerHour : return _value * 7.8657907199999087346816086183876e-6 ;
781
781
case VolumeFlowUnit . CubicFootPerMinute : return _value / 2118.88000326 ;
@@ -786,21 +786,21 @@ private double AsBaseUnit()
786
786
case VolumeFlowUnit . CubicYardPerHour : return _value * 2.1237634944E-4 ;
787
787
case VolumeFlowUnit . CubicYardPerMinute : return _value * 0.0127425809664 ;
788
788
case VolumeFlowUnit . CubicYardPerSecond : return _value * 0.764554857984 ;
789
- case VolumeFlowUnit . DecilitersPerMinute : return ( _value / 60000.00000 ) * 1e-1d ;
790
- case VolumeFlowUnit . KilolitersPerMinute : return ( _value / 60000.00000 ) * 1e3d ;
791
- case VolumeFlowUnit . LitersPerHour : return _value / 3600000.000 ;
792
- case VolumeFlowUnit . LitersPerMinute : return _value / 60000.00000 ;
793
- case VolumeFlowUnit . LitersPerSecond : return _value / 1000 ;
794
- case VolumeFlowUnit . MicrolitersPerMinute : return ( _value / 60000.00000 ) * 1e-6d ;
795
- case VolumeFlowUnit . MillilitersPerMinute : return ( _value / 60000.00000 ) * 1e-3d ;
789
+ case VolumeFlowUnit . DeciliterPerMinute : return ( _value / 60000.00000 ) * 1e-1d ;
790
+ case VolumeFlowUnit . KiloliterPerMinute : return ( _value / 60000.00000 ) * 1e3d ;
791
+ case VolumeFlowUnit . LiterPerHour : return _value / 3600000.000 ;
792
+ case VolumeFlowUnit . LiterPerMinute : return _value / 60000.00000 ;
793
+ case VolumeFlowUnit . LiterPerSecond : return _value / 1000 ;
794
+ case VolumeFlowUnit . MicroliterPerMinute : return ( _value / 60000.00000 ) * 1e-6d ;
795
+ case VolumeFlowUnit . MilliliterPerMinute : return ( _value / 60000.00000 ) * 1e-3d ;
796
796
case VolumeFlowUnit . MillionUsGallonsPerDay : return _value / 22.824465227 ;
797
- case VolumeFlowUnit . NanolitersPerMinute : return ( _value / 60000.00000 ) * 1e-9d ;
798
- case VolumeFlowUnit . OilBarrelsPerDay : return _value * 1.8401307283333333333333333333333e-6 ;
799
- case VolumeFlowUnit . OilBarrelsPerHour : return _value * 4.41631375e-5 ;
800
- case VolumeFlowUnit . OilBarrelsPerMinute : return _value * 2.64978825e-3 ;
801
- case VolumeFlowUnit . UsGallonsPerHour : return _value / 951019.38848933424 ;
802
- case VolumeFlowUnit . UsGallonsPerMinute : return _value / 15850.323141489 ;
803
- case VolumeFlowUnit . UsGallonsPerSecond : return _value / 264.1720523581484 ;
797
+ case VolumeFlowUnit . NanoliterPerMinute : return ( _value / 60000.00000 ) * 1e-9d ;
798
+ case VolumeFlowUnit . OilBarrelPerDay : return _value * 1.8401307283333333333333333333333e-6 ;
799
+ case VolumeFlowUnit . OilBarrelPerHour : return _value * 4.41631375e-5 ;
800
+ case VolumeFlowUnit . OilBarrelPerMinute : return _value * 2.64978825e-3 ;
801
+ case VolumeFlowUnit . UsGallonPerHour : return _value / 951019.38848933424 ;
802
+ case VolumeFlowUnit . UsGallonPerMinute : return _value / 15850.323141489 ;
803
+ case VolumeFlowUnit . UsGallonPerSecond : return _value / 264.1720523581484 ;
804
804
default :
805
805
throw new NotImplementedException ( $ "Can not convert { Unit } to base units.") ;
806
806
}
@@ -815,7 +815,7 @@ private double AsBaseNumericType(VolumeFlowUnit unit)
815
815
816
816
switch ( unit )
817
817
{
818
- case VolumeFlowUnit . CentilitersPerMinute : return ( baseUnitValue * 60000.00000 ) / 1e-2d ;
818
+ case VolumeFlowUnit . CentiliterPerMinute : return ( baseUnitValue * 60000.00000 ) / 1e-2d ;
819
819
case VolumeFlowUnit . CubicDecimeterPerMinute : return baseUnitValue * 60000.00000 ;
820
820
case VolumeFlowUnit . CubicFootPerHour : return baseUnitValue / 7.8657907199999087346816086183876e-6 ;
821
821
case VolumeFlowUnit . CubicFootPerMinute : return baseUnitValue * 2118.88000326 ;
@@ -826,21 +826,21 @@ private double AsBaseNumericType(VolumeFlowUnit unit)
826
826
case VolumeFlowUnit . CubicYardPerHour : return baseUnitValue / 2.1237634944E-4 ;
827
827
case VolumeFlowUnit . CubicYardPerMinute : return baseUnitValue / 0.0127425809664 ;
828
828
case VolumeFlowUnit . CubicYardPerSecond : return baseUnitValue / 0.764554857984 ;
829
- case VolumeFlowUnit . DecilitersPerMinute : return ( baseUnitValue * 60000.00000 ) / 1e-1d ;
830
- case VolumeFlowUnit . KilolitersPerMinute : return ( baseUnitValue * 60000.00000 ) / 1e3d ;
831
- case VolumeFlowUnit . LitersPerHour : return baseUnitValue * 3600000.000 ;
832
- case VolumeFlowUnit . LitersPerMinute : return baseUnitValue * 60000.00000 ;
833
- case VolumeFlowUnit . LitersPerSecond : return baseUnitValue * 1000 ;
834
- case VolumeFlowUnit . MicrolitersPerMinute : return ( baseUnitValue * 60000.00000 ) / 1e-6d ;
835
- case VolumeFlowUnit . MillilitersPerMinute : return ( baseUnitValue * 60000.00000 ) / 1e-3d ;
829
+ case VolumeFlowUnit . DeciliterPerMinute : return ( baseUnitValue * 60000.00000 ) / 1e-1d ;
830
+ case VolumeFlowUnit . KiloliterPerMinute : return ( baseUnitValue * 60000.00000 ) / 1e3d ;
831
+ case VolumeFlowUnit . LiterPerHour : return baseUnitValue * 3600000.000 ;
832
+ case VolumeFlowUnit . LiterPerMinute : return baseUnitValue * 60000.00000 ;
833
+ case VolumeFlowUnit . LiterPerSecond : return baseUnitValue * 1000 ;
834
+ case VolumeFlowUnit . MicroliterPerMinute : return ( baseUnitValue * 60000.00000 ) / 1e-6d ;
835
+ case VolumeFlowUnit . MilliliterPerMinute : return ( baseUnitValue * 60000.00000 ) / 1e-3d ;
836
836
case VolumeFlowUnit . MillionUsGallonsPerDay : return baseUnitValue * 22.824465227 ;
837
- case VolumeFlowUnit . NanolitersPerMinute : return ( baseUnitValue * 60000.00000 ) / 1e-9d ;
838
- case VolumeFlowUnit . OilBarrelsPerDay : return baseUnitValue / 1.8401307283333333333333333333333e-6 ;
839
- case VolumeFlowUnit . OilBarrelsPerHour : return baseUnitValue / 4.41631375e-5 ;
840
- case VolumeFlowUnit . OilBarrelsPerMinute : return baseUnitValue / 2.64978825e-3 ;
841
- case VolumeFlowUnit . UsGallonsPerHour : return baseUnitValue * 951019.38848933424 ;
842
- case VolumeFlowUnit . UsGallonsPerMinute : return baseUnitValue * 15850.323141489 ;
843
- case VolumeFlowUnit . UsGallonsPerSecond : return baseUnitValue * 264.1720523581484 ;
837
+ case VolumeFlowUnit . NanoliterPerMinute : return ( baseUnitValue * 60000.00000 ) / 1e-9d ;
838
+ case VolumeFlowUnit . OilBarrelPerDay : return baseUnitValue / 1.8401307283333333333333333333333e-6 ;
839
+ case VolumeFlowUnit . OilBarrelPerHour : return baseUnitValue / 4.41631375e-5 ;
840
+ case VolumeFlowUnit . OilBarrelPerMinute : return baseUnitValue / 2.64978825e-3 ;
841
+ case VolumeFlowUnit . UsGallonPerHour : return baseUnitValue * 951019.38848933424 ;
842
+ case VolumeFlowUnit . UsGallonPerMinute : return baseUnitValue * 15850.323141489 ;
843
+ case VolumeFlowUnit . UsGallonPerSecond : return baseUnitValue * 264.1720523581484 ;
844
844
default :
845
845
throw new NotImplementedException ( $ "Can not convert { Unit } to { unit } .") ;
846
846
}
0 commit comments