1) final direction of rolling
终轧方向
3) rolling direction
(钢板的)轧制方向
4) finishing rolling temperature
终轧温度
1.
The effect of finishing rolling temperature on banded structure of 16Mn steel plate;
终轧温度对16Mn钢板带状组织的影响
2.
Influence of finishing rolling temperature on microstructure and properties of Q450NQR1 high strength weathering steel
终轧温度对高强度耐候钢Q450NQR1组织和性能的影响
3.
By using controlled rolling and cooling,optical and electron microscopy observation,mechanical test etc,the microstructure of hot-rolled 60Si2CrVAT rolled with different finishing rolling temperature,and the effect of hot rolled structure on the microstructure and properties of heat treated products were studied.
以铁路用弹簧钢60Si2CrVAT为研究对象,通过工业控轧控冷试验,采用光学、电子显微技术和力学分析等方法,系统研究了在不同终轧温度下热轧态的组织结构以及对其热处理后组织性能的影响。
5) final rolling temperature
终轧温度
1.
The effects of final rolling temperature and cooling rate on microstructure at room temperature were studied.
通过Gleeble-1500热模拟机对20CrMo轧材精轧阶段轧制过程及冷却过程的模拟,研究了终轧温度、冷却速度对室温组织的影响,分析了形成带状组织的条件,最终得出了理想室温组织的终轧温度和冷却速度。
2.
Influence of final rolling temperature, cooling rate and tempering on properties of fire-resistant steel was researched.
测定了耐火钢的CCT曲线,研究了耐火钢的性能,包括室温和高温拉伸性能、系列温度下的冲击性能、应变时效性能等;探讨了终轧温度、冷却速度、回火对耐火钢性能的影响。
3.
According to the characteristics of micro-carbon steel,simulative test was taken in laboratory under the principle of "high heating temperature,high beginning rolling temperature,high final rolling temperature and low rolling temperature".
针对微碳钢的特点 ,在实验室进行了模拟试验 ,在“三高一低”的原则下 ,研究了微碳钢加热温度对AlN溶解的影响 ,终轧温度及冷却速度对热轧晶粒度的影响 ,卷取温度对AlN和渗碳体析出的影响。
6) Finishing temperature
终轧温度
1.
Influencing factors on finishing temperature of plate rolling;
影响中厚板轧制终轧温度的因素及其控制
2.
A simulation software was developed to research the finishing temperature of hot strip rolling,based on conventional heat transfer model.
在传统传热模型基础上开发了带钢热连轧精轧温度控制模拟软件,系统地分析了穿带速度、带钢粗轧出口温度、带钢机架间厚度、水冷换热系数和工作辊材质等7种因素对带钢精轧出口温度的影响规律;确定了影响带钢终轧温度的主要因素;使用现场实测数据对模拟软件计算精度进行了检验,表明开发的精轧温度控制模拟软件计算精度较高。
3.
The standard deviation between the predicted and measured finishing temperature was reduced by 14.
结果表明,利用BP神经网络得出的带钢热流密度计算的终轧温度与实测值的标准差比原来仅用数学模型的传统算法减少了14 08%,故该方法具有较好的在线应用前景。
补充资料:ANSYS中在任意面施加任意方向任意变化的压力方法
在任意面施加任意方向任意变化的压力
在某些特殊的应用场合,可能需要在结构件的某个面上施加某个坐标方向的随坐标位置变化的压力载荷,当然,这在一定程度上可以通过ANSYS表面效应单元实现。如果利用ANSYS的参数化设计语言,也可以非常完美地实现此功能,下面通过一个小例子描述此方法。
!!!在执行如下加载命令之前,请务必用选择命令asel将需要加载的几何面选择出来
!!!
finish
/prep7
et,500,shell63
press=100e6
amesh,all
esla,s
nsla,s,1
! 如果载荷的反向是一个特殊坐标系的方向,可在此建立局部坐标系,并将
! 所有节点坐标系旋转到局部坐标系下.
*get,enmax,elem,,num,max
dofsel,s,fx,fy,fz
fcum,add !!!将力的施加方式设置为"累加",而不是缺省的"替代"
*do,i,1,enmax
*if,esel,eq,1,then
*get,ae,elem,i,area !此命令用单元真实面积,如用投影面积,请用下几条命令
! *get,ae,elem,i,aproj,x !此命令用单元X投影面积,如用真实面积,请用上一条命令
! *get,ae,elem,i,aproj,y !此命令用单元Y投影面积
! *get,ae,elem,i,aproj,z !此命令用单元Z投影面积
xe=centrx !单元中心X坐标(用于求解压力值)
ye=centry !单元中心Y坐标(用于求解压力值)
ze=centrz !单元中心Z坐标(用于求解压力值)
! 下面输入压力随坐标变化的公式,本例的压力随X和Y坐标线性变化.
p_e=(xe-10)*press+(ye-5)*press
f_tot=p_e*ae
esel,s,elem,,i
nsle,s,corner
*get,nn,node,,count
f_n=f_tot/nn
*do,j,1,nn
f,nelem(i,j),fx,f_n !压力的作用方向为X方向
! f,nelem(i,j),fy,f_n !压力的作用方向为Y方向
! f,nelem(i,j),fz,f_n !压力的作用方向为Z方向
*enddo
*endif
esla,s
*enddo
aclear,all
fcum,repl !!!将力的施加方式还原为缺省的"替代"
dofsel,all
allsel
在某些特殊的应用场合,可能需要在结构件的某个面上施加某个坐标方向的随坐标位置变化的压力载荷,当然,这在一定程度上可以通过ANSYS表面效应单元实现。如果利用ANSYS的参数化设计语言,也可以非常完美地实现此功能,下面通过一个小例子描述此方法。
!!!在执行如下加载命令之前,请务必用选择命令asel将需要加载的几何面选择出来
!!!
finish
/prep7
et,500,shell63
press=100e6
amesh,all
esla,s
nsla,s,1
! 如果载荷的反向是一个特殊坐标系的方向,可在此建立局部坐标系,并将
! 所有节点坐标系旋转到局部坐标系下.
*get,enmax,elem,,num,max
dofsel,s,fx,fy,fz
fcum,add !!!将力的施加方式设置为"累加",而不是缺省的"替代"
*do,i,1,enmax
*if,esel,eq,1,then
*get,ae,elem,i,area !此命令用单元真实面积,如用投影面积,请用下几条命令
! *get,ae,elem,i,aproj,x !此命令用单元X投影面积,如用真实面积,请用上一条命令
! *get,ae,elem,i,aproj,y !此命令用单元Y投影面积
! *get,ae,elem,i,aproj,z !此命令用单元Z投影面积
xe=centrx !单元中心X坐标(用于求解压力值)
ye=centry !单元中心Y坐标(用于求解压力值)
ze=centrz !单元中心Z坐标(用于求解压力值)
! 下面输入压力随坐标变化的公式,本例的压力随X和Y坐标线性变化.
p_e=(xe-10)*press+(ye-5)*press
f_tot=p_e*ae
esel,s,elem,,i
nsle,s,corner
*get,nn,node,,count
f_n=f_tot/nn
*do,j,1,nn
f,nelem(i,j),fx,f_n !压力的作用方向为X方向
! f,nelem(i,j),fy,f_n !压力的作用方向为Y方向
! f,nelem(i,j),fz,f_n !压力的作用方向为Z方向
*enddo
*endif
esla,s
*enddo
aclear,all
fcum,repl !!!将力的施加方式还原为缺省的"替代"
dofsel,all
allsel
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条