Signal\Sources
Domains: Discrete, Continuous. Size: 1-D. Allowed in: Block Diagrams.
This model generates a cycloidal step signal:
tDelta = 2*pi*(time - start_time)/(stop_time - start_time)
output = 0; (tDelta < 0)
output = amplitude*(tDelta - sin(tDelta))/2*pi; (0 <= tDelta <= 2*pi)
output = amplitude; (tDelta > 2*pi)
Outputs |
Description |
output |
|
Parameters |
|
start_time stop_time amplitude |
The start time of the step. The stop time of the step. The amplitude of the step. |