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
Model registry
Operate
Environments
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
Christian Pavese
WindEnergyToolbox
Commits
23820bc2
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
No related tags found
No related merge requests found
Changes
2
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
...
@@ -118,7 +118,6 @@ From Linux/Mac, you should be able to mount using either of the following
addresses:
addresses:
```
```
//mimer.risoe.dk/hawc2sim
//mimer.risoe.dk/hawc2sim
//mimer.risoe.dk/well/hawc2sim
//gorm.risoe.dk/$USER
//gorm.risoe.dk/$USER
```
```
You can use either ```sshfs``` or ```mount -t cifs``` to mount the discs.
You can use either ```sshfs``` or ```mount -t cifs``` to mount the discs.
...
@@ -534,7 +533,8 @@ optional arguments:
...
@@ -534,7 +533,8 @@ optional arguments:
--csv Save data also as csv file (default=False)
--csv Save data also as csv file (default=False)
--years YEARS Total life time in years (default=20)
--years YEARS Total life time in years (default=20)
--no_bins NO_BINS Number of bins for fatigue loads (default=46)
--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
--envelopeblade calculate the load envelope for sensors on the blades
--envelopeturbine calculate the load envelope for sensors on the turbine
--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):
...
@@ -265,11 +265,14 @@ def launch_param(sim_id):
def
post_launch
(
sim_id
,
statistics
=
True
,
rem_failed
=
True
,
check_logs
=
True
,
def
post_launch
(
sim_id
,
statistics
=
True
,
rem_failed
=
True
,
check_logs
=
True
,
force_dir
=
False
,
update
=
False
,
saveinterval
=
2000
,
csv
=
False
,
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
,
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_new_sigs
=
False
,
envelopeturbine
=
False
,
envelopeblade
=
False
,
save_iter
=
False
,
AEP
=
False
):
save_iter
=
False
,
AEP
=
False
):
if
neq
<
0
:
neq
=
None
# =========================================================================
# =========================================================================
# check logfiles, results files, pbs output files
# check logfiles, results files, pbs output files
# logfile analysis is written to a csv file in logfiles directory
# logfile analysis is written to a csv file in logfiles directory
...
@@ -406,8 +409,10 @@ if __name__ == '__main__':
...
@@ -406,8 +409,10 @@ if __name__ == '__main__':
dest
=
'
years
'
,
help
=
'
Total life time in years
'
)
dest
=
'
years
'
,
help
=
'
Total life time in years
'
)
parser
.
add_argument
(
'
--no_bins
'
,
type
=
float
,
default
=
46.0
,
action
=
'
store
'
,
parser
.
add_argument
(
'
--no_bins
'
,
type
=
float
,
default
=
46.0
,
action
=
'
store
'
,
dest
=
'
no_bins
'
,
help
=
'
Number of bins for fatigue loads
'
)
dest
=
'
no_bins
'
,
help
=
'
Number of bins for fatigue loads
'
)
parser
.
add_argument
(
'
--neq
'
,
type
=
float
,
default
=
1e6
,
action
=
'
store
'
,
parser
.
add_argument
(
'
--neq
'
,
type
=
float
,
default
=-
1.0
,
action
=
'
store
'
,
dest
=
'
neq
'
,
help
=
'
Equivalent cycles neq
'
)
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
'
,
parser
.
add_argument
(
'
--nn_twt
'
,
type
=
float
,
default
=
20
,
action
=
'
store
'
,
dest
=
'
nn_twt
'
,
help
=
'
Node number tower top
'
)
dest
=
'
nn_twt
'
,
help
=
'
Node number tower top
'
)
parser
.
add_argument
(
'
--nn_blr
'
,
type
=
float
,
default
=
4
,
action
=
'
store
'
,
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