Skip to content
Merged
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
10 changes: 6 additions & 4 deletions openfast_toolbox/fastfarm/FASTFarmCaseCreation.py
Original file line number Diff line number Diff line change
Expand Up @@ -2267,8 +2267,9 @@ def _FF_setup_LES(self, seedsToKeep=1):
# ff_file['ChkWndFiles'] = 'TRUE'

# Super controller
ff_file['UseSC'] = False
ff_file['SC_FileName'] = '/path/to/SC_DLL.dll'
if 'UseSC' in ff_file.keys():
ff_file['UseSC'] = False
ff_file['SC_FileName'] = '/path/to/SC_DLL.dll'

# Shared mooring system
if self.hasMD and not self.multi_MD:
Expand Down Expand Up @@ -2374,8 +2375,9 @@ def _FF_setup_TS(self):
ff_file['TMax'] = self.tmax

# Super controller
ff_file['UseSC'] = False
ff_file['SC_FileName'] = '/path/to/SC_DLL.dll'
if 'UseSC' in ff_file.keys():
ff_file['UseSC'] = False
ff_file['SC_FileName'] = '/path/to/SC_DLL.dll'

# Shared mooring system
if self.hasMD and not self.multi_MD:
Expand Down
Loading