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
Admin message
The Gitlab server is succesfully updated to version 17.10.3
Show more breadcrumbs
toolbox
WindEnergyToolbox
Commits
e9987a4a
Commit
e9987a4a
authored
9 years ago
by
David Verelst
Browse files
Options
Downloads
Patches
Plain Diff
h2_vs_hs2: move HAWC2 channel mapping to turbine specific configuration settings
parent
506c350a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
wetb/prepost/h2_vs_hs2.py
+32
-21
32 additions, 21 deletions
wetb/prepost/h2_vs_hs2.py
with
32 additions
and
21 deletions
wetb/prepost/h2_vs_hs2.py
+
32
−
21
View file @
e9987a4a
...
@@ -18,7 +18,7 @@ from wetb.prepost import hawcstab2 as hs2
...
@@ -18,7 +18,7 @@ from wetb.prepost import hawcstab2 as hs2
from
wetb.prepost
import
mplutils
from
wetb.prepost
import
mplutils
class
Config
urations
:
class
Config
Base
:
def
__init__
(
self
):
def
__init__
(
self
):
pass
pass
...
@@ -499,11 +499,18 @@ class Sims(object):
...
@@ -499,11 +499,18 @@ class Sims(object):
class
MappingsH2HS2
(
object
):
class
MappingsH2HS2
(
object
):
def
__init__
(
self
,
c
hord_length
=
3.0
):
def
__init__
(
self
,
c
onfig
):
"""
"""
Parameters
----------
config : Config class based on ConfigBase
"""
"""
self
.
hs2_res
=
hs2
.
results
()
self
.
hs2_res
=
hs2
.
results
()
self
.
chord_length
=
chord_length
self
.
chord_length
=
config
.
chord_length
self
.
h2_maps
=
config
.
h2_maps
def
powercurve
(
self
,
h2_df_stats
,
fname_hs
):
def
powercurve
(
self
,
h2_df_stats
,
fname_hs
):
...
@@ -512,19 +519,15 @@ class MappingsH2HS2(object):
...
@@ -512,19 +519,15 @@ class MappingsH2HS2(object):
def
_powercurve_h2
(
self
,
df_stats
):
def
_powercurve_h2
(
self
,
df_stats
):
mappings
=
{
'
Ae rot. power
'
:
'
P_aero
'
,
'
Ae rot. thrust
'
:
'
T_aero
'
,
'
Vrel-1-39.03
'
:
'
vrel_39
'
,
'
Omega
'
:
'
rotorspeed
'
,
'
tower-tower-node-010-forcevec-y
'
:
'
T_towertop
'
,
'
tower-shaft-node-003-forcevec-y
'
:
'
T_shafttip
'
}
df_stats
.
sort_values
(
'
[windspeed]
'
,
inplace
=
True
)
df_stats
.
sort_values
(
'
[windspeed]
'
,
inplace
=
True
)
df_mean
=
pd
.
DataFrame
()
df_mean
=
pd
.
DataFrame
()
df_std
=
pd
.
DataFrame
()
df_std
=
pd
.
DataFrame
()
for
key
,
value
in
mapping
s
.
items
():
for
key
,
value
in
self
.
h2_map
s
.
items
():
tmp
=
df_stats
[
df_stats
[
'
channel
'
]
==
key
]
tmp
=
df_stats
[
df_stats
[
'
channel
'
]
==
key
]
if
len
(
tmp
)
==
0
:
msg
=
'
channel %s is required for %s but not found
'
%
(
key
,
value
)
raise
ValueError
(
msg
)
df_mean
[
value
]
=
tmp
[
'
mean
'
].
values
.
copy
()
df_mean
[
value
]
=
tmp
[
'
mean
'
].
values
.
copy
()
df_std
[
value
]
=
tmp
[
'
std
'
].
values
.
copy
()
df_std
[
value
]
=
tmp
[
'
std
'
].
values
.
copy
()
...
@@ -718,7 +721,13 @@ class Plots(object):
...
@@ -718,7 +721,13 @@ class Plots(object):
the HAWC2 output output_at_time, and HAWCStab2 output *.ind
the HAWC2 output output_at_time, and HAWCStab2 output *.ind
"""
"""
def
__init__
(
self
):
def
__init__
(
self
,
config
):
"""
Parameters
----------
config : Config class based on ConfigBase
"""
self
.
h2c
=
'
b
'
self
.
h2c
=
'
b
'
self
.
h2ms
=
'
+
'
self
.
h2ms
=
'
+
'
...
@@ -733,6 +742,8 @@ class Plots(object):
...
@@ -733,6 +742,8 @@ class Plots(object):
self
.
errlab
=
'
diff
'
self
.
errlab
=
'
diff
'
self
.
interactive
=
False
self
.
interactive
=
False
self
.
config
=
config
self
.
dist_size
=
(
16
,
11
)
self
.
dist_size
=
(
16
,
11
)
self
.
dist_nrows
=
3
self
.
dist_nrows
=
3
self
.
dist_ncols
=
4
self
.
dist_ncols
=
4
...
@@ -742,7 +753,7 @@ class Plots(object):
...
@@ -742,7 +753,7 @@ class Plots(object):
def
load_h2
(
self
,
fname_h2
,
h2_df_stats
=
None
,
fname_h2_tors
=
None
):
def
load_h2
(
self
,
fname_h2
,
h2_df_stats
=
None
,
fname_h2_tors
=
None
):
res
=
MappingsH2HS2
()
res
=
MappingsH2HS2
(
self
.
config
)
res
.
h2_res
=
sim
.
windIO
.
ReadOutputAtTime
(
fname_h2
)
res
.
h2_res
=
sim
.
windIO
.
ReadOutputAtTime
(
fname_h2
)
res
.
_distribution_h2
()
res
.
_distribution_h2
()
if
h2_df_stats
is
not
None
:
if
h2_df_stats
is
not
None
:
...
@@ -754,7 +765,7 @@ class Plots(object):
...
@@ -754,7 +765,7 @@ class Plots(object):
def
load_hs
(
self
,
fname_hs
):
def
load_hs
(
self
,
fname_hs
):
res
=
MappingsH2HS2
()
res
=
MappingsH2HS2
(
self
.
config
)
res
.
hs2_res
.
load_ind
(
fname_hs
)
res
.
hs2_res
.
load_ind
(
fname_hs
)
res
.
_distribution_hs2
()
res
.
_distribution_hs2
()
...
@@ -943,7 +954,7 @@ class Plots(object):
...
@@ -943,7 +954,7 @@ class Plots(object):
Number of nodes to ignore at the blade root section
Number of nodes to ignore at the blade root section
"""
"""
results
=
MappingsH2HS2
()
results
=
MappingsH2HS2
(
self
.
config
)
results
.
blade_distribution
(
fname_h2
,
fname_hs2
,
h2_df_stats
=
h2_df_stats
,
results
.
blade_distribution
(
fname_h2
,
fname_hs2
,
h2_df_stats
=
h2_df_stats
,
fname_h2_tors
=
fname_h2_tors
)
fname_h2_tors
=
fname_h2_tors
)
res
=
[
results
.
h2_aero
[
n0
+
1
:
-
1
],
results
.
hs_aero
[
n0
:]]
res
=
[
results
.
h2_aero
[
n0
+
1
:
-
1
],
results
.
hs_aero
[
n0
:]]
...
@@ -966,7 +977,7 @@ class Plots(object):
...
@@ -966,7 +977,7 @@ class Plots(object):
output file.
output file.
"""
"""
results
=
MappingsH2HS2
()
results
=
MappingsH2HS2
(
self
.
config
)
results
.
blade_distribution
(
fname_h2
,
fname_hs2
)
results
.
blade_distribution
(
fname_h2
,
fname_hs2
)
res
=
[
results
.
h2_aero
[
n0
+
1
:
-
1
],
results
.
hs_aero
[
n0
:]]
res
=
[
results
.
h2_aero
[
n0
+
1
:
-
1
],
results
.
hs_aero
[
n0
:]]
...
@@ -983,7 +994,7 @@ class Plots(object):
...
@@ -983,7 +994,7 @@ class Plots(object):
def
powercurve
(
self
,
h2_df_stats
,
fname_hs
,
title
,
size
=
(
8.6
,
4
)):
def
powercurve
(
self
,
h2_df_stats
,
fname_hs
,
title
,
size
=
(
8.6
,
4
)):
results
=
MappingsH2HS2
()
results
=
MappingsH2HS2
(
self
.
config
)
results
.
powercurve
(
h2_df_stats
,
fname_hs
)
results
.
powercurve
(
h2_df_stats
,
fname_hs
)
fig
,
axes
=
self
.
new_fig
(
title
=
title
,
nrows
=
1
,
ncols
=
2
,
size
=
size
)
fig
,
axes
=
self
.
new_fig
(
title
=
title
,
nrows
=
1
,
ncols
=
2
,
size
=
size
)
...
@@ -1050,11 +1061,11 @@ class Plots(object):
...
@@ -1050,11 +1061,11 @@ class Plots(object):
def
h2_powercurve
(
self
,
h2_df_stats1
,
h2_df_stats2
,
title
,
labels
,
def
h2_powercurve
(
self
,
h2_df_stats1
,
h2_df_stats2
,
title
,
labels
,
size
=
(
8.6
,
4
)):
size
=
(
8.6
,
4
)):
res1
=
MappingsH2HS2
()
res1
=
MappingsH2HS2
(
self
.
config
)
res1
.
_powercurve_h2
(
h2_df_stats1
)
res1
.
_powercurve_h2
(
h2_df_stats1
)
wind1
=
res1
.
pwr_h2_mean
[
'
windspeed
'
].
values
wind1
=
res1
.
pwr_h2_mean
[
'
windspeed
'
].
values
res2
=
MappingsH2HS2
()
res2
=
MappingsH2HS2
(
self
.
config
)
res2
.
_powercurve_h2
(
h2_df_stats2
)
res2
.
_powercurve_h2
(
h2_df_stats2
)
wind2
=
res2
.
pwr_h2_mean
[
'
windspeed
'
].
values
wind2
=
res2
.
pwr_h2_mean
[
'
windspeed
'
].
values
...
@@ -1116,11 +1127,11 @@ class Plots(object):
...
@@ -1116,11 +1127,11 @@ class Plots(object):
def
hs_powercurve
(
self
,
fname1
,
fname2
,
title
,
labels
,
size
=
(
8.6
,
4
)):
def
hs_powercurve
(
self
,
fname1
,
fname2
,
title
,
labels
,
size
=
(
8.6
,
4
)):
res1
=
MappingsH2HS2
()
res1
=
MappingsH2HS2
(
self
.
config
)
res1
.
_powercurve_hs2
(
fname1
)
res1
.
_powercurve_hs2
(
fname1
)
wind1
=
res1
.
pwr_hs
[
'
windspeed
'
].
values
wind1
=
res1
.
pwr_hs
[
'
windspeed
'
].
values
res2
=
MappingsH2HS2
()
res2
=
MappingsH2HS2
(
self
.
config
)
res2
.
_powercurve_hs2
(
fname2
)
res2
.
_powercurve_hs2
(
fname2
)
wind2
=
res2
.
pwr_hs
[
'
windspeed
'
].
values
wind2
=
res2
.
pwr_hs
[
'
windspeed
'
].
values
...
...
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