question

Cinar Tuncel avatar image
1 Like"
Cinar Tuncel asked Matthew Gillespie commented

Error 13161: Invalid PCI was Found

I'm trying to use Appointments function with a distribution however getting an error message saying certain PCIs are missing. However, I can find those PCIs in the PCI table when I manually check.

Any idea why this might be happening?

[Update] This error message appears when there are multiple PCIs have the same appointment time. Their actual arrival is different as a result of the added variation to the appointments.

FlexSim HC 5.0.12
error messageappointmentspci
· 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.

1 Answer

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

The issue here is that renaming the row headers in the PCI table doesn't really do anything. When you specify a PCI you need to specify which row number you want in the PCI table and not which row name. By default these are the same, but you can rename the row headers if it helps organize your model. However, you can't really use the name to reference the PCI. You'll notice that in the PCI field of the Arrival object, when you click the drop down arrow you'll see a list of the PCI's listed using their names, but when you select the desired PCI it puts the row number into the field and not the name.

So you'll need to swap out the values in your appointments table to use the row number and not the row name.

Since this would be very tedious I wrote a script to do it. Just open a script console (Debug -> Script Console), paste in this code, and click the execute button (green play button):

  1. treenode appointments = node("MODEL:/PA_ThrirdFloor>variables/ScheduledArrivals");
  2. treenode pciTable = node("MODEL:/Tools/PatientBin>variables/PatientClassifications");
  3.  
  4. for(int i = 1; i <= content(appointments); i++)
  5. {
  6. treenode appointment = rank(appointments, i);
  7. treenode pci = rank(appointment, 2);
  8. string pciName = concat("PCI ", stringreplace(gets(pci), ".00", ""));
  9. for(int j = 2; j <= content(pciTable); j++)
  10. {
  11. treenode pciRow = rank(pciTable, j);
  12. string rowName = getname(pciRow);
  13. if(rowName == pciName)
  14. {
  15. sets(pci, numtostring(j - 1));
  16. break;
  17. }
  18. }
  19. }

pci.png (18.1 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.