1)  PowerBuilder
集成开发环境工具
2)  integrated
集成
1.
Sampling for Integrated Capillary Zone Electrophoresis Device;
单片集成毛细管区带电泳分析器的进样
2.
CAD/CAM Integrated System Based on Net;
基于网络化的CAD/CAM集成系统
3.
Effects of integrated drought-resistant technologies in north part of Shanxi Province;
山西北部集成抗旱技术抗旱增产效果的试验研究
3)  ensemble
集成
1.
Ensemble Learning and Application of Fuzzy Classification Rules Based on Boosting;
基于Boosting的模糊分类规则集成学习及应用
2.
PSO-based approach for neural network ensembles;
基于PSO算法的神经网络集成构造方法
3.
Intrusion Detection Based on Support Vector Machine Ensemble with Bagging;
基于Bagging支持向量机集成的入侵检测研究
4)  integrating
集成
1.
Hologamous integrating strategies for incipient fault diagnosis of transformer;
变压器内部故障诊断的融合集成策略研究(英文)
2.
Integrating PSS Based on CCM;
基于CCM的持久状态服务集成
3.
Integrating Legacy Software Toolkits into China-VO System;
中国虚拟天文台软件集成
5)  integration
集成
1.
Realization of ship oil spill emergency decision system software integration;
船舶溢油应急决策系统软件集成性的实现
2.
MasterCAM/Tool-database Integration Method;
MasterCAM/刀具库集成的方法
3.
Research on Knowledge-based and Design for Assembly Integration System of CAD/CAE/CAM for Plastics Injection Mold;
基于知识面向装配的注塑模CAD/CAE/CAM集成系统研究
6)  integrate
集成
1.
CNGrid Integrated Environment and Application Development Based on GOS;
基于GOS的国家网格集成环境及应用实例开发
2.
The Application of Web Services in the Distributed Component Integrate;
Web服务在分布式组件集成中的应用
3.
The Living Supervise System and a Integrated Program of a Management Information System;
实时监控系统及在管理信息系统中的集成方案
参考词条
补充资料:Pro/ENGINEER开发工具Pro/TOOLKIT简介
1 前言

    Pro/TOOLKIT是Pro/ENGINEER的一个应用程序接口(API),其的编程语言是C 语言,它可以对Pro/ENGINEER进行功能扩展,满足PTC客户的特定需求。而且,Pro/TOOLKIT提供了定制标准Pro/ENGINEER用户界面的能力,自动执行重复性的程序,通过Pro/ENGINEER集成的内部程序(Dll)或外部应用程序(Exe)可以为造型用户提供自定义的应用程序、设计规划和绘图自动化。


2 Pro/TOOLKIT编程条件和工具


    知道如何写C程序,就已经具备了使用Pro/TOOLKIT的条件,应该能够理解指针,当把数据从一个函数传到另一函数时,将经常使用到它。Pro/TOOLKIT帮助,包含2000多个函数,并且可以通过例子代码学习如何使用。除此之外,如果想解决几何学问题,还需要对失量理论有一定的了解。


3 Pro/TOOLKIT程序中的结构体


    Pro/TOOLKIT都是用C语言编写的,每个对象都用结构体来描述,因此需要了解对象是如何使用的。为了使用结构体,需要定义它,Pro/TOOLKIT提供许多“typedefs”,这些typedefs只不过是Pro/ENGINEER结构体的伪指令。例如:


typedef struct entity* ProPoint;
typedef struct sld_part* ProSolid;


    这些也叫做OHandles (from Opaque handles),在Pro/ENGINEER中它们直接获得对象的内存地址。在某些情况下,这样做可能是危险的,因此PTC提供了另外一种结构体类型,它只包含Pro/ENGINEER的内部数据库中项目的必要信息。这种结构体(labeled DHandle from data handle)是一种类的结构,它包括对象的类型、ID等。许多函数命令都和下面的结构体相联系。


typedef struct pro_model_item
{
ProType type;
int id;
ProMdl owner;
}ProModelitem,ProGeomitem,ProExtobj, ProFeature,ProProcstep,ProSimprep,ProExpldstate,
ProLayer,ProDimension,ProDtlnote,ProDtlsyminst,ProGtol,ProCompdisp  
 
    如果处理几何问题,要用到ProModelitem、ProGeomitem 和ProFeature这几个结构体。


4 Pro/TOOLKIT中的常用函数及使用


    需要了解的第一个函数是ProMdlCurrentGet()。在Pro/TOOLKIT帮助中其描述如下。


Description
Initializes the p_handle with the current Pro/ENGINEER object.

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