Skip to content

Commit 3b00198

Browse files
authored
Merge pull request #18 from Yuksel-Rudy/main
Excel sheet results extraction
2 parents 652f8d3 + a101d6e commit 3b00198

File tree

4 files changed

+315
-4
lines changed

4 files changed

+315
-4
lines changed

famodel/famodel_base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ def __init__(self, id):
6262
# installation dictionary [checks for installation status]
6363
self.inst = {'mobilized': False,
6464
'installed': False}
65-
65+
66+
6667
def isAttached(self, object, end=None):
6768
'''Check if something is attached to this node, even if it's part of
6869
a higher-level edge.

famodel/mooring/mooring.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ def __init__(self, dd=None, subsystem=None, anchor=None,
137137
self.env_impact = {
138138
"disturbedSeabedArea": 0
139139
}
140-
140+
141+
self.raftResults = {}
141142

142143
def update(self, dd=None):
143144
'''Update the Mooring object based on the current state of the design

famodel/platform/platform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def __init__(self, id, r=[0,0,0], heading=0, mooring_headings=[60,180,300],rFair
5959
self.reliability = {}
6060
self.cost = {}
6161
self.failure_probability = {}
62-
62+
self.raftResults = {}
6363

6464
def setPosition(self, r, heading=None, degrees=False,project=None):
6565
'''

0 commit comments

Comments
 (0)