说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 联邦成员开发工具
1)  Federate development tool
联邦成员开发工具
2)  Federate modification tool
联邦成员修改工具
3)  federation member
联邦成员
1.
On this foundation,system structure of the system was built,and the realization method of federation members’ classification and the design of FOM / SOM and members’ interface were introduced.
分析了反舰导弹突防系统的功能和特点,并依据HLA的基本概念、方法和原理对分布式反舰导弹突防仿真系统进行系统设计,建立了系统体系结构,并介绍了联邦成员分类、FOM/SOM的设计和成员接口的实现方法。
4)  federate [英]['fedəreɪt]  [美]['fɛdə'ret]
联邦成员
1.
Design and Implementation of Federate Modification Tool Based on Add-In;
基于Add-In的联邦成员修改工具的设计与实现
2.
Design and Realization of Federate in HLA based on Agent Architecture;
基于Agent体系结构的HLA联邦成员设计与实现
3.
A Study of Automatically Generating Federate Framework Code;
联邦成员框架代码的自动生成技术研究
5)  federation [英][,fedə'reɪʃn]  [美]['fɛdə'reʃən]
联邦成员
1.
Based on HLA,fire unit federation design of ground-to-air missile in air-defense simulation system is introduced.
介绍了基于HLA的空防对抗仿真系统中关于地空导弹火力单元联邦成员的设计,包括模型、导弹点迹插值、SOM表以及仿真流程的设计,较好地实现了与多台计算机的通信。
2.
Interaction of federation and federate component are important content in the design of the tank unit combat simulation system.
联邦成员与联邦组件的交互是作战仿真系统联邦成员设计与实现的一个重要组成部分。
6)  federation development
联邦开发
补充资料: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.

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