Hello!
In my model, I want to update the warmup time when the output of the last queue equals 'x' number.
I did that by using the following,
updated a global variable on Exit from the queue, and put a If clause saying if the the value equals 36 the warmup time would be changed to whatever the current time is.
I used the following code.
model().find("Tools/GlobalVariables/Parts").value = model().find("Tools/GlobalVariables/Parts").value + 1; if(model().find("Tools/GlobalVariables/Parts").value == 36) { model().find("Tools/savedwarmuptime").value = time(); }
But, it only updates the value in the tree, so all the stats that are recorded, do not follow this warmup time. They follow the warmup time specified in the drop down menu. Is there a way to update the alue in the dropdown menu as well, or any other way to reference all the statistic collectors to the the warmup time?
Thank You!