1)  TDS protocol
表格格式数据流协议
2)  table
表格
1.
Network-based courseware design by combining Iframe and table label;
利用浮动框架与表格结合设计网络课件的探索
2.
The Means of Table Data Copy to Database;
表格数据直接录入数据库方法探讨
3.
ADO Connection of Database Based on VC++.NET and Word s Table Automatic Production;
基于VC++.NET的ADO数据库连接与Word表格自动生成
3)  Form
表格
1.
Editorship of the forms and symbols in a technology essay;
科技论文表格符号的编辑处理
2.
General Programming on Super-wide Form Printing;
超宽表格的通用打印设计
3.
Study on the Method from Automation of Data Output to Microsoft Office Word Form;
数据自动化输出到Word表格方法研究
4)  tables
表格
1.
Going Over and Beautifying the Tables of Scientific and Technical Periodicals;
科技期刊表格的审读与优化
2.
Some tables are not in the normal way of being printed in sci_tech periodicals in China at present.
针对目前我国科技期刊中表格制作不规范的现象 ,提出期刊应统一使用三线表 。
3.
This article mainly resolves these problems of city planning design:the standardization of city planning drawing, the auto-generation of city planning statistic tables, the design of professional drawing database, and the definition of special linetype for city planning design.
在这篇论文中,主要解决了城市规划设计中绘图标准化、规划统计表格的自动生成、专业图形库的设计,以及城市规划用特殊线型的定制等问题,使最终开发出来的城市规划CAD系统具有统一性、易用性和实用性的特点。
5)  electronic table
电子表格
1.
In this paper a design method of pipeline network outside gathering station by the aid of electronic table software Excel is introduced.
文章介绍了利用计算机的Excel电子表格进行站外掺输管网设计的方法。
6)  electronic forms
电子表格
1.
According to the theory of the casting burden calculation, the electronic forms is set up in this paper.
根据铸造熔炼配料计算的理论,建立了一种电子表格。
2.
Using the electronic forms to draw pictures and process the test data,especially combining the value analytic method with the cartography,it may provide more accurate test result.
同时利用电子表格绘图并处理试验数据,特别是用数值分析法与绘图相组合,可以提供较为准确的试验结果。
参考词条
补充资料: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 



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

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