1)  device output format block ,DOF block
设备输出格式块
2)  equipment
设备
1.
Analysls of tire equipment efficiency and discussion of improvement;
轮胎设备稼动率分析和改善初探
2.
The important role of the modern clothing equipment in the manufacture of ready-made clothing;
现代服装设备在成衣加工中的重要作用
3.
The analysis and discussion of the consumption of energy for the continuously mixing equipment and the intermittence mixing equipment;
连续混炼设备和间歇混炼设备的能耗分析与探讨
3)  facility
设备
1.
Facility Vibration Transmitting Principle and Measures to Avoiding Vibration in Refrigerating Plant Room;
制冷机房设备振动传递及防治措施
2.
Discussion of network frame and facility selection principles in Dalian urban network planning;
大连城网规划中网架与设备选用原则探讨
4)  equipments
设备
1.
Brief introduction of craft and equipments for pig naked body before processing;
浅谈猪胴体前段加工工艺与设备
2.
Application of Information for Overhauling Equipments Management;
设备检修管理信息化的实践
3.
Whole moving technique of Fully-mechanized mining equipments and its effect;
综采顺槽设备整体移动工艺及其效益
5)  device
设备
1.
The application of standard deviation to monitoring the device state of PASSIM cigarette making and assembling combination and the quality of the product;
运用标准偏差监控PASSIM卷接机组设备状态和产品的质量
6)  Apparatus
设备
1.
Research on the apparatus for in-situ treatment of high quality reclaimed water in universities;
用于高校优质中水原位处理的设备研究
2.
The apparatuses of trough type, spiral type, folded type are introduced.
本实验阐述了连续逆流浸取的基本原理,介绍了槽式、螺旋式、折流式连续逆流浸取设备和连续逆流浸取技术浸取果实类和叶类有效成分的研究现状,最后讨论了逆流浸取技术与微波浸取技术、超声浸取技术的联用情况,并提出了将多频组合超声浸取技术与连续逆流浸取技术相结合,微波浸取技术与连续逆流浸取技术相结合以及超声、微波、连续逆流三种浸取技术同时相结合的设想。
3.
The recent progress of the 3 types of centrifugal flotation methods and apparatus are overviewed and illustrated.
总结了离心浮选的3种类型,并结合实例详细介绍了离心浮选设备的最新研究进展。
参考词条
补充资料:ANSYS--格式输出数据

利用APDL功能按照一定格式写出ansys数据文件的方法 


ANSYS在运行阶段总是处理大量的模型数据、载荷数据以及结果数据等,有时需要将这些数据按照一定的格式写进指定的数据文件中,这时可以利用*GET和*VGET数据提取的各种命令将数据存入到变量或数组中,然后利用*CFWRITE或*VWRITE命令写入到指定文件.下面是使用*VWRITE实现该过程的一个实例: 


/post1
set,,,,,10.0
*get,ntemp01,node,2,temp ! 时间等于10时的节点2的温度值 
*get,ntemp02,node,9,temp ! 时间等于10时的节点9的温度值
*get,ntemp03,node,7,temp ! 时间等于10时的节点7的温度值 


*vwrite,ntemp01,ntemp02,ntemp03
(T1,''N2 TEMP='',F5.1,'', N9 TEMP='',F5.1,'', N7 TEMP='',F5.1)
/output,nodetemp,dat 


其中,命令/output可以用于确定输出方向,即输出到ansys的输出窗口(OUTPUT WINDOW)中,或者指定的文件中。上面将温度值输出到nodetemp.dat文件中,内容如下: 


N2 TEMP= 19.2, N9 TEMP= 19.8, N7 TEMP= 20.8 



这样就可以对输出数据用别的工具进行处理。

说明:补充资料仅用于学习参考,请勿用于其它任何用途。