说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 协同开发
1)  collaborative development
协同开发
1.
System Modeling and Supporting Software Development of Product Collaborative Development Chain Base on Product Platform and Axiomatic Theory;
基于产品平台与公理化理论的产品协同开发链系统建模与支撑软件开发
2.
Problems of collaborative development for complex product and application of High Level Architecture(HLA) in industrial collaborative simulation were analyzed.
通过分析当前复杂产品协同开发中面临的问题和高层体系结构在工业协同仿真中的应用,提出了基于资源管理联邦的复杂产品协同开发平台体系结构,资源管理联邦与对等的应用联邦间构成了层次联邦结构,在高层体系结构的范畴内,实现了资源的统一管理,以及软件资源共享联邦、协同设计联邦和协同仿真联邦的动态生成。
3.
Implementing product collaborative development strategy helps MC enterprise to improve product quality,reduce product cost and accelerate the development speed.
大批量定制企业实施产品协同开发有助于提高产品质量、降低产品成本、加快产品开发速度。
2)  product collaborative development chain
产品协同开发链
1.
The relationship among assemblers and their suppliers can be called as the product collaborative development chain.
随着产品研发周期、成本以及效率等竞争压力增大,供应商参与下的产品协同开发开始受到企业重视,这种制造商和供应商间的关系称为产品协同开发链。
3)  collaborative product development
协同产品开发
1.
Task Scheduling for Designer in Collaborative Product Development;
协同产品开发中设计者任务排序
2.
The Design and Implementation of a Collaborative Product Development Platform for Design and Evaluation;
集设计和评审为一体的协同产品开发平台的设计与实现
3.
A Framework of Agent-based Workflow Management System inCollaborative Product Development on the Internet;
基于Internet的协同产品开发中基于Agent的工作流管理系统框架
4)  Product cooperative development
产品协同开发
1.
Research on Key Techniques for Process Management of Product Cooperative Development;
产品协同开发过程管理的关键技术研究
5)  concurrent and collaborative development
并行协同开发
6)  product collaborative development
产品协同开发
1.
Modeling of product collaborative development based on holographic workflow-net;
基于全息工作流网的产品协同开发过程建模
2.
Study on Business Process Reengineering and Management of Product Collaborative Development within Enterprise Computerization Environment
企业信息化环境下产品协同开发流程再造与管理研究
3.
Based on the features analysis of product collaborative development,PDS reference model was proposed for researching the factors that had affected on product collaborative development efficiency.
从产品开发过程(Process)、协同程度(Degree)以及协同支持系统(Supporting system)三个方面,提出了用于产品协同开发效率影响因素研究的PDS参考模型。
补充资料:Pro/E二次开发使用toolkit开发trigger的程序

使用toolkit开发trigger的程序时,往往需要能够连续通过trigger来触发dll中的函数.
我碰到的问题:
   1.配置trigger:
   Name: CimDll
   Event: Create PIV
   Time:  POST
   RequireNO
   DLL:Cim.dll
   Function:PDMTPIVCreatePostOperation
   
  2.源代码:
   int PDMDLLInit()
{
   PTCERROR pdm_status;
   FILE      *g_pfileLog;
   g_pfileLog =fopen("test.dat","w");
   setbuf(g_pfileLog,NULL);
   fprintf(g_pfileLog,"begin test\n");
   pdm_status = PDMTriggerRegister("PDMTPIVCreatePostOperation", PDMTPIVCreatePostOperation);
   if (pdm_status != PDM_SUCCESS)
   {  
    printf("Failed to Register Trigger PIV Create Post.\n");
   }
    return (pdm_status);
}


int PDMTPIVCreatePostOperation(int argc, void **argv)
{
   fprintf(g_pfileLog,"test\n");
   .....
   fprintf(g_pfileLog,"end test\n");
   fclose(g_pfileLog);


}


   结果:以上代码存在的问题:如果我们在第一次checkin到C/S中后,删除test.dat文件,然后再进行checkin时,发现没有再生成test.dat,在函数PDMTPIVCreatePostOperation()中所进行的对文件的操作都无效.
   原因:我们使用trigger触发时,真正起作用的是函数:PDMTPIVCreatePostOperation(),而PDMDLLInit()只是在第一次checkin时起作用,所以在第一次调用PDMTPIVCreatePostOperation()后,我就fclose(g_pfileLog),所以出现了上面的情况.所以注意的是:不要把一些重要的东西放在函数PDMDLLInit()中.

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