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.
Fix paths, print outputs to pdf, add submit script
- Loading branch information
Showing
3 changed files
with
84 additions
and
8 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
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 |