Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inclusion of MoorDyn, floating platform orientations, and general adjustments to OF v.4 - An effort to integrate FAModel to generate FAST.Farm input files. #40

Merged
merged 16 commits into from
Mar 24, 2025
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
5 changes: 3 additions & 2 deletions openfast_toolbox/fastfarm/AMRWindSimulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,9 @@ def _checkInputs(self):
# check that level_hr is <=self.max_level

# For convenience, the turbines should not be zero-indexed
if self.wts[0]['name'] != 'T1':
print(f"--- WARNING: Recommended turbine numbering should start at 1. Currently it is zero-indexed.")
if 'name' in self.wts[0]:
if self.wts[0]['name'] != 'T1':
print(f"--- WARNING: Recommended turbine numbering should start at 1. Currently it is zero-indexed.")


# Flags of given/calculated spatial resolution for warning/error printing purposes
Expand Down
Loading