You should be able to simply write some relations that will limit the valid values for the dimension. This won't necessarily warn the user, but will prevent the model from becoming something that is not allowed. Another approach is to use restricted parameter values. If you attempt to set a restricted parameter to a value outside the specified limits it will throw an error. The third option is to generate a false constraint. This will throw an error message to the user as well.
Value Limiting Example:
IF LENGTH < 24
LENGTH = 24
ENDIF
IF LENGTH > 36
LENGTH = 36
ENDIF
Restricted Parameter Example: (See "About Restricted Value Parameters" in the help documentation)
{ Name = LENGTH
Type = REAL
Default = 30.0
Range = [ 24.0, 36.0 ]
},
Constraint Example:
/* DIMENSION NAMED LENGTH
LENGTH >= 24
LENGTH <= 36