You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
301 B
19 lines
301 B
11 months ago
|
import io
|
||
|
import numpy as np
|
||
|
|
||
|
class StressFile:
|
||
|
def readOutFile(self,filename):
|
||
|
result = {
|
||
|
'frequency': [],
|
||
|
'temperatures': []
|
||
|
}
|
||
|
with open(filename,'r') as f:
|
||
|
content = f.readlines()
|
||
|
print(f'conent= {content}')
|
||
|
|
||
|
|
||
|
sf = StressFile()
|
||
|
|
||
|
sf.readOutFile('./kodos.out')
|
||
|
|