Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ dependencies = [
"xlrd",
"xtgeo>=2.15",
"seaborn",
"probabilit==0.1.0",
Comment thread
dafeda marked this conversation as resolved.
]

[project.urls]
Expand Down
2 changes: 0 additions & 2 deletions src/semeio/fmudesign/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@
from semeio.fmudesign._excel2dict import excel2dict_design, inputdict_to_yaml
from semeio.fmudesign._tornado_onebyone import calc_tornadoinput
from semeio.fmudesign.create_design import DesignMatrix
from semeio.fmudesign.iman_conover import ImanConover

__all__ = [
"DesignMatrix",
"ImanConover",
"calc_tornadoinput",
"excel2dict_design",
"inputdict_to_yaml",
Expand Down
10 changes: 10 additions & 0 deletions src/semeio/fmudesign/_excel2dict.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,16 @@ def _excel2dict_onebyone(

inputdict["designtype"] = generalinput[1]["designtype"]

# Extract
key = "correlation_iterations"
if key in generalinput.index:
try:
inputdict[key] = int(generalinput.loc[key].iloc[0])
except ValueError:
inputdict[key] = 0
else:
inputdict[key] = 0

if "rms_seeds" in generalinput.index:
rms_seeds = str(generalinput.loc["rms_seeds"].iloc[0])
if rms_seeds == "None":
Expand Down
Loading
Loading