Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
WindEnergyToolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
toolbox
WindEnergyToolbox
Commits
23820bc2
There was a problem fetching the pipeline summary.
Commit
23820bc2
authored
8 years ago
by
David Verelst
Browse files
Options
Downloads
Patches
Plain Diff
default neq for post-pro is the 1 Hz equivalent load
parent
4fe6547c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/howto-make-dlcs.md
+2
-2
2 additions, 2 deletions
docs/howto-make-dlcs.md
wetb/prepost/dlctemplate.py
+8
-3
8 additions, 3 deletions
wetb/prepost/dlctemplate.py
with
10 additions
and
5 deletions
docs/howto-make-dlcs.md
+
2
−
2
View file @
23820bc2
...
...
@@ -118,7 +118,6 @@ From Linux/Mac, you should be able to mount using either of the following
addresses:
```
//mimer.risoe.dk/hawc2sim
//mimer.risoe.dk/well/hawc2sim
//gorm.risoe.dk/$USER
```
You can use either ```sshfs``` or ```mount -t cifs``` to mount the discs.
...
...
@@ -534,7 +533,8 @@ optional arguments:
--csv Save data also as csv file (default=False)
--years YEARS Total life time in years (default=20)
--no_bins NO_BINS Number of bins for fatigue loads (default=46)
--neq NEQ Equivalent cycles neq (default=1e6)
--neq NEQ Equivalent cycles neq, default 1 Hz equivalent load
(neq = simulation duration in seconds)
--envelopeblade calculate the load envelope for sensors on the blades
--envelopeturbine calculate the load envelope for sensors on the turbine
```
...
...
This diff is collapsed.
Click to expand it.
wetb/prepost/dlctemplate.py
+
8
−
3
View file @
23820bc2
...
...
@@ -265,11 +265,14 @@ def launch_param(sim_id):
def
post_launch
(
sim_id
,
statistics
=
True
,
rem_failed
=
True
,
check_logs
=
True
,
force_dir
=
False
,
update
=
False
,
saveinterval
=
2000
,
csv
=
False
,
m
=
[
1
,
3
,
4
,
5
,
6
,
8
,
10
,
12
,
14
],
neq
=
1e6
,
no_bins
=
46
,
m
=
[
1
,
3
,
4
,
5
,
6
,
8
,
10
,
12
,
14
],
neq
=
None
,
no_bins
=
46
,
years
=
20.0
,
fatigue
=
True
,
nn_twb
=
1
,
nn_twt
=
20
,
nn_blr
=
4
,
A
=
None
,
save_new_sigs
=
False
,
envelopeturbine
=
False
,
envelopeblade
=
False
,
save_iter
=
False
,
AEP
=
False
):
if
neq
<
0
:
neq
=
None
# =========================================================================
# check logfiles, results files, pbs output files
# logfile analysis is written to a csv file in logfiles directory
...
...
@@ -406,8 +409,10 @@ if __name__ == '__main__':
dest
=
'
years
'
,
help
=
'
Total life time in years
'
)
parser
.
add_argument
(
'
--no_bins
'
,
type
=
float
,
default
=
46.0
,
action
=
'
store
'
,
dest
=
'
no_bins
'
,
help
=
'
Number of bins for fatigue loads
'
)
parser
.
add_argument
(
'
--neq
'
,
type
=
float
,
default
=
1e6
,
action
=
'
store
'
,
dest
=
'
neq
'
,
help
=
'
Equivalent cycles neq
'
)
parser
.
add_argument
(
'
--neq
'
,
type
=
float
,
default
=-
1.0
,
action
=
'
store
'
,
dest
=
'
neq
'
,
help
=
'
Equivalent cycles neq, default 1 Hz
'
'
equivalent load (neq = simulation
'
'
duration in seconds)
'
)
parser
.
add_argument
(
'
--nn_twt
'
,
type
=
float
,
default
=
20
,
action
=
'
store
'
,
dest
=
'
nn_twt
'
,
help
=
'
Node number tower top
'
)
parser
.
add_argument
(
'
--nn_blr
'
,
type
=
float
,
default
=
4
,
action
=
'
store
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment