说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 开发效果及潜力
1)  development results and potential
开发效果及潜力
2)  development potential
开发潜力
1.
Coalbed methane(CBM) development potential of low rank coal:A case study from Ordos Basin;
低变质煤的煤层气开发潜力——以鄂尔多斯盆地侏罗系为例
2.
CBM development potential of high rank coal with reference to Qinshui coal field,Shanxi;
高煤级煤的煤层气开发潜力——以沁水煤田为例
3.
Study on the Development Potential of City Dwelling House of Shandong Province;
山东省城市住宅开发潜力研究
3)  exploitation potentiality
开发潜力
1.
With the new tourism development,on the basis of the present development situation of touism resources in Wansheng District,a qualitative and quantitative analysis has been made on the features and exploitation potentiality of tourism resources in Wansheng District.
本文在新的旅游发展背景和万盛区旅游资源开发现状基础上 ,对万盛旅游资源特色和开发潜力进行了定性和定量分析评
4)  development potentiality
开发潜力
1.
Based on systematical analyzing the factors of the development potentiality in science and technology human resources, the paper sets up an evaluation index system of development potentiality of science and technology human resources, works out the mathematic evaluation model, and studies TOPSIS applications in the evaluation of development potentiality of science and technology human resources.
本文在系统分析科技人力资源开发因素的基础上,建立科技人力资源开发潜力综合评价指标体系,并构建科技人力资源开发潜力数学评价模型,尝试理想点法在科技人力资源开发潜力综合评价中的应用。
5)  exploration potential
开发潜力
1.
Construction and evaluation of the assessment indicator system of exploration potential of marine functional zone
海洋功能区开发潜力评价指标体系构建及其评价
2.
Benefiting from the research method and the index system of marine resources exploration potential,tourism resources exploration potential,land exploration potential,major function oriented zoning exploration potential, sustainable development capacity and multi-criteria synthetic estimation.
借鉴海洋资源开发潜力、旅游开发潜力、土地开发潜力、主体功能区开发潜力、可持续发展能力和多指标综合评价等方面的研究方法和指标体系,首次提出了海洋功能区开发潜力的概念、构成和指标,并分析了层次分析法在海洋功能区开发潜力评价中的适用性,总结了海洋功能区开发潜力评价的方法、步骤和存在的问题。
3.
There is a pressing need to assess the exploration potential of marine functional zonation.
目前,《全国海洋功能区划》已经实施6年有余,随着海洋资源、海洋环境、海洋开发利用规模及程度、国民经济社会发展需求的变化,即将开展海洋功能区划的修订,因此,迫切需要进行海洋功能区开发潜力评价。
6)  development effect
开发效果
1.
Analyses of the horizontal well development effect in Jiangsu complex small fault block;
江苏复杂小断块水平井开发效果分析
2.
A new discussion on comprehensive evaluation system of development effect in complex fault-block reservoirs;
复杂断块油藏开发效果综合评判体系新探讨
3.
Reservoir wettability change of the 8~3 stratum of Es_2 in Block No.2 of Shengtuo Oilfield and its influence on development effect;
胜坨油田二区沙二段8~3层储层润湿性变化及对开发效果的影响
补充资料: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()中.

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