Error Messages/40692

Error Message Examples

In a dynamic time offset, A[Time-k], the term being offset must be a variable identifier.
You cannot use a dynamic offset of a general expression, (expr)[Time-k]

Cause

While defining a dynamic loop, you can only define offsets for variables, but not for expressions. You seem to have used a dynamic offset on an expression.

The following dynamic node description would trigger this error:

Dynamic( 100, (Dynamic_node-5)[Time-1] * 1.1 )

The following code could be a possible fix for the above error:

Dynamic( 100, (Dynamic_node[Time-1]-5) * 1.1 )

Please visit the following link to learn more about the Dynamic function.

Remedies

Change the indicated general expression to a variable.



You are not allowed to post comments.

Comments
<comments />