This repository was archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathhawc2_pc_file.py
97 lines (81 loc) · 2.97 KB
/
hawc2_pc_file.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
"""
Hawc2 pc file
"""
import pandas as pd
import numpy as np
import os
try:
from .file import File, WrongFormatError, EmptyFileError
except:
EmptyFileError = type('EmptyFileError', (Exception,),{})
WrongFormatError = type('WrongFormatError', (Exception,),{})
from .wetb.hawc2.pc_file import PCFile
class HAWC2PCFile(File):
@staticmethod
def defaultExtensions():
return ['.dat','.pc','.txt']
@staticmethod
def formatName():
return 'HAWC2 PC file'
def __init__(self,filename=None,**kwargs):
if filename:
self.filename = filename
self.read(**kwargs)
else:
self.filename = None
self.data = PCFile()
def read(self, filename=None, **kwargs):
if filename:
self.filename = filename
if not self.filename:
raise Exception('No filename provided')
if not os.path.isfile(self.filename):
raise OSError(2,'File not found:',self.filename)
if os.stat(self.filename).st_size == 0:
raise EmptyFileError('File is empty:',self.filename)
# ---
try:
self.data = PCFile(self.filename)
except Exception as e:
raise WrongFormatError('PC File {}: '.format(self.filename)+e.args[0])
def write(self, filename=None):
if filename:
self.filename = filename
if not self.filename:
raise Exception('No filename provided')
# ---
self.data.save(self.filename)
def toDataFrame(self):
cols=['Alpha_[deg]','Cl_[-]','Cd_[-]','Cm_[-]']
dfs = {}
for iset in self.data.pc_sets.keys():
vt, vpolar = self.data.pc_sets[iset]
for ipol in range(len(vt)):
name='pc_set_{}_t_{}'.format(iset,vt[ipol])
dfs[name] = pd.DataFrame(data=vpolar[ipol], columns=cols)
return dfs
# --- Useful function
def add_set(self, set_label, thicknesses, profiles):
"""
thicknesses: list of thicknesses
profiles: list of polars, where each polar is an array (nx4) of alpha(deg), Cl, Cd, Cm
"""
self.data.pc_sets[set_label] = (np.array(thicknesses), profiles)
@property
def sets(self):
return self.pc_sets
def __repr__(self):
cols=['Alpha_[deg]','Cl_[-]','Cd_[-]','Cm_[-]']
#nRows = 0
s='<{} object>\n'.format(type(self).__name__)
s+='| Attributes:\n'
s+='| - filename: {}\n'.format(self.filename)
s+='| - data: PCFile, with attributes `pc_sets`\n'
s+='| Derived attributes:\n'
s+='| * sets: dict of length: {}:\n'.format(len(self.data.pc_sets))
for iset in self.data.pc_sets.keys():
vt, vpolar = self.data.pc_sets[iset]
nRows = [np.asarray(s).shape[0] for s in vpolar]
s+='| key: {}, len: {}, thicknesses: {}, rows: {}\n'.format(iset, len(vt), vt, nRows)
s+='| Methods: add_set, toDataFrame\n'
return s