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

fuookami.ospf.kotlin.utils.physics.unit.FlowRate.kt Maven / Gradle / Ivy

There is a newer version: 1.0.29
Show newest version
package fuookami.ospf.kotlin.utils.physics.unit

import fuookami.ospf.kotlin.utils.physics.dimension.*

object CubicMeterPerSecond : PhysicalUnit() {
    private val unit = CubicMeter / Second

    override val name: String = "cubic meter per second"
    override val symbol: String = "m3ps"

    override val quantity = FlowRate
    override val system by unit::system
    override val scale by unit::scale
}

object LiterPerSecond : PhysicalUnit() {
    private val unit = Liter / Second

    override val name: String = "liter per second"
    override val symbol: String = "lps"

    override val quantity = FlowRate
    override val system by unit::system
    override val scale by unit::scale
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy