forked from WISDEM/WEIS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
1,263 additions
and
820 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[submodule "ROSCO"] | ||
path = ROSCO | ||
url = https://github.com/NREL/ROSCO | ||
branch = develop | ||
branch = main |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ROSCO
updated
8 files
+1 −1 | .gitignore | |
+20 −5 | CMakeLists.txt | |
+13 −42 | README.md | |
+160 −0 | cmake/GetGitRevisionDescription.cmake | |
+44 −0 | cmake/GetGitRevisionDescription.cmake.in | |
+2 −2 | src/Filters.f90 | |
+110 −1 | src/Functions.f90 | |
+20 −12 | src/ReadSetParameters.f90 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/bash | ||
#SBATCH --account=ssc | ||
#SBATCH --time=1:00:00 | ||
#SBATCH --job-name=rosco_test | ||
#SBATCH --nodes=1 # This should be nC/36 (36 cores on eagle) | ||
#SBATCH --ntasks-per-node=36 | ||
#SBATCH --mail-user [email protected] | ||
#SBATCH --mail-type BEGIN,END,FAIL | ||
#SBATCH --output=output.%j.out | ||
#SBATCH --partition=debug | ||
|
||
nDV=1 # Number of design variables (x2 for central difference) | ||
nOF=60 # Number of openfast runs per finite-difference evaluation | ||
nC=$((nDV + nDV * nOF)) # Number of cores needed. Make sure to request an appropriate number of nodes = N / 36 | ||
## nC=72 | ||
|
||
source activate /home/dzalkind/.conda-envs/weis-env4 | ||
which python | ||
|
||
# module purge | ||
# module load conda | ||
# module load comp-intel intel-mpi mkl | ||
|
||
|
||
python run_Testing.py | ||
# python weis_driver.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
"""Top-level package for ROSCO_toolbox Repo.""" | ||
|
||
__author__ = """Nikhar J. Abbas and Paul Fleming""" | ||
__author__ = """Nikhar J. Abbas and Daniel S. Zalkind""" | ||
__email__ = '[email protected]' | ||
__version__ = '2.1.1' | ||
__version__ = '2.2.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.