schedule-source.pngschedule-source2.pngHi all!
I am using a schedule source which sends an important signal to the system by creating items on the schedule. during the simulation run, these arrivals should be delayed based on a delay that occurs inside the simulation. I used :
settablenum(getvarnode(node("Dummy3_30days", model()), "schedule"), row,1, gettablenum(getvarnode(node("Dummy3_30days", model()), "schedule"), row-1,1) +delay);and I see the arrival values change when the model is running. But the items are not getting created neither based on the new delayed time, nor based on the original time, they are getting creating at a value which looks like to be the difference between the delayed time and the original time. I was wondering whether the source object is designed for such a change and is able to process it, or is there another way that I can approach this problem?