question

Nicholas B avatar image
0 Likes"
Nicholas B asked Cliff King edited

Import Data from database into Customs Arrival Table

So far I have loaded all of my data from an Access Database into global tables. The only thing I still have left is to load my arrivals by way of a database. I know I have to create a pointer, but I don't know how to point to the schedule of the arrivals module. Or is there a way I can manipulate the custom arrivals table through code.

FlexSim HC 5.3.4
databaseschedule sourcegenerate patients
5 |100000

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

Matthew Gillespie avatar image
2 Likes"
Matthew Gillespie answered Matthew Gillespie commented

The experimenter has a variable that updates the Custom Arrivals table from a Global Table. It uses code like this to copy the data to the Arrival Object. Also, see the attached model. importcustomarrivalstable.fsm

  1. treenode obj = PatientArrivals1;
  2. treenode globaltable = reftable("GlobalTable1");
  3.  
  4. treenode table = var(obj, VAR_CustomArrivalsTable);
  5. int needfullmatch = 0;
  6.  
  7. int tablecols = gettablecols(globaltable);
  8. if (gettablecols(table) == 5) // There's sometimes an extra, hidden column for CustomArrivals
  9. tablecols++;
  10.  
  11. settablesize(table, gettablerows(globaltable), gettablecols(table));
  12.  
  13. int globalprecision = getnodenum(node("/1/environment/settings/precision",maintree()));
  14. for (int row = 1; row <= gettablerows(globaltable); row++)
  15. {
  16. for (int col = 1; col <= gettablecols(table); col++)
  17. {
  18. treenode src = gettablecell(globaltable, row, col);
  19. treenode target = gettablecell(table, row, col);
  20. int datatype = getdatatype(src);
  21. nodeadddata(target, datatype);
  22. if (datatype == DATATYPE_NUMBER)
  23. set(target, get(src));
  24. else if (datatype == DATATYPE_STRING)
  25. sets(target, gets(src));
  26. if (col == 1 || col == 2)
  27. {
  28. assertsubnode(target, "minutes", DATATYPE_NUMBER);
  29. set(first(target), timestringtominutes(gets(target)));
  30. }
  31. if (col == 3 || col == 4)
  32. {
  33. if (getdatatype(target) == DATATYPE_NUMBER)
  34. {
  35. double temp = get(target);
  36. nodeadddata(target, DATATYPE_STRING);
  37. sets(target, numtostring(temp, 0, globalprecision));
  38. }
  39. }
  40. else if (col == 5) // Update the "Scheduled" column in Custom Arrivals
  41. {
  42. nodeadddata(target, DATATYPE_NUMBER);
  43. set(target, 0);
  44. }
  45. }
  46. }

· 2
5 |100000

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

Jeff Nordgren avatar image
-1 Like"
Jeff Nordgren answered Nicholas B commented
@Nicholas B

I'm not sure that an import from an Access database or not. Probably not, without a lot of manual coding and such. But if you can save your data to an Excel database, there is a way to import that straight into a Source using the Excel interface (see below).

Using the Excel interface would also be easier than trying to write the code to have a Global Table imported into a Source. The Excel interface does all the "hard" work for you. You can also use the Excel interface to import into Global Tables. So I would suggest that you send your data from Access to Excel and then to the import into FlexSim.

Thanks.


user-manual.png (74.4 KiB)
excel-interface.png (65.3 KiB)
· 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.

Cliff King avatar image
0 Likes"
Cliff King answered Nicholas B commented

It just so happens I was working on a model where I wanted to dynamically update the Custom Arrivals Table with a daily quantity of patients listed in a Global Table for each of 30 days of simulation. You might wonder, why didn't I just import the daily quantity information into the Custom Arrivals Table directly to begin with. The answer is that the quantity values written in the Global Table may change based on the state of the model during the simulation run. In other words, I wanted to adjust the number of "New Patient" arrivals in my clinic based on congestion caused by return appointments made by some of the previous new patient arrivals.

In the attached model I dynamically create patient arrivals by starting out with just a single row in the Custom Arrivals Table, and then updating the "Number of Arrivals" column of the row using User Events (see toolbox). The trick is that I must update the Custom Arrivals Table just before the software reads the table to create the next block of arrivals at the start of each "Repeat Interval" (every 1440 minutes in my model).

This may not be what you want to do exactly, but at least it will give you some ideas plus the syntax for referencing the Custom Arrivals Table in the tree.

arrivals-generated-dynamically-from-global-table.fsm


· 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.