Exemplo n.º 1
0
 public BinMagazine()
 {
     this.outstandingOrders       = new OrderList();
     this.inventoryPolicy         = new InventoryPolicyDictionary();
     this.inventoryPolicyNameList = new StringList();
     this.componentTypes          = new ComponentTypeList();
 }
Exemplo n.º 2
0
        public static void Update()
        {
            MealMaker mm = ComponentTypeList.find <MealMaker>() as MealMaker;

            typeof(MealMaker)
            .GetField("mEmbeddedResourceCount", BindingFlags.NonPublic | BindingFlags.Instance)
            .SetValue(mm, 12);
        }
Exemplo n.º 3
0
 public BinMagazine(string nameIn, FLOWObject parentIn, int capacityIn, RVGenerator loadunloadTimeIn, Node nodeIn)
     : base(nameIn, parentIn, capacityIn, nodeIn)
 {
     this.loadunloadTime          = loadunloadTimeIn;
     this.outstandingOrders       = new OrderList();
     this.inventoryPolicy         = new InventoryPolicyDictionary();
     this.inventoryPolicyNameList = new StringList();
     this.componentTypes          = new ComponentTypeList();
 }
Exemplo n.º 4
0
 private Transporter transporter; // bypass için şimdilik bir tane uncapacitated transporter yaratıldı. IE486
 public Layout()
 {
     this.bufferCells      = new BufferCellList();
     this.inputStations    = new StationList();
     this.nodes            = new NodeList();
     this.operations       = new OperationList();
     this.outputStations   = new StationList();
     this.stations         = new StationList();
     this.bins             = new BinList();
     this.componentTypes   = new ComponentTypeList();
     this.unitloadsonMover = new UnitloadList();
     this.transporter      = new Transporter();
 }
Exemplo n.º 5
0
 public Layout(string nameIn, FLOWObject parentIn)
     : base(nameIn, parentIn)
 {
     this.bufferCells      = new BufferCellList();
     this.inputStations    = new StationList();
     this.nodes            = new NodeList();
     this.operations       = new OperationList();
     this.outputStations   = new StationList();
     this.stations         = new StationList();
     this.bins             = new BinList();
     this.componentTypes   = new ComponentTypeList();
     this.unitloadsonMover = new UnitloadList();
     this.transporter      = new Transporter();
     this.onHandWriter     = new TextOutput(((SimulationManager)parentIn.Parent).path);
 }