Newer
Older
# -*- coding: utf-8 -*-
"""
Created on Tue Jan 14 14:12:58 2014
@author: dave
"""
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
from __future__ import absolute_import
from builtins import range
from builtins import int
from future import standard_library
standard_library.install_aliases()
from builtins import object
import os
import re
import numpy as np
import pandas as pd
from wetb.prepost import mplutils
def __init__(self, name='dummy'):
self.__name__ = name
def ReadFileHAWCStab2Header(fname):
"""
Read a file with a weird HAWCStab2 header that starts with a #, and
includes the column number and units between square brackets.
"""
regex = re.compile('(\\[.*?\\])')
def _withgradients(fname):
df = pd.read_fwf(fname, header=1, widths=[30]*27)
# find all units
units = regex.findall(''.join(df.columns))
df.columns = [k[:-2].replace('#', '').strip() for k in df.columns]
return df, units
def _newformat(fname):
df = pd.read_fwf(fname, header=0, widths=[20]*15)
# find all units
units = regex.findall(''.join(df.columns))
df.columns = [k[:-2].replace('#', '').strip() for k in df.columns]
return df, units
def _oldformat(fname):
df = pd.read_fwf(fname, header=0, widths=[14]*13)
# find all units
units = regex.findall(''.join(df.columns))
df.columns = [k.replace('#', '').strip() for k in df.columns]
return df, units
with open(fname) as f:
line = f.readline()
if len(line) > 800:
return _withgradients(fname)
if len(line) > 200:
return _newformat(fname)
else:
return _oldformat(fname)
class InductionResults(object):
def __init__(self):
pass
def read(self, fname):
self.data = np.loadtxt(fname)
self.wsp = int(fname.split('_u')[-1][:-4]) / 1000.0

David Verelst
committed
try:
self.df_data = pd.read_fwf(fname, header=0, widths=[14]*38)
except:
self.df_data = pd.read_fwf(fname, header=0, widths=[14]*34)
# sanitize the headers
cols = self.df_data.columns
self.df_data.columns = [k[:-2].replace('#', '').strip() for k in cols]
class results(object):
"""
Loading HAWCStab2 result files
"""
def __init__(self):
pass
def load_pwr(self, fname):
pwr = np.loadtxt(fname)
res = dummy()
res.wind = pwr[:,0]
res.power = pwr[:,1]
res.thrust = pwr[:,2]
res.cp = pwr[:,3]
res.ct = pwr[:,4]
res.pitch_deg = pwr[:,8]
res.rpm = pwr[:,9]
return res
def load_pwr_df(self, fname):
return ReadFileHAWCStab2Header(fname)
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
def load_cmb(self, fname):
cmb = np.loadtxt(fname)
# when there is only data for one operating condition we only have one
# row and consequently only a 1D array
if len(cmb.shape) == 1:
cmb = cmb.reshape( (1, cmb.shape[0]) )
wind = cmb[:,0]
ii = int((cmb.shape[1]-1)/2)
freq = cmb[:,1:ii+1]
damp = cmb[:,ii+1:]
return wind, freq, damp
def load_cmb_df(self, fname):
# index name can be rotor speed or wind speed
with open(fname) as f:
header = f.readline()
oper_name = header.split('1')[0].strip().replace('#', '').lower()
oper_name = oper_name.replace(' ', '').replace('[', '_')[:-1]
oper_name = oper_name.replace('/', '')
speed, freq, damp = self.load_cmb(fname)
mods = freq.shape[1]
ops = freq.shape[0]
df = pd.DataFrame(columns=[oper_name, 'Fd_hz', 'damp_ratio', 'mode'])
df['Fd_hz'] = freq.flatten()
df['damp_ratio'] = damp.flatten()
# now each mode number is a row so that means that each operating
# point is now repeated as many times as there are modes
df[oper_name] = speed.repeat(mods)
modes = np.arange(1, mods+1, 1)
df['mode'] = modes.reshape((1,mods)).repeat(ops, axis=0).flatten()
return df
def load_frf(self, fname, nr_inputs=3):
frf = np.loadtxt(fname)
self.nr_outputs = ((frf.shape[1] - 1) / 2) / nr_inputs
self.nr_inputs = nr_inputs
return frf
def load_ind(self, fname):
self.ind = InductionResults()
self.ind.read(fname)
def load_operation(self, fname):
operation = np.loadtxt(fname, skiprows=1)
# when the array is empty, set operation to an empty DataFrame
if len(operation) == 0:
cols = ['windspeed', 'pitch_deg', 'rotorspeed_rpm']
self.operation = pd.DataFrame(columns=cols)
return
# when there is only one data point, the array is 1D, we allways need
# a 2D array otherwise the columns become rows in the DataFrame
elif len(operation.shape) == 1:
operation = operation.reshape((1, operation.shape[0]))
try:
cols = ['windspeed', 'pitch_deg', 'rotorspeed_rpm']
self.operation = pd.DataFrame(operation, columns=cols)
except ValueError:
cols = ['windspeed', 'pitch_deg', 'rotorspeed_rpm', 'P_aero',
'T_aero']
self.operation = pd.DataFrame(operation, columns=cols)
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
def load_matrices(self, fpath, basename, operating_point=1,
control_mat=False, local_wind_mat=False):
"""Load HAWCStab2 State Space system matrices
The general file name format is:
BASENAMETYPE_ase_ops_OPERATING_POINT_NUMBER.dat
Where TYPE can be of the following:
* amat, bmat, bvmat, cmat, dmat, dvmat, emat, fmat, fvmat
Additionally, when including the control matrices:
* BASENAMETYPE_ops_OPERATING_POINT_NUMBER.dat
* TYPE: acmat, bcmat, ccmat, dcmat
Or when including local wind speed
* BASENAMETYPE_ase_ops_OPERATING_POINT_NUMBER.dat
* TYPE: bvmat_loc_v, dvmat_loc_v, fvmat_loc_v
Parameters
----------
fpath : str
basename : str
operating_point : int, default=1
Returns
-------
matrices : dict
"""
mnames = ['amat', 'bmat', 'bvmat', 'cmat', 'dmat', 'dvmat', 'emat',
'fmat', 'fvmat']
mnames_c = ['acmat', 'bcmat', 'ccmat', 'dcmat']
mnames_v = ['bvmat_loc_v', 'dvmat_loc_v', 'fvmat_loc_v']
if control_mat:
mnames += mnames_c
if local_wind_mat:
mnames += mnames_v
matrices = {}
ase_template = '{:s}{:s}_ase_ops_{:d}.dat'
ops_template = '{:s}{:s}_ops_{:d}.dat'
for mname in mnames:
rpl = (basename, mname, operating_point)
template = ase_template
if mname in mnames_c:
template = ops_template
fname = os.path.join(fpath, template.format(*rpl))
matrices[mname] = np.loadtxt(fname)
return matrices
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
def write_ae_sections_h2(self):
"""
Get the aerosection positions from the HS2 ind result file and
write them as outputs for HAWC2
"""
self.ind
def plot_pwr(self, figname, fnames, labels=[], figsize=(11,7.15), dpi=120):
results = []
if isinstance(fnames, list):
if len(fnames) > 4:
raise ValueError('compare up to maximum 4 HawcStab2 cases')
for fname in fnames:
results.append(self.load_pwr(fname))
# if the labels are not defined, take the file name
if len(labels) < len(fnames):
labels.append(os.path.basename(fname))
else:
results.append(self.load_pwr(fname))
colors = list('krbg')
symbols = list('o<+x')
alphas = [1.0, 0.9, 0.8, 0.75]
fig, axes = mplutils.subplots(nrows=2, ncols=2, figsize=figsize,
dpi=dpi, num=0)
for i, res in enumerate(results):
ax = axes[0,0]
ax.plot(res.wind, res.power, color=colors[i], label=labels[i],
marker=symbols[i], ls='-', alpha=alphas[i])
ax.set_title('Aerodynamic Power [kW]')
ax = axes[0,1]
ax.plot(res.wind, res.pitch_deg, color=colors[i], label=labels[i],
marker=symbols[i], ls='-', alpha=alphas[i])
ax.set_title('Pitch [deg]')
ax = axes[1,0]
ax.plot(res.wind, res.thrust, color=colors[i], label=labels[i],
marker=symbols[i], ls='-', alpha=alphas[i])
ax.set_title('Thrust [kN]')
ax = axes[1,1]
ax.plot(res.wind, res.cp, label='$C_p$ %s ' % labels[i], ls='-',
color=colors[i], marker=symbols[i], alpha=alphas[i])
ax.plot(res.wind, res.ct, label='$C_t$ %s ' % labels[i], ls='--',
color=colors[i], marker=symbols[i], alpha=alphas[i])
ax.set_title('Power and Thrust coefficients [-]')
for ax in axes.ravel():
ax.legend(loc='best')
ax.grid(True)
ax.set_xlim([res.wind[0], res.wind[-1]])
fig.tight_layout()
print('saving figure: %s ... ' % figname, end='')
figpath = os.path.dirname(figname)
if not os.path.exists(figpath):
os.makedirs(figpath)
fig.savefig(figname)
fig.clear()
print('done!')
class ReadControlTuning(object):
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
def __init__(self):
"""
"""
pass
def parse_line(self, line, controller):
split1 = line.split('=')
var1 = split1[0].strip()
try:
val1 = float(split1[1].split('[')[0])
attr = getattr(self, controller)
setattr(attr, var1, val1)
if len(split1) > 2:
var2 = split1[1].split(',')[1].strip()
val2 = float(split1[2].split('[')[0])
setattr(attr, var2, val2)
except IndexError:
pass
def read_parameters(self, fpath):
"""
Read the controller tuning file
===============================
"""
with open(fpath, "r") as f:
for i, line in enumerate(f):
if i == 0:
controller = 'pi_gen_reg1'
setattr(self, controller, dummy())
elif i == 2:
controller = 'pi_gen_reg2'
setattr(self, controller, dummy())
elif i == 6:
controller = 'pi_pitch_reg3'
setattr(self, controller, dummy())
elif i == 10:
controller = 'aero_damp'
setattr(self, controller, dummy())
else:
self.parse_line(line, controller)
# set some parameters to zero for the linear case, or when aerodynamic
# gain scheduling is not used
if not hasattr(self.pi_pitch_reg3, 'K2'):
setattr(self.pi_pitch_reg3, 'K2', 0.0)
if not hasattr(self.aero_damp, 'Kp2'):
setattr(self.aero_damp, 'Kp2', 0.0)
if not hasattr(self.aero_damp, 'Ko1'):
setattr(self.aero_damp, 'Ko1', 0.0)
if not hasattr(self.aero_damp, 'Ko2'):
setattr(self.aero_damp, 'Ko2', 0.0)
def parameters2tags(self):
"""Convert the tuning parameters into a dictionary whos keys are
compatible with tag names in a HAWC2 master file.
"""
tune_tags = {}
tune_tags['[pi_gen_reg1.K]'] = self.pi_gen_reg1.K
tune_tags['[pi_gen_reg2.I]'] = self.pi_gen_reg2.I
tune_tags['[pi_gen_reg2.Kp]'] = self.pi_gen_reg2.Kp
tune_tags['[pi_gen_reg2.Ki]'] = self.pi_gen_reg2.Ki
tune_tags['[pi_gen_reg2.Kd]'] = 0.0
tune_tags['[pi_pitch_reg3.Kp]'] = self.pi_pitch_reg3.Kp
tune_tags['[pi_pitch_reg3.Ki]'] = self.pi_pitch_reg3.Ki
tune_tags['[pi_pitch_reg3.K1]'] = self.pi_pitch_reg3.K1
tune_tags['[pi_pitch_reg3.K2]'] = self.pi_pitch_reg3.K2
tune_tags['[aero_damp.Kp2]'] = self.aero_damp.Kp2
tune_tags['[aero_damp.Ko1]'] = self.aero_damp.Ko1
tune_tags['[aero_damp.Ko2]'] = self.aero_damp.Ko2
return tune_tags
if __name__ == '__main__':