Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
dream
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
dream
Commits
31c4be7a
Commit
31c4be7a
authored
Nov 10, 2015
by
Georgios Dagkakis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MilkProcess added
parent
a0033a7b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
57 additions
and
1 deletion
+57
-1
dream/simulation/applications/MilkPlant/MilkProcess.py
dream/simulation/applications/MilkPlant/MilkProcess.py
+55
-0
dream/simulation/applications/MilkPlant/imports.py
dream/simulation/applications/MilkPlant/imports.py
+2
-1
No files found.
dream/simulation/applications/MilkPlant/MilkProcess.py
0 → 100644
View file @
31c4be7a
# ===========================================================================
# Copyright 2013 University of Limerick
#
# This file is part of DREAM.
#
# DREAM is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# DREAM is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with DREAM. If not, see <http://www.gnu.org/licenses/>.
# ===========================================================================
'''
Created on 09 11 2015
@author: George
'''
'''
models the process of the milk
'''
from
dream.simulation.MachineJobShop
import
MachineJobShop
class
MilkProcess
(
MachineJobShop
):
family
=
'Server'
def
initialize
(
self
):
# keep the ids of products that have already been processed
self
.
alreadyProcessedProductIds
=
[]
MachineJobShop
.
initialize
(
self
)
# processing time will be used only for the first unit of the product. Otherwise it will be dummy 0
def
getEntity
(
self
):
activeEntity
=
MachineJobShop
.
getEntity
(
self
)
productId
=
activeEntity
.
productId
if
productId
not
in
self
.
alreadyProcessedProductIds
:
self
.
alreadyProcessedProductIds
.
append
(
productId
)
else
:
self
.
procTime
=
0
return
activeEntity
\ No newline at end of file
dream/simulation/applications/MilkPlant/imports.py
View file @
31c4be7a
from
dream.simulation.applications.MilkPlant.MilkTank
import
MilkTank
from
dream.simulation.applications.MilkPlant.MilkTransport
import
MilkTransport
from
dream.simulation.applications.MilkPlant.MilkPack
import
MilkPack
\ No newline at end of file
from
dream.simulation.applications.MilkPlant.MilkPack
import
MilkPack
from
dream.simulation.applications.MilkPlant.MilkProcess
import
MilkProcess
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment