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.
18 lines
301 B
18 lines
301 B
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')
|
|
|
|
|