TimeSquared

case class TimeSquared(time1: Time, time2: Time)

Represents an intermediate value used in 2nd derivative time calculations

Represents an intermediate value used in 2nd derivative time calculations

Create objects by calling the Time.squared method.

q1 / TimeSquared(t1, t2) == q1 / t1 / t2 == q1 / (t1 * t2)

q2 * TimeSquared(t1, t2) == q2 * t1 * t2

q1 / t1.squared == q1 / t1 / t1

q2 * t1.squared == q2 * t1 * t1

where q1 is a second degree time integral and q2 is a second degree time derivative

Value Params
time1

Time

time2

Time

Authors

garyKeorkunian

Since

0.5.1

Companion
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def *(that: SecondTimeDerivative[_]): A

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product