资源简介
此程序用于读取指定步数指定内容指定节点的PROCAST的仿真结果,可读取各种温度、各种应力、各种位移数据
代码片段和文件信息
import re
try:
f = open(‘ci_data.txt‘)
except IOError:
print(‘ci_data.txt不存在!‘)
sys.exit(2)
f1 = open(‘Estress.txt‘ ‘w‘)
for line in f:
s = line.split()
if len(s) <= 1:
continue
else:
if re.match(r‘\d+‘ s[0]):
print(‘%15.6f %15.6f %15.6f‘ %(float(s[1]) float(s[2]) float(s[3])) end=‘‘ file=f1)
if re.match(‘Effective Stress‘ s[0]+‘ ‘+s[1]):
print(‘%15.6f‘ % float(s[2]) file=f1)
elif re.match(‘Total Displacement‘ s[0]+‘ ‘+s[1]):
print(‘%15.6f‘ % float(s[2]) file=f1)
elif re.match(‘Average Normal‘ s[0]+‘ ‘+s[1]):
print(‘%15.6f‘ % float(s[3]) file=f1)
elif re.match(‘Maximum Shear‘ s[0]+‘ ‘+s[1]):
print(‘%15.6f‘ % float(s[3]) file=f1)
elif re.match(‘SigmaX‘ s[0]+‘ ‘+s[1]):
print(‘%15.6f‘ % float(s[1]) file=f1)
elif re.match(‘SigmaY‘ s[0]+‘ ‘+s[1]):
print(‘%15.6f‘ % float(s[1]) file=f1)
elif re.match(‘SigmaZ‘ s[0]+‘ ‘+s[1]):
print(‘%15.6f‘ % float(s[1]) file=f1)
elif re.match(‘SigmaXY‘ s[0]+‘ ‘+s[1]):
print(‘%15.6f‘ % float(s[1])
- 上一篇:python自然语言处理中文停用词
- 下一篇:nltk实现对英文短文本的名词抽取
相关资源
- python自然语言处理中文停用词
- 最好中国大学近几年排名及python爬虫
- Tensorflow-BiLSTM分类
- 感知机算法Python实现
- python 实现将TXT文件内容逐行存到EXC
- python 打开并计算两幅dicom图像感兴趣
- python 决策树代码
- 银行ATM系统(Python实现)
- pygame实现的贪吃蛇游戏RetroSnaker.py
- Python文件
- QT文件转换成Python的自动化工具*.ui转
- fcntl模块 win
- python爬虫爬取企业详细信息
- Kruskal算法python实现
- 蚁群算法的python代码
- 最小二乘法python代码,不用库函数
- sm3 python encode
- openopc for python 3.x
- 张正友相机标定Python代码
- Python调用QQ微信截图
- python图像裁剪
- 海明校验 python源代码 海明码
- mod_wsgi.so
- Python 强大的图论和网络研究工具 ne
- python从入门到精通视频60集全
- wheel 安装包
- Python程序设计与算法基础教程源代码
- python数据处理csv->图表
- 微博评论Python代码实现
- Python最小距离法
评论
共有 条评论