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
9529bfd3
Commit
9529bfd3
authored
Aug 18, 2013
by
Georgios Dagkakis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added ObjectInterrution generic class. Failure inherits from it
parent
c2bb4d25
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
42 additions
and
7 deletions
+42
-7
dream/simulation/CoreObject.py
dream/simulation/CoreObject.py
+0
-2
dream/simulation/Failure.py
dream/simulation/Failure.py
+2
-5
dream/simulation/ObjectInterruption.py
dream/simulation/ObjectInterruption.py
+40
-0
No files found.
dream/simulation/CoreObject.py
View file @
9529bfd3
...
@@ -26,8 +26,6 @@ Class that acts as an abstract. It should have no instances. All the core-object
...
@@ -26,8 +26,6 @@ Class that acts as an abstract. It should have no instances. All the core-object
'''
'''
from
SimPy.Simulation
import
Process
,
Resource
from
SimPy.Simulation
import
Process
,
Resource
from
SimPy.Simulation
import
hold
,
now
import
scipy.stats
as
stat
#the core object
#the core object
class
CoreObject
(
Process
):
class
CoreObject
(
Process
):
...
...
dream/simulation/Failure.py
View file @
9529bfd3
...
@@ -26,12 +26,12 @@ Created on 9 Nov 2012
...
@@ -26,12 +26,12 @@ Created on 9 Nov 2012
models the failures that servers can have
models the failures that servers can have
'''
'''
from
SimPy.Simulation
import
*
from
SimPy.Simulation
import
*
import
math
import
math
from
RandomNumberGenerator
import
RandomNumberGenerator
from
RandomNumberGenerator
import
RandomNumberGenerator
from
ObjectInterruption
import
ObjectInterruption
class
Failure
(
Process
):
class
Failure
(
ObjectInterruption
):
def
__init__
(
self
,
victim
,
dist
,
MTTF
,
MTTR
,
availability
,
index
,
repairman
):
def
__init__
(
self
,
victim
,
dist
,
MTTF
,
MTTR
,
availability
,
index
,
repairman
):
Process
.
__init__
(
self
)
Process
.
__init__
(
self
)
...
@@ -122,6 +122,3 @@ class Failure(Process):
...
@@ -122,6 +122,3 @@ class Failure(Process):
G
.
sheetIndex
+=
1
G
.
sheetIndex
+=
1
G
.
traceSheet
=
G
.
traceFile
.
add_sheet
(
'sheet '
+
str
(
G
.
sheetIndex
),
cell_overwrite_ok
=
True
)
G
.
traceSheet
=
G
.
traceFile
.
add_sheet
(
'sheet '
+
str
(
G
.
sheetIndex
),
cell_overwrite_ok
=
True
)
#outputs data to "output.xls"
def
outputResultsXL
(
self
,
MaxSimtime
):
pass
\ No newline at end of file
dream/simulation/ObjectInterruption.py
0 → 100644
View file @
9529bfd3
# ===========================================================================
# Copyright 2013 Georgios Dagkakis
#
# 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 18 Aug 2013
@author: George
'''
'''
Class that acts as an abstract. It should have no instances. All object interruptions (eg failures, breaks) should inherit from it
'''
from
SimPy.Simulation
import
Process
,
Resource
class
ObjectInterruption
(
Process
):
#the main process of the core object
#this is dummy, every object must have its own implementation
def
run
(
self
):
raise
NotImplementedError
(
"Subclass must define 'run' method"
)
#outputs data to "output.xls"
def
outputResultsXL
(
self
,
MaxSimtime
):
pass
\ 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