This should be an easy one for someone....
When _defaultRPM = 6, the following formula returns 5.78. Great.
double _lunarRPM = _defaultRPM * 0.964;
When _defaultRPM = 6, the following formula returns 0. Bad.
double _lunarRPM = _defaultRPM * (27/28);
Why - what's the difference? between 0.964 and (27/28)? What do I change to get (27/28) to work?