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
5ea3ae6e
Commit
5ea3ae6e
authored
Aug 28, 2015
by
Georgios Dagkakis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
code for new example added, to be worked for the documentation
parent
4730e024
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
97 additions
and
0 deletions
+97
-0
dream/simulation/Examples/CompoundMachine.py
dream/simulation/Examples/CompoundMachine.py
+97
-0
No files found.
dream/simulation/Examples/CompoundMachine.py
0 → 100644
View file @
5ea3ae6e
from
dream.simulation.imports
import
Machine
,
Exit
,
Queue
,
Globals
,
Part
,
ExcelHandler
from
dream.simulation.imports
import
G
from
dream.simulation.Globals
import
runSimulation
class
InternalQueue
(
Queue
):
def
canAccept
(
self
,
callerObject
=
None
):
if
len
(
self
.
next
[
0
].
getActiveObjectQueue
()):
return
False
return
Queue
.
canAccept
(
self
,
callerObject
)
class
InternalProcess
(
Machine
):
def
canAccept
(
self
,
callerObject
=
None
):
# do not start processing unless there are 3 parts in the internal server
if
not
self
.
countInternalParts
()
==
len
(
G
.
InternalProcessList
):
return
False
return
Machine
.
canAccept
(
self
,
callerObject
)
# send signal to internalQueues for synchronization
def
getEntity
(
self
):
activeEntity
=
Machine
.
getEntity
(
self
)
for
queue
in
G
.
InternalQueueList
:
station
=
queue
.
next
[
0
]
# do not send if it is not already triggered
if
not
queue
.
canDispose
.
triggered
:
self
.
sendSignal
(
receiver
=
queue
,
signal
=
queue
.
canDispose
,
sender
=
station
)
return
activeEntity
# if there is one machine that is processing do not return true
def
haveToDispose
(
self
,
callerObject
=
None
):
for
object
in
G
.
InternalProcessList
:
# if there is one other machine processing return False
if
(
len
(
object
.
getActiveObjectQueue
())
)
and
(
not
object
.
isBlocked
):
return
False
# if there is one other machine that got signal to dispose return false
if
object
.
canDispose
.
triggered
:
return
False
return
Machine
.
haveToDispose
(
self
,
callerObject
)
# check if all the machines got empty and send signal to QB
def
removeEntity
(
self
,
entity
=
None
):
activeEntity
=
Machine
.
removeEntity
(
self
,
entity
)
# run the default method
# count the number of parts in the server
if
not
self
.
countInternalParts
():
self
.
sendSignal
(
receiver
=
QB
,
signal
=
QB
.
canDispose
,
sender
=
Q1
)
return
activeEntity
# returns the total number of internal parts in the server
def
countInternalParts
(
self
):
totalParts
=
0
for
object
in
G
.
InternalProcessList
+
G
.
InternalQueueList
:
if
len
(
object
.
getActiveObjectQueue
()):
totalParts
+=
1
return
totalParts
QB
=
Queue
(
'QB'
,
'QueueBefore'
,
capacity
=
float
(
"inf"
))
Q1
=
InternalQueue
(
'Q1'
,
'Q1'
,
capacity
=
1
)
M1
=
InternalProcess
(
'M1'
,
'M1'
,
processingTime
=
{
'Exp'
:{
'mean'
:
1
}})
Q2
=
InternalQueue
(
'Q2'
,
'Q2'
,
capacity
=
1
)
M2
=
InternalProcess
(
'M2'
,
'M2'
,
processingTime
=
{
'Exp'
:{
'mean'
:
1
}})
Q3
=
InternalQueue
(
'Q3'
,
'Q3'
,
capacity
=
1
)
M3
=
InternalProcess
(
'M3'
,
'M3'
,
processingTime
=
{
'Exp'
:{
'mean'
:
1
}})
QA
=
Queue
(
'QA'
,
'QueueAfter'
,
capacity
=
float
(
"inf"
))
MA
=
Machine
(
'MA'
,
'MachineAfter'
,
processingTime
=
{
'Exp'
:{
'mean'
:
1
}})
E
=
Exit
(
'E'
,
'Exit'
)
QB
.
defineRouting
(
successorList
=
[
Q1
,
Q2
,
Q3
])
Q1
.
defineRouting
(
predecessorList
=
[
QB
],
successorList
=
[
M1
])
Q2
.
defineRouting
(
predecessorList
=
[
QB
],
successorList
=
[
M2
])
Q3
.
defineRouting
(
predecessorList
=
[
QB
],
successorList
=
[
M3
])
M1
.
defineRouting
(
predecessorList
=
[
Q1
],
successorList
=
[
QA
])
M2
.
defineRouting
(
predecessorList
=
[
Q2
],
successorList
=
[
QA
])
M3
.
defineRouting
(
predecessorList
=
[
Q3
],
successorList
=
[
QA
])
QA
.
defineRouting
(
predecessorList
=
[
M1
,
M2
,
M3
],
successorList
=
[
MA
])
MA
.
defineRouting
(
predecessorList
=
[
QA
],
successorList
=
[
E
])
E
.
defineRouting
(
predecessorList
=
[
MA
])
P1
=
Part
(
'P1'
,
'P1'
,
currentStation
=
QB
)
P2
=
Part
(
'P2'
,
'P2'
,
currentStation
=
QB
)
P3
=
Part
(
'P3'
,
'P3'
,
currentStation
=
QB
)
P4
=
Part
(
'P4'
,
'P4'
,
currentStation
=
QB
)
P5
=
Part
(
'P5'
,
'P5'
,
currentStation
=
QB
)
P6
=
Part
(
'P6'
,
'P6'
,
currentStation
=
QB
)
G
.
InternalQueueList
=
[
Q1
,
Q2
,
Q3
]
G
.
InternalProcessList
=
[
M1
,
M2
,
M3
]
def
main
(
test
=
0
):
# call the runSimulation giving the objects and the length of the experiment
runSimulation
(
objectList
=
[
QB
,
Q1
,
M1
,
Q2
,
M2
,
Q3
,
M3
,
QA
,
E
,
P1
,
P2
,
P3
,
P4
,
P5
,
P6
,
MA
],
maxSimTime
=
float
(
'inf'
),
trace
=
'Yes'
)
#output the trace of the simulation
ExcelHandler
.
outputTrace
(
'CompoundMachine'
)
print
1
if
__name__
==
'__main__'
:
main
()
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