No, ACF, as well as ADM does not know about design variables (they are evaluated the moment you submit your simulation). And you can't reference a solver variable either.
But what you are trying to do in your example above is to jump the rotational motion from 2.532° to 0° at t=2. That should cause a huge spike in all internal forces (looks like your model is kinematic constrained with 0 DOF so it might work).
But you can as well define the motion in the model as a displacement function:
FUN=IF(time-2:2.532d,0,0)
and you don't have to change it in the acf at all. And here you can use design variables.
No, ACF, as well as ADM does not know about design variables (they are evaluated the moment you submit your simulation). And you can't reference a solver variable either.
But what you are trying to do in your example above is to jump the rotational motion from 2.532° to 0° at t=2. That should cause a huge spike in all internal forces (looks like your model is kinematic constrained with 0 DOF so it might work).
But you can as well define the motion in the model as a displacement function:
FUN=IF(time-2:2.532d,0,0)
and you don't have to change it in the acf at all. And here you can use design variables.