Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • toolbox/WindEnergyToolbox
  • tlbl/WindEnergyToolbox
  • cpav/WindEnergyToolbox
  • frza/WindEnergyToolbox
  • borg/WindEnergyToolbox
  • mmpe/WindEnergyToolbox
  • ozgo/WindEnergyToolbox
  • dave/WindEnergyToolbox
  • mmir/WindEnergyToolbox
  • wluo/WindEnergyToolbox
  • welad/WindEnergyToolbox
  • chpav/WindEnergyToolbox
  • rink/WindEnergyToolbox
  • shfe/WindEnergyToolbox
  • shfe1/WindEnergyToolbox
  • acdi/WindEnergyToolbox
  • angl/WindEnergyToolbox
  • wliang/WindEnergyToolbox
  • mimc/WindEnergyToolbox
  • wtlib/WindEnergyToolbox
  • cmos/WindEnergyToolbox
  • fabpi/WindEnergyToolbox
22 results
Show changes
Showing
with 534 additions and 0 deletions
# Tutorial 1: Creating master Excel file
The Wind Energy Toolbox has a workflow for automatically running design load
bases (DLBs) on Gorm.
This workflow has the following steps:
1. Create a master Excel sheet defining each case in the DLB
2. [Create subordinate Excel sheets from each tab in the master Excel sheet](https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox/blob/master/docs/tutorials/2-creating-subordinate-excels.md)
3. [Create htc files and PBS job scripts for each requisite simulation using
the subordinate Excel files and a master htc file.](https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox/blob/master/docs/tutorials/3-creating-htc-pbs-files.md)
4. Submit all PBS job scripts to the cluster
5. Post-process results
6. Visualize results
This tutorial presents how to accomplish Step 1.
Note that it is possible to customize your simulations by skipping/modifying
steps.
Such a procedure will be discussed in a later tutorial.
If there are any problems with this tutorial, please [submit an issue](
https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox/issues).
## 1. Background: Master Excel File
The master Excel file is an Excel file that is used to create subordinate
Excel files for generation of htc files and PBS job scripts.
### Master file structure
The master Excel file has a main tab, called "Main", that defines default
values and necessary functions that are called in the other tabs.
Each other tab defines a new case, and one subordinate Excel file will be
generated for each case.
There are three variable types in the master Excel file:
- Constants: values that do not change within a case
- Variables: values that do change within a case, but are numbers that do not
depend on any other values (e.g., wind speed in DLC 1.2)
- Functions: values that depend on other values
### Tag names
The values that are defined in the master Excel file (and eventually the
subordinate Excel files) are used to replace "tags" in the master htc file.
These tags are of the form ```[$TAG_NAME]```.
Theoretically, a user can define any new tags they desire, there are no
require naming conventions.
However, there are some tags that are currently hard-coded into the Toolbox
that can result in errors if the tag names are changed.
Thus, **we do not recommend you change the tag names from those in the
tutorial**.
If you need new values that do not exist in the tutorial's master htc file
and produced master file, then it should be fine to add them.
There are a few tags that deserve special mention:
- ```[Case folder]```: the htc files for each case will be saved in this case
folder. We do not recommend changing the tag name or naming convention here
if you are doing a standard DLB.
- ```[Case id.]```: this defines the naming convention for each htc file. We
do not recommend changing the tag name or naming convention here if you are
doing a standard DLB.
- ```[seed]```: this variable indicates the desired number of seeds for each
set of variables. Thus, for example, in DLC 1.2, 1.3, the ```[seed]``` value
should be set to at least 6.
Lastly, it is extremely important that your tag names in your master Excel
file match the tag names in your master htc file.
Thus, **be sure to verify that your tag names in your master Excel and master
htc files are consistent**.
## 2. Tutorial
The procedure for creating the master Excel sheet is simple: each desired DLB
is defined in a tab-delimited text file, and these are loaded into a single
Excel file.
It is assumed that the user has a collection of text files in a folder for
all of the DLBs to be simulated.
This tutorial uses the text files located in
```wetb/docs/tutorials/data/DLCs_onshore```, which contain a series of text
files for a full DLB of an onshore turbine.
These text files correspond to the onshore DTU 10 MW master htc file that is
located in the same directoy.
Generate the master Excel file in a few easy steps:
1. Open a command window.
2. If you are running the tutorial locally (i.e., not on Gorm), navigate to
the Wind Energy Toolbox tutorials directory.
3. From a terminal/command window, run the code to generate the Excel file
from a folder of text files:
* Windows (from the wetb tutorials folder):
```python ..\..\wetb\prepost\write_master.py --folder data\DLCs_onshore --filename DLCs_onshore.xlsx```
* Mac/Linux (from the wetb tutorials folder):
```python ../../wetb/prepost/write_master.py --folder data/DLCs_onshore --filename DLCs_onshore.xlsx```
* Gorm (from any folder that contains a subfolder with your text files. Note
you must activate the wetb environment (see Step 5 [here](https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox/blob/master/docs/getting-started-with-dlbs.md)
) before this command will work. This command also assumes the folder with your
text files is called "DLCs_onshore" and is located in the working directory.):
```python /home/MET/repositories/toolbox/WindEnergyToolbox/wetb/prepost/write_master.py --folder ./DLCs_onshore --filename ./DLCs_onshore.xlsx```
The master Excel file "DLCs_onshore.xlsx" should now be in the your current
directory.
Note that we have used the parser options ```--folder``` and ```--filename```
to specify the folder with the text files and the name of the resulting Excel
file.
Other parser options are also available.
(See doc string in ```write_master.py``` function.)
## 3. Generation options
See doc string in ```write_master.py``` function.
## 4. Issues
If there are any problems with this tutorial, please [submit an issue](
https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox/issues).
We will try to fix it as soon as possible.
# Tutorial 2: Creating subordinate Excel files
The Wind Energy Toolbox has a workflow for automatically running design load
bases (DLBs) on Gorm.
This workflow has the following steps:
1. [Create a master Excel sheet defining each case in the DLB](https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox/blob/master/docs/tutorials/1-creating-master-excel.md)
2. Create subordinate Excel sheets from each tab in the master Excel sheet
3. [Create htc files and PBS job scripts for each requisite simulation using
the subordinate Excel files and a master htc file.](https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox/blob/master/docs/tutorials/3-creating-htc-pbs-files.md)
4. Submit all PBS job scripts to the cluster
5. Post-process results
6. Visualize results
This tutorial presents how to accomplish Step 2.
Note that it is possible to customize your simulations by skipping/modifying
steps.
Such a procedure will be discussed in a later tutorial.
If there are any problems with this tutorial, please [submit an issue](
https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox/issues).
## 1. Background: Subordinate Excel Files
The subordinate Excel files are a series of basic Excel files that are
generated from the master Excel file. (See our tutorial on generating the
master Excel file [here]( https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox/blob/master/docs/tut orials/1-creating-master-excel.md).)
There is a different subordinate Excel file for every tab in the master Excel
file, except for the "Main" tab, one for each case to simulate (e.g., design
load case 1.2 from IEC-61400-1).
Each subordinate Excel file has a single tab that lists the different tag
values for the htc master file in the column, and each row corresponds to a
different htc file to be generated.
The generation of the htc files from the subordinate Excel files is discused
in the next tutorial.
## 2. Tutorial
The generation of the subordinate Excel files is done using the
[GenerateDLS.py](https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox/blob/master/wetb/prepost/GenerateDLCs.py)
function in the Wind Energy Toolbox.
On Gorm, the command can be executed from the htc directory with the master
Excel file as follows:
```
export PATH=/home/python/miniconda3/bin:$PATH
source activate py36-wetb
python /home/MET/repositories/toolbox/WindEnergyToolbox/wetb/prepost/GenerateDLCs.py [--folder=$FOLDER_NAME] [--master=$MASTER_NAME]
source deactivate
```
The ```export PATH``` command adds the miniconda bin directory to the path,
which is necessary for the toolbox.
The ```source activate py36-wetb``` and ```source deactivate``` are
Gorm-specific commands to activate the Wind Energy Toolbox Python environment.
The ```--folder``` and ```--master``` flags are optional flags to specify,
respectively, the name of the folder to which the subordinate Excel files
should be written to and the name of the master Excel file.
The default values for these two options are './' (i.e., the current
directory) and 'DLCs.xlsx', respectively.
After running the commands in the above box on Gorm, you should see a folder in
your htc directory with all of your subordinate Excel files.
## 3. Issues
If there are any problems with this tutorial, please [submit an issue](
https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox/issues).
We will try to fix it as soon as possible.
# Tutorial 3: Creating htc and PBS files
The Wind Energy Toolbox has a workflow for automatically running design load
bases (DLBs) on Gorm.
This workflow has the following steps:
1. [Create a master Excel sheet defining each case in the DLB](https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox/blob/master/docs/tutorials/1-creating-master-excel.md)
2. [Create subordinate Excel sheets from each tab in the master Excel sheet](https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox/blob/master/docs/tutorials/2-creating-subordinate-excels.md)
3. Create htc files and PBS job scripts for each requisite simulation using
the subordinate Excel files and a master htc file.
4. Submit all PBS job scripts to the cluster
5. Post-process results
6. Visualize results
This tutorial presents how to accomplish Step 3.
Note that it is possible to customize your simulations by skipping/modifying
steps.
Such a procedure will be discussed in a later tutorial.
If there are any problems with this tutorial, please [submit an issue](
https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox/issues).
## 1. Background: htc and PBS file creation
The main function used in this tutorial is [dlctemplate.py](https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox/blob/master/wetb/prepost/dlctemplate.py),
which creates all htc and PBS job scripts for the cases specified in the
subordinate Excel file folder.
The htc files are the main input files for HAWC2 simulations.
They are created by copying the master htc file in the ```_master/``` folder in
your htc directory and replacing all of the tags with the values specified in
the subordinate Excel files.
All of htc files for a single case are saved in a case-specific folder in your
htc folder.
Thus, if you were running a standard DLB calculation for IEC 61400-1, your
folder structure after generating your htc files might look like this:
```
|-- $TURB_NAME/
| |-- $SET_ID/
| | |-- DLCs.xlsx
| | |-- _master/
| | | |-- $MASTER_NAME.htc
| | |-- DLCs/
| | |-- htc/
| | | |-- dlc12_iec61400-1ed3/
| | | | |-- dlc12_wsp04_wdir000_s2001.htc
| | | | |-- dlc12_wsp04_wdir000_s2002.htc
| | | | |-- ...
| | | |-- dlc13_iec61400-1ed3/
| | | |-- ...
```
The PBS job scripts are a series of text files that are used to tell the job
scheduler on the high-performance computing (HPC) cluster how to run each job.
These files end with ".p", and are saved to a folder ```pbs_in/``` that is
created in the main set ID folder on Gorm.
## 2. Tutorial
There are two ways to call ```dlctemplate.py```.
The first is to call the function directly.
The second is to wrap it in a job scheduler to submit the job to the HPC cluster.
The first option is fine if you have only a few htc files or if the job
scheduler is not working for some reason.
The second option is generally preferred.
### 2.1 Directly generate htc files
The htc and PBS files can be directly generated by running the following
commands from the set ID directory:
```
export PATH=/home/python/miniconda3/bin:$PATH
source activate py36-wetb
python /home/MET/repositories/toolbox/WindEnergyToolbox/wetb/prepost/dlctemplate.py --prep
source deactivate
```
The ```export PATH``` command adds the miniconda bin directory to the path,
which is necessary for the toolbox.
The ```source activate py36-wetb``` and ```source deactivate``` are
Gorm-specific commands to activate the Wind Energy Toolbox Python environment.
The ```--prep``` option tells the script to run in preparation mode, in which
case it creates the htc and pbs files.
After running the commands in the above box on Gorm, you should have all of your
PBS input files in ```pbs_in/``` and all of your htc files in ```htc```.
### 2.2 Generate files using job scheduler
From the set ID folder, run the following code:
```
qsub-wrap.py -f /home/MET/repositories/toolbox/WindEnergyToolbox/wetb/prepost/dlctemplate.py --prep
```
## 3. Issues
If there are any problems with this tutorial, please [submit an issue](
https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox/issues).
We will try to fix it as soon as possible.
C F V V V F
[Case folder] [Case id.] [wdir] [seed] [wsp] [TI]
DLC12_IEC61400-1Ed3 """DLC12_wsp[wsp]_wdir[wdir]_s[seed]""" 0 6 4 "([ref_ti]*(0,75*[wsp]+5,6))/[wsp]"
350 6
10 8
10
12
14
16
18
20
22
24
26
C F V V V F
[Case folder] [Case id.] [wdir] [seed] [wsp] [TI]
DLC13_IEC61400-1Ed3 """DLC13_wsp[wsp]_wdir[wdir]_s[seed]""" 0 6 4 "2*[ref_ti]*(0,072*(0,2*[ref_wind_speed]/2+3)*([wsp]/2-4)+10)/[wsp]"
350 6
10 8
10
12
14
16
18
20
22
24
26
C C F V V C C F C C C C F C
[sim_time] [Case folder] [Case id.] [wdir] [wsp] [seed] [turb_format] [TI] [gust] [gust_type] [G_A] [G_t0] [G_phi0] [G_T]
100 DLC14_IEC61400-1Ed3 """DLC14_wsp[wsp]_wdir[wdir]_s[seed]""" 0 10 1 0 "2*[ref_ti]*(0,072*(0,2*[ref_wind_speed]/2+3)*([wsp]/2-4)+10)/[wsp]" ecd 15 110 720/[wsp] 10
12
14
F C F V V V C C F C C F C C
[sim_time] [Case folder] [Case id.] [wdir] [G_phi0] [wsp] [seed] [turb_format] [TI] [gust] [gust_type] [G_A] [G_T] [G_t0]
100 DLC15_IEC61400-1Ed3 """DLC15_wsp[wsp]_wdir[wdir]_s[seed]_phi[G_phi0]""" 0 0 4 1 0 "([ref_ti]*(0,75*[wsp]+5,6))/[wsp]" ews "(2,5+0,2*6,4*[TI]*[wsp]*([diameter]/[long_scale_param])**0,25)/[diameter]" 12 110
90 6
180 8
270 10
12
14
16
18
20
22
24
26
F C F V V V F C
[sim_time] [Case folder] [Case id.] [wdir] [seed] [wsp] [TI] [Grid loss time]
100 DLC21_IEC61400-1Ed3 """DLC21_wsp[wsp]_wdir[wdir]_s[seed]""" 0 4 4 "([ref_ti]*(0,75*[wsp]+5,6))/[wsp]" 110
350 6
10 8
10
12
14
16
18
20
22
24
26
C F V V V F C C
[Case folder] [Case id.] [wdir] [seed] [wsp] [TI] [Pitch 1 DLC22b] [Time stuck DLC22b]
DLC22b_IEC61400-1Ed3 """DLC22b_wsp[wsp]_wdir[wdir]_s[seed]""" 0 12 4 "([ref_ti]*(0,75*[wsp]+5,6))/[wsp]" 0 0.1
6
8
10
12
14
16
18
20
22
24
26
C F V V V F C
[Case folder] [Case id.] [wdir] [seed] [wsp] [TI] [dis_setbeta]
DLC22y_IEC61400-1Ed3 """DLC22y_wsp[wsp]_wdir[wdir]_s[seed]""" 15 1 4 "([ref_ti]*(0,75*[wsp]+5,6))/[wsp]" ;
30 6
45 8
60 10
75 12
90 14
105 16
120 18
135 20
150 22
165 24
180 26
195
210
225
240
255
270
285
300
315
330
345
F C F V V C C F C C F C C C F
[sim_time] [Case folder] [Case id.] [wsp] [Grid loss time] [seed] [turb_format] [TI] [gust] [gust_type] [G_A] [G_phi0] [G_T] [G_t0] [grid_gust_delay]
100 DLC23_IEC61400-1Ed3 """DLC23_wsp[wsp]_wdir[wdir]_s[seed]_tgl[grid_gust_delay]""" 10 122.5 1 0 "([ref_ti]*(0,75*[wsp]+5,6))/[wsp]" eog "min([1,35*(0,8*1,4*[ref_wind_speed]-[wsp]);3,3*[TI]*[wsp]/(1+0,1*[diameter]/[long_scale_param])])" 0 10.5 120 ([Grid loss time]-[G_t0])*10
14 124
26 125.25
C F V V V C F
[Case folder] [Case id.] [wdir] [seed] [wsp] [turb_format] [TI]
DLC24_IEC61400-1Ed3 """DLC24_wsp[wsp]_wdir[wdir]_s[seed]""" 340 3 4 1 "([ref_ti]*(0,75*[wsp]+5,6))/[wsp]"
20 6
8
10
12
14
16
18
20
22
24
26
F C F V C C C C
[sim_time] [Case folder] [Case id.] [wsp] [seed] [turb_format] [TI] [cutin_t0]
250 DLC31_IEC61400-1Ed3 """DLC31_wsp[wsp]_wdir[wdir]_s[seed]""" 4 1 0 0.0000 110
12
25
F C F V C C F C C F C F C V F
[sim_time] [Case folder] [Case id.] [wsp] [seed] [turb_format] [TI] [gust] [gust_type] [G_A] [G_phi0] [G_t0] [G_T] [cutin_t0] [grid_gust_delay]
200 DLC32_IEC61400-1Ed3 """DLC32_wsp[wsp]_wdir[wdir]_s[seed]_tci[grid_gust_delay]""" 4 1 0 "([ref_ti]*(0,75*[wsp]+5,6))/[wsp]" eog "min([1,35*(0,8*1,4*[ref_wind_speed]-[wsp]);3,3*[TI]*[wsp]/(1+0,1*[diameter]/[long_scale_param])])" 0 [wsp]/(0.01813228 *[wsp] - 0.04811716) 10.5 50.1 ([cutin_t0]-[G_t0])*10
10 52.5
14 54
26 55.25
F C F V C C C C
[sim_time] [Case folder] [Case id.] [wsp] [seed] [turb_format] [TI] [Cut-out time]
100 DLC41_IEC61400-1Ed3 """DLC41_wsp[wsp]_wdir[wdir]_s[seed]""" 4 1 0 0 110
12
26
F C F V C C F C C F C C C V F
[sim_time] [Case folder] [Case id.] [wsp] [seed] [turb_format] [TI] [gust] [gust_type] [G_A] [G_phi0] [G_t0] [G_T] [Cut-out time] [grid_gust_delay]
100 DLC42_IEC61400-1Ed3 """DLC42_wsp[wsp]_wdir[wdir]_s[seed]_tco[grid_gust_delay]""" 10 1 0 "([ref_ti]*(0,75*[wsp]+5,6))/[wsp]" eog "min([1,35*(0,8*1,4*[ref_wind_speed]-[wsp]);3,3*[TI]*[wsp]/(1+0,1*[diameter]/[long_scale_param])])" 0 120 10.5 120.1 ([Cut-out time]-[G_t0])
14 122.5
26 124
125
128
130
F C F V V V C F C C
[sim_time] [Case folder] [Case id.] [wdir] [seed] [wsp] [turb_format] [TI] [Cut-out time] [Stop type]
100 DLC51_IEC61400-1Ed3 """DLC51_wsp[wsp]_wdir[wdir]_s[seed]""" 0 12 10 1 "([ref_ti]*(0,75*[wsp]+5,6))/[wsp]" 110 2
12
14
C F V V V C C C C C
[Case folder] [Case id.] [wdir] [seed] [wsp] [turb_format] [TI] [shear_exp] [cutin_t0] [Induction]
DLC61_IEC61400-1Ed3 """DLC61_wsp[wsp]_wdir[wdir]_s[seed]""" 352 6 50 1 0.1100 0.11 1000 0
8
C F V V V C C C C C C
[Case folder] [Case id.] [wsp] [wdir] [seed] [turb_format] [TI] [shear_exp] [cutin_t0] [Induction] [dis_setbeta]
DLC62_IEC61400-1Ed3 """DLC62_wsp[wsp]_wdir[wdir]_s[seed]""" 50 0 1 1 0.1100 0.11 1000 0 ;
15
30
45
60
75
90
105
120
135
150
165
180
195
210
225
240
255
270
285
300
315
330
345
C F V V V C C C C C
[Case folder] [Case id.] [wdir] [seed] [wsp] [turb_format] [TI] [shear_exp] [cutin_t0] [Induction]
DLC63_IEC61400-1Ed3 """DLC63_wsp[wsp]_wdir[wdir]_s[seed]""" 340 6 40 1 0.1100 0.11 1000 0
20