-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexampleScript.py
35 lines (26 loc) · 941 Bytes
/
exampleScript.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
#!/bin/python3
import logging
import sys
from pathlib import Path
import constants as const
import utils
import sowfatools as sowfa
import plottools as plot
import pvtools as pv
import waketools as wake
logger = logging.getLogger(__name__)
def main(casenames):
for casename in casenames:
logger.info(f'Processing turbineOutput for case {casename}')
casedir = const.CASES_DIR / casename
utils.configure_logging((casedir / const.SOWFATOOLS_DIR
/ f'log.{Path(__file__).stem}'),
level=logging.DEBUG)
# Add script details here
# logging.getLogger('matplotlib').setLevel(logging.WARNING)
# import matplotlib.pyplot as plt
# plt.plot(subdata[:,1],subdata[:,-1])
# plt.plot(subdata[:,1],average)
# plt.savefig('test1.png')
if __name__ == "__main__":
main(sys.argv[1:])