class GasBlender::ATM
Public Instance Methods
to_fsw()
click to toggle source
# File lib/gas-blender/pressure.rb, line 62 def to_fsw Feet.new(33) * self.magnitude end
to_msw()
click to toggle source
# File lib/gas-blender/pressure.rb, line 66 def to_msw Meter.new(10) * self.magnitude end
to_s()
click to toggle source
# File lib/gas-blender/pressure.rb, line 58 def to_s "%.#{PRECISION}f atm" % magnitude end