Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Andrew,
You can use Modelcheck to output model size as a part or assembly parameter. The configurationwill look something like this:PRT_ADD_CHK_PARAM MODEL_SIZE OVERALL_SIZE
The parameter is created as a string with x, y, and z dimensions on one line.
model_size (string): ####.## x ####.## x ####.##
If you'd like, you can breakit into three parameters using relations. The relations would look like this:
mod_size_x = extract(model_size,1,7)
mod_size_y = extract(model_size,11,7)
mod_size_z = extract(model_size,21,7)