说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 开拓部署
1)  development arrangement
开拓部署
1.
By some examples of mine development arrangement,several preferential ways of mine development arrangement,roadway arrangement,and their importance under the appropriate conditions of mining are discussed.
针对矿井的开拓部署,通过一些生产矿井和在建矿井的实例,论述了在矿井开采条件适宜时,矿井设计中应优先采用的几种矿井开拓方式和巷道布置方式,以及合理的矿井开拓方式和巷道布置方式在矿井生产中的重要性。
2)  development deployment
开发部署
3)  deep development
深部开拓
1.
This article introduces the present development conditions and the deep development situation of Ⅷ mining area in Shancheng Gold Mine.
介绍了栖霞市山城金矿Ⅷ号脉矿区开拓状况和深部开拓方案,通过深部开拓方案的研究,以现有提升系统为基础,确定了提升系统技术改造方案。
4)  dynamic extension base on primal deploy
原始部署的动态拓展
5)  Deployment for Optimal Development
优化开发部署
6)  deployment [英][di'plɔimənt]  [美][dɪ'plɔɪmənt]
n.展开,调度,部署
补充资料: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()中.

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