All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gw.util.science.Pressure.gs Maven / Gradle / Ivy

There is a newer version: 1.18.2
Show newest version
package gw.util.science

uses gw.util.Rational
uses java.math.RoundingMode
uses java.math.MathContext

final class Pressure extends AbstractMeasure {
  construct( value : Rational, unit: PressureUnit, displayUnit: PressureUnit ) {
    super( value, unit, displayUnit, PressureUnit.BASE )
  }
  construct( value : Rational, unit: PressureUnit ) {
    this( value, unit, unit )
  }
 
  function multiply( w: Area ) : Mass {
    return new Mass( toBaseNumber() * w.toBaseNumber(), MassUnit.BASE, Unit.MassUnit )
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy