1)  double preheating
二次预热技术
2)  Secondary
二次
1.
Study on Secondary Seismic Acquisition in Southern Steep Zone in Biyang Depression;
泌阳凹陷南部陡坡带二次采集方法研究
3)  two-step ejecting
二次推出
1.
Througn designing three axial slots in internal threaded portion and optimizing nib structure,a design was made on the injection mould with a two-step ejecting mechanism with non-rotating.
对笔尖内螺纹部分设计三段轴向开槽,优化笔尖结构,设计了二次推出不带旋转机构的自动脱螺纹注塑模。
4)  reheating
二次加热
1.
Reheating Process for the Semi-solid A356 Alloy;
半固态A356合金的二次加热工艺研究
2.
Detection of the Reheating State of Semisolid Hypoeutectic Al-Si Alloy;
半固态亚共晶铝硅合金二次加热状态检测
3.
The effects of processing parameters of semi-solid billets preparation,reheating temperature and holding time on the semi-solid slurry microstructure of AlSi7MgBe alloy by liquidus semi-continuous casting were studied.
采用近液相线半连续铸造技术制备AlSi7MgBe合金半固态坯料,研究制坯工艺以及二次加热温度和保温时间对半固态浆料微观组织的影响,通过组织与性能分析对AlSi7MgBe合金的半固态触变成形性进行了研究。
5)  secondary crack
二次裂纹
6)  secondary dedusting
二次除尘
1.
The contact pattern of boiler auxiliary machinery was modified with the adoption of layer-by-layer coal charging technology,realizing secondary dedusting,improving the heat efficiency and reliability of boiler.
采用分层给煤技术,改造锅炉辅机连接方式,实现二次除尘,提高锅炉热效率和可靠性。
2.
Appropriate choice of top draft hood type is a key point for the modification project of secondary dedusting of converter off-gas at Xingtai Steelmaking Plant.
正确选定顶吸罩类型是邢钢转炉二次除尘改造治理的关键。
参考词条
补充资料:Pro/ENGINEER二次开发中的关键技术
【摘    要】Pro/ENGINEER是CAD/CAM软件,Pro/TOOLKIT是PTC提供用于对Pro/ENGINEER进行二次开发的软件包,这里有几个问题值得注意。

    【关键词】二次开发  关键技术  程序  函数

    Pro/ENGINEER是美国PTC公司研制的CAD/CAM软件。Pro/TOOLKIT是PTC提供用于对Pro/ENGINEER进行二次开发的软件包,Pro/TOOLKIT提供了大量的C语言函数,帮助我们利用C语言编程来增加Pro/ENGINEER的功能。在Pro/ENGINEER的二次开发过程中,有以下几个问题值得注意(笔者使用的是Pro/ENGINEER 2000i)。


1 编写应用程序


    可在Visual C++环境下编写Pro/TOOLKIT应用程序,此应用程序包含Pro/TOOLKIT提供的函数,必须和Pro/TOOLKIT提供的头文件编译(Compile)到一起,所以,必须在Visual C++的菜单“Tools→Options→Directories”中添加如下内容 :


~\PROTOOLKIT\INCLUDES
~\PROTOOLKIT\PROTK_APPLS\INCLUDES
~\PRODEVELOP\INCLUDES
~\PRODEVELOP\PRODEV_APPLS\INCLUDES
其中,~表示Pro/ENGINEER的安装路径。


2 编译应用程序


    编译(Compile)通过的应用程序,还必须在命令提示符下编译和连接(nmake),以生成可执行的.exe或.dll文件。


    nmake命令是由第三方软件(Micosoft Visual C++)提供的。要在命令提示符下使用这个命令,必须在安装Visual C++时注册环境变量(安装时会有对话框“设置环境变量”提示,将“注册环境变量”选中),或者在Windows的“设置→控制面板→系统→高级→环境变量→用户变量”中,选取变量名“path”,在值中添加“ ~:\Microsoft Visual Studio\VC98\bin”,“~”表示Visual C++ 的安装路径(适用于 Windows 2000)。而且,运行“nmake”命令所在的路径为“~/protoolkit/i486_nt/obj”,此路径下必须要有一个对应于C应用程序的make文件,命令全形为“nmake -f *”,“*”为对应的make文件名。make文件的样板在“~\proe2000i\protoolkit\i486_nt\obj”下。


3 运行应用程序


    要在Pro/ENGINEER环境中运行自己的应用程序,必须在Pro/ENGINEER中对该程序进行注册。注册分为手动注册和自动注册两种。手动注册就是在Pro/ENGINEER界面上依次选取“Utilities→Auxiliary Application”对话框,加载该注册文件,自动注册有以下4个步骤。


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