Loading [MathJax]/jax/output/CommonHTML/jax.js

ValueAtTime

Computes the value of a signal at a particular time, T=t*.

Example

Assume that you wish to compute the steering wheel angle in a suspension at T=2.4 seconds.

Here is a code snippet that will compute the steering wheel angle at T=2.4s.
>>> val = ValueAtTime (label   = "Steer Wheel Angle @ T=2.4s",
                       measuredValue =  "RTOD * AZ(77,66)",
                       atTime        = 2.40,
                       delta         = 0.1,
                      )
The calculation in ValueAtTime is implemented for this example as:(1)
f(t)  = measuredValueδ(t)  = Step (time, atTime-delta, 0, atTime, 1) +         Step (time, atTime, 1, atTime+Delta, 0) - 1response = tftof(t) δ(t) dttftoδ(t) dt=1deltatftof(t) δ(t) dt