-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathresults.go
188 lines (160 loc) · 4.03 KB
/
results.go
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
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
181
182
183
184
185
186
187
188
package main
import (
"acdc/lin"
"bytes"
"encoding/json"
"fmt"
"os"
"path/filepath"
"regexp"
)
type Results struct {
LinDir string `json:"LinDir"`
HasWind bool `json:"HasWind"`
OPs []OperatingPoint `json:"OPs"`
LinOPs []lin.LinOP `json:"LinOPs"`
}
type OperatingPoint struct {
ID int `json:"ID"`
Files []string `json:"Files"`
RotSpeed float32 `json:"RotSpeed"` // RPM
WindSpeed float32 `json:"WindSpeed"` // m/s
Modes []Mode `json:"Modes"`
}
type Mode struct {
ID int `json:"ID"`
OP int `json:"OP"`
NaturalFreqHz float32 `json:"NaturalFreqHz"`
DampedFreqHz float32 `json:"DampedFreqHz"`
DampingRatio float32 `json:"DampingRatio"`
}
func NewResults() *Results {
return &Results{}
}
// ForApp returns the results structure without the LinOPs member.
func (res *Results) ForApp() *Results {
results := *res
results.LinOPs = nil
return &results
}
func ProcessCaseDir(path string) (*Results, error) {
// Search for linearization files
LinFiles, err := filepath.Glob(filepath.Join(path, "*.lin"))
if err != nil {
return nil, err
}
linRe := regexp.MustCompile(`.+?\.\d+\.lin`)
tmp := LinFiles
LinFiles = []string{}
for _, f := range tmp {
if linRe.MatchString(f) {
LinFiles = append(LinFiles, f)
}
}
if len(LinFiles) == 0 {
return nil, fmt.Errorf("no linearization files found")
}
// Process linearization files into results
linResults, err := lin.ProcessFiles(LinFiles)
if err != nil {
return nil, err
}
// Initialize results structure
results := &Results{
LinDir: path,
LinOPs: linResults,
}
// Extract data from linearization results
for i, lr := range linResults {
results.HasWind = lr.MBC.WindSpeed > 0 || results.HasWind
modes := []Mode{}
for j, m := range lr.Modes {
modes = append(modes, Mode{
ID: j,
OP: i,
NaturalFreqHz: float32(m.NaturalFreqHz),
DampedFreqHz: float32(m.DampedFreqHz),
DampingRatio: float32(m.DampingRatio),
})
}
results.OPs = append(results.OPs,
OperatingPoint{
ID: i,
Files: lr.FilePaths,
RotSpeed: float32(lr.MBC.RotSpeed),
WindSpeed: float32(lr.MBC.WindSpeed),
Modes: modes,
},
)
}
return results, nil
}
func (r *Results) Save(caseDir string) error {
// Write results data to file
bs, err := json.MarshalIndent(r, "", "\t")
if err != nil {
return err
}
err = os.WriteFile(filepath.Join(caseDir, "results.json"), bs, 0777)
if err != nil {
return err
}
// Loop through linearization OPs
for _, linOP := range r.LinOPs {
linOP.RootPath = filepath.Join(caseDir, filepath.Base(linOP.RootPath))
// Write MBC data to file
bs, err := json.MarshalIndent(linOP.MBC, "", "\t")
if err != nil {
return err
}
err = os.WriteFile(linOP.RootPath+"_mbc.json", bs, 0777)
if err != nil {
return err
}
// Write Eigen analysis mode results data to file
w := &bytes.Buffer{}
linOP.Modes.ToCSV(w)
err = os.WriteFile(linOP.RootPath+"_modes.csv", w.Bytes(), 0777)
if err != nil {
return err
}
}
return nil
}
func LoadResults(linDir string) (*Results, error) {
// Create results structure
r := Results{}
// Load results
bs, err := os.ReadFile(filepath.Join(linDir, "results.json"))
if err != nil {
return nil, err
}
if err := json.Unmarshal(bs, &r); err != nil {
return nil, err
}
// Loop through linearization OPs
for i := range r.LinOPs {
linOP := &r.LinOPs[i]
linOP.RootPath = filepath.Join(linDir, filepath.Base(linOP.RootPath))
// Load MBC data
bs, err := os.ReadFile(linOP.RootPath + "_mbc.json")
if err != nil {
return nil, err
}
err = json.Unmarshal(bs, &linOP.MBC)
if err != nil {
return nil, err
}
// Write Eigen analysis mode results data to file
modesFile := linOP.RootPath + "_modes.csv"
bs, err = os.ReadFile(modesFile)
if err != nil {
return nil, err
}
linOP.Modes, err = lin.ReadModesCSV(bytes.NewReader(bs))
if err != nil {
return nil, fmt.Errorf("error parsing '%s': %w", modesFile, err)
}
}
return &r, nil
}