Skip to content

Commit 506d78d

Browse files
committed
fixing EAd_MBL_LM into EAd_LM
1 parent 2f314fa commit 506d78d

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

docs/usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ information must include a static stiffness value (EAs), and a
8989
dynamic stiffness value (EAd). An additional factor on EAd that
9090
scales with mean tension (EAd_Lm) can also be included. When using
9191
a mooring line properties library (i.e., a yaml file), these values
92-
should be specified by the EA_MBL, EAd_MBL, and EAd_MBL_Lm keywords,
92+
should be specified by the EA_MBL, EAd_MBL, and EAD_LM keywords,
9393
respectively. See the file moorprops_default.yaml for
9494
more information.
9595

moorpy/helpers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ def getLineProps(dnommm, material, lineProps=None, source=None, name="", rho=102
722722

723723
# stiffness values for viscoelastic approach
724724
EAd = mat['EAd_MBL']*MBL # dynamic stiffness constant: Krd alpha term x MBL [N]
725-
EAd_Lm = mat['EAd_MBL_Lm'] # dynamic stiffness Lm slope: Krd beta term (to be multiplied by mean load) [-]
725+
EAd_Lm = mat['EAD_LM'] # dynamic stiffness Lm slope: Krd beta term (to be multiplied by mean load) [-]
726726

727727
# Set up a main identifier for the linetype unless one is provided
728728
if name=="":
@@ -797,7 +797,7 @@ def loadLineProps(source):
797797
output[mat]['EA_dmax' ] = getFromDict(props, 'EA_dmax' , default=-1.0) # -1 to disable checking
798798
output[mat]['EA_MBL' ] = getFromDict(props, 'EA_MBL' , default=0.0)
799799
output[mat]['EAd_MBL' ] = getFromDict(props, 'EAd_MBL' , default=0.0)
800-
output[mat]['EAd_MBL_Lm']= getFromDict(props, 'EAd_MBL_Lm',default=0.0)
800+
output[mat]['EAD_LM' ] = getFromDict(props, 'EAD_LM' ,default=0.0)
801801
output[mat]['Cd' ] = getFromDict(props, 'Cd' , default=0.0)
802802
output[mat]['Cd_ax' ] = getFromDict(props, 'Cd_ax' , default=0.0)
803803
output[mat]['Ca' ] = getFromDict(props, 'Ca' , default=0.0)

moorpy/library/MoorProps_default.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# EA_dmax : # maximum valid diameter for the EA curve (values < 0 ignored)
2121
# EA_MBL : # (quasi-static) stiffness per MBL [N/N] (aka Kr, Krs)
2222
# EAd_MBL : # dynamic stiffness per MBL [N/N] (aka Krd or Krd_alpha)
23-
# EAd_MBL_Lm: # dynamic stiffness per MBL per fraction of mean load (not %) [N/N] (aka Krd_beta)
23+
# EAD_LM: # dynamic stiffness per MBL per fraction of mean load (not %) [N/N] (aka Krd_beta)
2424
#
2525
# dvol_dnom : # volume-equivalent diameter per nominal diameter [-]
2626
# density : # density of the line material [kg/m^3] (e.g., chain density = 7850 kg/m^3)
@@ -95,7 +95,7 @@ lineProps:
9595
MBL_d2 : 308e6 # minimum breaking load per diameter^2 [N/m^2]
9696
EA_MBL : 14 # quasi-static stiffness per MBL [N/N]
9797
EAd_MBL : 11.6 # dynamic stiffness per MBL [N/N]
98-
EAd_MBL_Lm : 40.0 # dynamic stiffness per MBL per fraction of mean load (not %) [N/N] (beta term to be multiplied with the absolute mean tension)
98+
EAD_LM : 40.0 # dynamic stiffness per fraction of mean load [N] (beta term to be multiplied with the absolute mean tension)
9999
density : 1380 # density of the polyester material [kg/m^3] (taken from specific gravity of 1.38, relative to 1000 kg/m^3)
100100
cost_MBL : 2.3e-05 # cost per MBL [$/m/N]
101101
Cd : 2.021 # drag coefficient based on DNV-OS-E301 adjusted for use with volumetric diameter
@@ -108,7 +108,7 @@ lineProps:
108108
MBL_d2 : 207e6 # minimum breaking load per diameter^2 [N/m^2]
109109
EA_MBL : 5 # quasi-static stiffness per MBL [N/N] (can range from 1 to 10)
110110
EAd_MBL : 2.08 # dynamic stiffness per MBL [N/N]
111-
EAd_MBL_Lm : 39.0 # dynamic stiffness per MBL per fraction of mean load (not %) [N/N] (beta term to be multiplied with the absolute mean tension)
111+
EAD_LM : 39.0 # dynamic stiffness per fraction of mean load [N/N] (beta term to be multiplied with the absolute mean tension)
112112
density : 1140 # density of the nylon material [kg/m^3] (taken from specific gravity of 1.14, relative to 1000 kg/m^3)
113113
cost_MBL : 4.29e-05 # cost per MBL [$/m/N]
114114
Cd : 1.979 # drag coefficient based on DNV-OS-E301 adjusted for use with volumetric diameter
@@ -121,7 +121,7 @@ lineProps:
121121
MBL_d2 : 580e6 # minimum breaking load per diameter^2 [N/m^2]
122122
EA_MBL : 56 # quasi-static stiffness per MBL [N/N]
123123
EAd_MBL : 59 # dynamic stiffness per MBL [N/N]
124-
EAd_MBL_Lm : 54.0 # dynamic stiffness per MBL per fraction of mean load (not %) [N/N] (beta term to be multiplied with the absolute mean tension)
124+
EAD_LM : 54.0 # dynamic stiffness per fraction of mean load [N/N] (beta term to be multiplied with the absolute mean tension)
125125
density : 975 # density of the hmpe/dyneema material [kg/m^3] (taken from specific gravity of 0.975, relative to 1000 kg/m^3
126126
Cd : 1.988 # drag coefficient based on DNV-OS-E301 adjusted for use with volumetric diameter
127127
Ca : 1.1 # added mass coefficient based on Bureau Veritas 493-NR_2021-07

moorpy/library/MoorProps_newCosts.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# EA_dmax : # maximum valid diameter for the EA curve (values < 0 ignored)
2727
# EA_MBL : # (quasi-static) stiffness per MBL [N/N] (aka Kr, Krs)
2828
# EAd_MBL : # dynamic stiffness per MBL [N/N] (aka Krd or Krd_alpha)
29-
# EAd_MBL_Lm: # dynamic stiffness per MBL per fraction of mean load (not %) [N/N] (aka or Krd_beta)
29+
# EAD_LM: # dynamic stiffness per MBL per fraction of mean load (not %) [N/N] (aka or Krd_beta)
3030
#
3131
# dvol_dnom : # volume-equivalent diameter per nominal diameter [-]
3232
# density : # density of the line material [kg/m^3] (e.g., chain density = 7850 kg/m^3)
@@ -106,7 +106,7 @@ lineProps:
106106
MBL_d2 : 308e6 # minimum breaking load per diameter^2 [N/m^2]
107107
EA_MBL : 14 # quasi-static stiffness per MBL [N/N]
108108
EAd_MBL : 11.6 # dynamic stiffness per MBL [N/N]
109-
EAd_MBL_Lm : 40.0 # dynamic stiffness per MBL per fraction of mean load (not %) [N/N] (beta term to be multiplied with the absolute mean tension)
109+
EAD_LM : 40.0 # dynamic stiffness per fraction of mean load [N/N] (beta term to be multiplied with the absolute mean tension)
110110
density : 1380 # density of the polyester material [kg/m^3] (taken from specific gravity of 1.38, relative to 1000 kg/m^3)
111111
cost_d : 1.17e2 # cost per meter per diameter [2024$/m^2]
112112
cost_d2 : 1.27e4 # cost per meter per diameter^2 [2024$/m^3]
@@ -120,7 +120,7 @@ lineProps:
120120
MBL_d2 : 207e6 # minimum breaking load per diameter^2 [N/m^2]
121121
EA_MBL : 5 # quasi-static stiffness per MBL [N/N] (can range from 1 to 10)
122122
EAd_MBL : 2.08 # dynamic stiffness per MBL [N/N]
123-
EAd_MBL_Lm : 39.0 # dynamic stiffness per MBL per fraction of mean load (not %) [N/N] (beta term to be multiplied with the absolute mean tension)
123+
EAD_LM : 39.0 # dynamic stiffness per fraction of mean load [N/N] (beta term to be multiplied with the absolute mean tension)
124124
density : 1140 # density of the nylon material [kg/m^3] (taken from specific gravity of 1.14, relative to 1000 kg/m^3)
125125
cost_d : 9.84 # cost per meter per diameter [2024$/m^2]
126126
cost_d2 : 1.43e4 # cost per meter per diameter^2 [2024$/m^3]
@@ -134,7 +134,7 @@ lineProps:
134134
MBL_d2 : 580e6 # minimum breaking load per diameter^2 [N/m^2]
135135
EA_MBL : 56 # quasi-static stiffness per MBL [N/N]
136136
EAd_MBL : 59 # dynamic stiffness per MBL [N/N]
137-
EAd_MBL_Lm : 54.0 # dynamic stiffness per MBL per fraction of mean load (not %) [N/N] (beta term to be multiplied with the absolute mean tension)
137+
EAD_LM : 54.0 # dynamic stiffness per fraction of mean load [N] (beta term to be multiplied with the absolute mean tension)
138138
density : 975 # density of the hmpe/dyneema material [kg/m^3] (taken from specific gravity of 0.975, relative to 1000 kg/m^3
139139
Cd : 1.988 # drag coefficient based on DNV-OS-E301 adjusted for use with volumetric diameter
140140
Ca : 1.1 # added mass coefficient based on Bureau Veritas 493-NR_2021-07

0 commit comments

Comments
 (0)