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
ef629a99
Commit
ef629a99
authored
Oct 29, 2013
by
Ioannis Papagiannopoulos
Committed by
Sebastien Robin
Nov 06, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new objects BatchSource and BatchDecomposition
parent
fb3c7870
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
255 additions
and
0 deletions
+255
-0
dream/simulation/BatchDecomposition.py
dream/simulation/BatchDecomposition.py
+193
-0
dream/simulation/BatchSource.py
dream/simulation/BatchSource.py
+62
-0
No files found.
dream/simulation/BatchDecomposition.py
0 → 100644
View file @
ef629a99
This diff is collapsed.
Click to expand it.
dream/simulation/BatchSource.py
0 → 100644
View file @
ef629a99
# ===========================================================================
# 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 22 Oct 2013
@author: George
'''
'''
models the source object that generates the Batches Entities
'''
from
Source
import
Source
from
Batch
import
Batch
from
Globals
import
G
from
SimPy.Simulation
import
Process
from
RandomNumberGenerator
import
RandomNumberGenerator
class
BatchSource
(
Source
):
def
__init__
(
self
,
id
,
name
,
distribution
=
'Fixed'
,
mean
=
1
,
item
=
Batch
,
batchNumberOfUnits
=
1
):
Source
.
__init__
(
self
,
id
=
id
,
name
=
name
,
distribution
=
distribution
,
mean
=
mean
,
item
=
item
)
# Process.__init__(self)
# # general properties
# self.id=id
# self.objName=name
# self.distType=distribution # label that sets the distribution type
# # properties used for statistics
# self.totalInterArrivalTime=0 # the total interarrival time
# self.numberOfArrivals=0 # the number of entities that were created
# # list containing objects that follow in the routing
# self.next=[] # list with the next objects in the flow
# self.nextIds=[] # list with the ids of the next objects in the flow
# self.previousIds=[] # list with the ids of the previous objects in the flow.
# # For the source it is always empty!
# self.type="Source" #String that shows the type of object
# self.rng=RandomNumberGenerator(self, self.distType)
# self.rng.avg=mean
# self.item=item
#
self
.
numberOfUnits
=
batchNumberOfUnits
def
createEntity
(
self
):
# return the newly created Entity
return
self
.
item
(
id
=
self
.
item
.
type
+
str
(
G
.
numberOfEntities
),
\
name
=
self
.
item
.
type
+
str
(
self
.
numberOfArrivals
),
numberOfUnits
=
self
.
numberOfUnits
)
\ 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