question

Noah Z avatar image
0 Likes"
Noah Z asked Noah Z commented

Model Time Units Set to Years Issue

I have a model that has time units in years. I have a source in the model that is supposed to create a token each simulation day (365 tokens a year on non-leap years) and check to see if it is a certain date (e.g. January 1st). If so it sends the token to do some additional activities but if not, the token goes to a sink.

The token source is set to generate a new token in model time units based on: 1/365.24

When I run the model for many years it does not get the timing of it all exactly right so I must be doing something wrong. What am I missing? I have included an example model showcasing this behavior.

yearly-update-not-exactly-a-year.fsm

FlexSim 19.2.0
sourcetime
· 3
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Phil BoBo avatar image
2 Likes"
Phil BoBo answered Noah Z commented

It seems to me that you are simply trying to generate a token every January 1. Rather than trying to create a token each day and then throwing most of them away, you can use the DateTime class to determine how many model units there are until near year:

  1. DateTime now = Model.dateTime;
  2. DateTime nextYear = now;
  3. while (nextYear.year <= now.year) {
  4. nextYear = nextYear + DateTime(1, 0, 0, 0);
  5. }
  6. double secondsUntilNextYear = nextYear - now;
  7. return secondsUntilNextYear / getmodelunit(TIME_MULTIPLE);

Attached is a sample model (yearly-arrival-source.fsm) that generates a token each January 1 without any drift.


If you want to generate a token each year on the same day (not necessarily on Jan 1), you can do that quite easily too:

  1. DateTime now = Model.dateTime;
  2. DateTime nextYear = now + DateTime(365, 0, 0, 0);
  3. if (nextYear.day != now.day) {
  4. nextYear = nextYear + DateTime(1, 0, 0, 0);
  5. }
  6. double secondsUntilNextYear = nextYear - now;
  7. return secondsUntilNextYear / getmodelunit(TIME_MULTIPLE);

Attached is a sample model (yearly-arrival-source-1.fsm) that generates a token each year on the start date month/day.


· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.