metty
Maybe someone has a solution for that problem:
I do a parametric refinement and so I use a lot of self-written macros to optimize my input file.
In one of these macros I use a rigid body with the rotate command like this
rotate cva 0.0 min -180.0 max 180.0 qa 1
rotate cvb 0.0 min -180.0 max 180.0 qb 1
rotate cvc 0.0 min -180.0 max 180.0 qc 1
My problem is now, that the definition of cva is a global one and so the rotation angle is the same for all refinements, although it should be different.
Is there a way to make cva in rotate a local variable?
PS: I tried it like
local cva 0.0 min -180.0 max 180.0
.....
rotate =cva; min -180.0 max 180.0 qa 1
.....
Interestingly that worked but I got not the same angles as above.