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
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
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
Admin message
The Gitlab server is succesfully updated to version 17.10.3
Show more breadcrumbs
mimc
WindEnergyToolbox
Commits
d7eaefb3
Commit
d7eaefb3
authored
6 years ago
by
David Verelst
Browse files
Options
Downloads
Patches
Plain Diff
prepost.windIO: convenience func cycle_matrix2,
H2 12.6 has slightly different sel file
parent
c6bdcd0e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
wetb/prepost/windIO.py
+38
-3
38 additions, 3 deletions
wetb/prepost/windIO.py
with
38 additions
and
3 deletions
wetb/prepost/windIO.py
+
38
−
3
View file @
d7eaefb3
...
...
@@ -40,7 +40,7 @@ from wetb.prepost import misc
# wind energy python toolbox, available on the dtu wind redmine server:
# http://vind-redmine.win.dtu.dk/projects/pythontoolbox/repository/show/fatigue_tools
from
wetb.hawc2.Hawc2io
import
ReadHawc2
from
wetb.fatigue_tools.fatigue
import
eq_load
from
wetb.fatigue_tools.fatigue
import
(
eq_load
,
cycle_matrix2
)
class
LogFile
(
object
):
...
...
@@ -347,6 +347,10 @@ class LogFile(object):
tempLog
.
append
(
''
)
tempLog
.
append
(
''
)
# FIXME: we the sim crashes at generating the turbulence box
# there is one element too much at the end
tempLog
=
tempLog
[:
len
(
self
.
_header
().
split
(
'
;
'
))]
# save the iterations in the results folder
if
save_iter
:
fiter
=
os
.
path
.
basename
(
fname
).
replace
(
'
.log
'
,
'
.iter
'
)
...
...
@@ -384,7 +388,7 @@ class LogFile(object):
"""
Read a csv log file analysis and convert to a pandas.DataFrame
"""
colnames
,
min_itemsize
,
dtypes
=
self
.
headers4df
()
df
=
pd
.
read_csv
(
fname
,
header
=
header
,
names
=
colnames
,
sep
=
'
;
'
,
)
df
=
pd
.
read_csv
(
fname
,
header
=
header
,
names
=
colnames
,
sep
=
'
;
'
)
for
col
,
dtype
in
dtypes
.
items
():
df
[
col
]
=
df
[
col
].
astype
(
dtype
)
# replace nan with empty for str columns
...
...
@@ -1024,7 +1028,7 @@ class LoadResults(ReadHawc2):
sensortype
=
self
.
ch_details
[
ch
,
0
].
split
(
'
,
'
)[
0
]
# is this always valid?
blade_nr
=
self
.
ch_details
[
ch
,
2
].
split
(
'
blade
'
)[
1
][
0
]
blade_nr
=
self
.
ch_details
[
ch
,
2
].
split
(
'
blade
'
)[
1
]
.
split
()
[
0
]
# sometimes the units for aero sensors are wrong!
units
=
self
.
ch_details
[
ch
,
1
]
# there is no label option
...
...
@@ -1526,6 +1530,37 @@ class LoadResults(ReadHawc2):
return
eq_load
(
signal
,
no_bins
=
no_bins
,
m
=
m
,
neq
=
neq
)[
0
]
def
cycle_matrix
(
self
,
signal
,
no_bins
=
46
):
"""
Cycle/Markov matrix.
Convenience function for wetb.fatigue_tools.fatigue.cycle_matrix2
Parameters
----------
signal: 1D array
One dimentional array containing the signal.
no_bins: int
Number of bins for the binning of the amplitudes.
Returns
-------
cycles : ndarray, shape(ampl_bins, mean_bins)
A bi-dimensional histogram of load cycles(full cycles). Amplitudes
are histogrammed along the first dimension and mean values are
histogrammed along the second dimension.
ampl_edges : ndarray, shape(no_bins+1,n)
The amplitude bin edges
mean_edges : ndarray, shape(no_bins+1,n)
The mean bin edges
"""
return
cycle_matrix2
(
signal
,
no_bins
)
def
blade_deflection
(
self
):
"""
"""
...
...
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