Jump to content

All Activity

This stream auto-updates

  1. Today
  2. Yesterday
  3. A simple approach is to create the highest resolution image you can find using any map program or other software. Save it off in one of the import formats: Hint: some software allows export as a high-resolution pdf. Then you can convert that pdf to a png file for import into Simio. Then import that as a symbol and place that in your model (preferably to its original scale). Then lock that to the background and build your model on top of it. The main down side of this approach is that it is limited by the resolution of your image, so if you zoom in, it might appear fuzzy.
  4. If you haven't already done so, I'd start by reviewing the SimBit ResourceSelectionConcepts. It contains several models that explain different types of resource selection. In particular, I'd suggest a combination of the following approaches: Create a table for each Worker (and/or each Server) where columns in the table represent the constraint or exclusions. For example, you might have a server table with columns for each day, and each column might contain a list of workers who can potentially be used on that day. Use resource lists to select from. possibly with exclusion conditions (maybe referring back to a table) of which resources cannot be used on that server and that day.
  5. Hello everyone, I am working on a project for class and am having difficulties assigning workers to specific servers depending on what day it is within the simulation. I have 18 workers and 16 servers. Each worker has their own 25 day schedule. On a given day, there is between 5 and 8 workers on shift and each worker needs to be assigned to 2 specific servers and no other worker should go to those servers on that day. However, due to the different schedules, a given worker will not always be assigned the same rooms they were assigned the previous day. Is it possible to assign each worker a specific server by day? Or is there another way that this might be possible? Thanks in advance for any suggestions!
  6. Last week
  7. I have a project where I want to model aircraft moving around an area of a fake map. The only map options I've seen in simio are the ArcGIS World View and Street map under View -> Map View. I uploaded a picture as a symbol and set it as a layer, but when I do that certain areas of the map work and others don't. It's like the map area is 'too busy' and it automatically declutters, which in this case hides aircraft moving in certain areas of the map. I tried to zoom in on areas and the map works as advertised, but for demonstration purposes, I need to have all traffic on the map appear at all times (as if I had a map selected under map view). This wouldn't be a problem if I could set an image as a "background color." Any suggestions?
  8. Hello everyone! I'm new in Simio. I hope you guys could spare a moment to assist me with a challenge I'm facing. I have a problem in my simulation model, I have one entity routed at random to one of two lines for processing. These processes follow distinct sequences as describes as follows. 1st sequence (A): S11 - TN11 - TN21 - S22 - S23 - TN22 - TN12 - S14 - Sink1. 2nd sequence (B): S21 - TN21 - TN11 - S12 - S13 - TN12 - TN22 - S24 - Sink2. I intend to integrate a neural network to predict the average makespan, similar to the Neural Network solution provided in the Sample SimBit Solutions. However, I encountered a discrepancy between the example model and my model. In the example model, there is a "Path" feature, which allows for the definition of specific routes. Unfortunately, my model cannot use the "Path" since my model has selection logic for choose transportation in the transfer node either use crane or vehicle, so I need to use a sequence table for the entity to ensure it follows the desired paths. The issue arises when attempting to utilize the neural network. I need to use the "Select From List" for the "Entity Destination Type" in the "Output@Source1" part (I already made the list of nodes = Input@S11 & Input@S21). However, I cannot use this since I already used the sequence table for the entity. As I know from the SimBit, I need to set "Entity Destination Type" by using "Select From List" with the selection goal = random as a base model, and later I will change it with the neural network output. However, from the beginning of this process, an error occurred, as depicted in the attached image. So, I just think could Simio do this: if entity go to Input@S11 then use the 1st sequence, if entity go to input@S21 then use the 2nd sequence but still using the "Select From List" for "Entity Destination Type" since later I will use the smallest value from Neural Network for the selection goal. I also attached my model below for more understanding about my model. Thank you for helping me. Best Regards, Oey Aldi Winata BASE MODEL.spfx
  9. Earlier
  10. I second this idea. If we can directly assign string name to a object-reference state variable, then use the object-ref state variable as the Object, it will be a lot helpful. String concat is a very good one, for example , ModelEntity go through NodeA, we define its next destination as NodeA_a ....
  11. Typical import culture "de-DE" , "en-US" , "zh-CN"
  12. Use a search with Maximize Expression. The queue should be ServerX.InputBuffer.Contents and the expression: Candidate.ModelEntity.Variable.
  13. Hello everyone, I have a server which can potentially have many entities waiting in the input queue. All these entities have different priorities (as a model entity state variable). I want to retrieve these values to then select the highest one and put it on a status label to track this during the run. Is there an option to do this? Regards, MF
  14. Thank you for the quick and detailed response! I see the error I was making with work schedule and have tested it on one server, it seems to work as intended. Since each of my servers have a different capacity, would I need to create a unique work week and unique day type for them all? Or is there a quicker work around? The manual inputs for the date time are a great work around, I'm only modeling for a few years so I don't mind inputting a few dates. What I mean by there being no buffers is that no server can have a queue. I used a list for selecting the destination on the output node of each source (total of 8 ) where it's a hierarchy. It can go to a select number of servers and if all of them are full it goes to a dummy server of infinite capacity that exits the items to an overflow sink.
  15. You want to make the servers have a Capacity Type of Schedule and follow the default Standard Week. If you don't want to give them a lunch break, just change the definition of the Standard Day. Leave the default Off Shift Rule of Suspend Processing. The easiest approach for arrivals is to have a Source with an Interarrival time of 4.33 weeks (or 4 weeks) and an integer random distribution for the Entities Per Arrival. Doing a "first Monday" is possible, but a bit complicated because Simio time does not have the concept of Month because months are of varying size. You could probably specify the initial Time Offset to be early in a month, then maybe make the interarrival time be something like DateTime.DaysInMonth(DateTime.Month(Timenow),DateTime.Year(TimeNow)) which would make the next arrival be exactly one month later (same day of the month). When you say you have no buffers, what do you mean? If an entity arrives when all servers are busy, should it be balked (possibly disposed) or should it wait somewhere like on the server input node, on a path or in the Source output node? If the above arrival approach isn't exact enough, you can put exact arrivals in a data table. The arrival time could be specified at any exact datetime you desire and still have the Entities Per Arrival be a distribution.
  16. Hi all! I am simulating a facility with nearly 40 servers, each one starting with some entities in the input node at initialization and having a different capacity. Each server has a 0 input buffer capacity. My entity creation is currently set to having an interarrival time to be 4.33 weeks (1 month) with a random number of entities created. Currently, it runs 24/7 and does not care about the time, but I want to incorporate that. How can I make it so that the entities arrive once a month, let's say the first Monday, at 8am? How can I make it so the servers are only processing between 8am and 4pm Monday - Friday? The work schedule doesn't seem to work for me, but I could be doing it wrong, since I have a 0 input buffer, which I can't change as it's part of my routing logic for overflow. I would be happy with using timers or a process logic if someone can explain it to me. Ideally, the entities only arrive when it's during the working time, and the entities remaining after 4pm are just put on hold until 8am the next day. Thanks in advance!
  17. Thanks so much KatieP, that is exactly what I was looking for.
  18. Hi Annika, Check out the Support Source Control option in the Project Properties. (Right click the project in the Navigation Window to access Project Properties)
  19. Hello, I am trying to use git to track changes when working on Simio projects collaboratively. For this I am saving the project as *.simproj and the resulting file and folder structure looks good. But there are too many time stamp changes that make it difficult to track the "important" changes. For example, I only changed the location of the DefaultEntity in the model and hit save. The resulting changes are shown in the attached screenshot, with 20 files shown as changed. The main changes are related to the time stamp. Is there a way to configure Simio such that fewer files will be affected by each change? Thank you. Annika
  20. Yes, and it did not work for me. The object-reference (server) property created (and named as "exampleVariable") does not appear in the property window of server objects.
  21. Hi, thank you for developing this add-inn. I can't get it to work though. Do you know if it is still compatible to latest Simio version?
  22. Did you create an object-reference type of properties?
  23. Hello everyone, I am trying to add a new property for a Server object, which would be a string. For instance, the property needs to be something like "Type of Patient" (that each server can attend). I created a property within the Server's subclass, but it does not work. ¿How can I define a new property for a certain object? Thanks in advance, Marcel Favereau
  24. Hi, there is a simple approach you can use. Use Connectors between the queue server and the desks. At Buffer Logic of the Desks, change the Input Buffer Capacity to 0. Create a List with the Input nodes of the seven Desks. On the Output of the queue server change Entity Destination Type to Select From List and the goal to Smallest Value. Keep the default expression. It should work fine.
  25. Thanks. I would think since there are so many models in the forum and other sites that would be beneficial to be able to use for solving problems that Simio would allow these models to be opened in a commercial version of Simio.
  26. I'm making a call center simio model. The 7 types of calls are generated at sources and then move down a path to a server. This server represents a queue that is formed at the call center. After the queue server the calls are transferred to 1 of 7 desks (which are represented by a server) where a call agent is working. How do I make it so the calls do not go to one of the server desks until a desk becomes available. As it currently stands the calls go right through the queue server and build up at some desks even if there are free desks available.
  27. Simio academic offering is not compatible with commercial offering. There is no way to convert the model to be workable in commercial version by the end-user.
  28. I am trying to load models into a licensed version of SIMIO RPS that have been created in the academic version of Simio. I am getting a meesage that states that these non-commercial models cannot be loaded into a commercial version of Simo. Is there a way to load theses non-commercial models into the licensed version of Simio RPS? I would like to be able to take advantage in using these academic models to provide solutions that we are identifying.
  1. Load more activity
×
×
  • Create New...