File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Src/UnitsNet/Generated Code Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ public Flow(double cubicmeterspersecond) : this()
43
43
44
44
public double CubicMetersPerHour
45
45
{
46
- get { return CubicMetersPerSecond / 3600 ; }
46
+ get { return CubicMetersPerSecond / 0.000277777777777778 ; }
47
47
}
48
48
49
49
#endregion
@@ -57,7 +57,7 @@ public static Flow Zero
57
57
58
58
public static Flow FromCubicMetersPerHour ( double cubicmetersperhour )
59
59
{
60
- return new Flow ( cubicmetersperhour * 3600 ) ;
60
+ return new Flow ( cubicmetersperhour * 0.000277777777777778 ) ;
61
61
}
62
62
63
63
public static Flow FromCubicMetersPerSecond ( double cubicmeterspersecond )
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ public RotationalSpeed(double revolutionspersecond) : this()
43
43
44
44
public double RevolutionsPerMinute
45
45
{
46
- get { return RevolutionsPerSecond / 60 ; }
46
+ get { return RevolutionsPerSecond / 0.0166666666666667 ; }
47
47
}
48
48
49
49
#endregion
@@ -57,7 +57,7 @@ public static RotationalSpeed Zero
57
57
58
58
public static RotationalSpeed FromRevolutionsPerMinute ( double revolutionsperminute )
59
59
{
60
- return new RotationalSpeed ( revolutionsperminute * 60 ) ;
60
+ return new RotationalSpeed ( revolutionsperminute * 0.0166666666666667 ) ;
61
61
}
62
62
63
63
public static RotationalSpeed FromRevolutionsPerSecond ( double revolutionspersecond )
You can’t perform that action at this time.
0 commit comments