Hi, there.
I would like to make scenario which is stop-triggered by the AccelerationCondition given by SpeedProfileAction.
I set the speed profile as an uniform jerk acceleration motion with 1m/sec^3 from initial 10m/sec.
<LongitudinalAction>
<SpeedProfileAction followingMode="follow">
<SpeedProfileEntry time="0.0" speed="10.0"/>
<SpeedProfileEntry time="1.0" speed="10.5"/>
<SpeedProfileEntry time="2.0" speed="12.0"/>
<SpeedProfileEntry time="3.0" speed="14.5"/>
<SpeedProfileEntry time="4.0" speed="18.0"/>
</SpeedProfileAction>
</LongitudinalAction>
and then, I wrote AccelerationCondition in StopTrigger.
<SpeedCondition rule="greaterOrEqual" value="12"/>
Unfortunately, It does not trigger with t=3sec.
Is there any better way?