All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
gw.util.science.PowerUnit.gs Maven / Gradle / Ivy
package gw.util.science
uses gw.util.Rational
uses MetricScaleUnit#*
final class PowerUnit extends AbstractQuotientUnit {
final static var CACHE: UnitCache = new UnitCache()
public static var pW: PowerUnit = get( EnergyUnit.BASE, Second, 1p, "Picowatt", "pW" )
public static var nW: PowerUnit = get( EnergyUnit.BASE, Second, 1n, "Nanowatt", "nW" )
public static var uW: PowerUnit = get( EnergyUnit.BASE, Second, 1u, "Microwatt", "μW" )
public static var mW: PowerUnit = get( EnergyUnit.BASE, Second, 1m, "Milliwatt", "mW" )
public static var W: PowerUnit = get( EnergyUnit.BASE, Second, 1, "Watt", "W" )
public static var kW: PowerUnit = get( EnergyUnit.BASE, Second, 1k, "Kilowatt", "kW" )
public static var MW: PowerUnit = get( EnergyUnit.BASE, Second, 1M, "Megawatt", "MW" )
public static var GW: PowerUnit = get( EnergyUnit.BASE, Second, 1G, "Gigawatt", "GW" )
public static var BASE: PowerUnit = W
static function get( energyUnit: EnergyUnit, timeUnit: TimeUnit, factor: Rational = null, name: String = null, symbol: String = null ) : PowerUnit {
var unit = new PowerUnit( energyUnit, timeUnit, factor, name, symbol )
return CACHE.get( unit )
}
private construct( energyUnit: EnergyUnit, timeUnit: TimeUnit, factor: Rational = null, name: String = null, symbol: String = null ) {
super( energyUnit, timeUnit, factor, name, symbol )
}
property get EnergyUnit() : EnergyUnit {
return LeftUnit
}
property get TimeUnit() : TimeUnit {
return RightUnit
}
function divide( v: VelocityUnit ) : ForceUnit {
return EnergyUnit.ForceUnit
}
function divide( force: ForceUnit ) : VelocityUnit {
return EnergyUnit.ForceUnit.AccUnit.VelocityUnit
}
function divide( potential: PotentialUnit ) : CurrentUnit {
return potential.CurrentUnit
}
function divide( current: CurrentUnit ) : PotentialUnit {
return PotentialUnit.get( this, current )
}
}