说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 开发方案优化
1)  development plan optimization
开发方案优化
2)  exploration solution optimization
开发方案优选
3)  optimal pumping of groundwater
开采方案优化
4)  Optimal pumping project
优化开采方案
5)  development scheme
开发方案
1.
Research on cascade development scheme from Pengshui hydropower station to the river mouth of the main Wujiang river;
乌江干流彭水至河口河段梯级开发方案研究
2.
In light of the applied defects of subjective and objective weight assignment methods of the appraisal approaches for oil-gas field development, the TOPSIS method to comprehensively evaluate the development scheme of oil-gas field is presented.
针对目前油田开发方案评价方法中主观赋权法和客观赋权法的应用局限,提出用理想解排序法来进行油田开发方案的综合评价,以油田开发理论和实践为依据,将油田开发效果指标、经济效益指标综合考虑,建立了油田开发方案综合优选的数学模型。
6)  Development Program
开发方案
1.
Before and during drilling, its development program was optimized and adjusted.
旅大4-2油田在ODP批准后进行了新的三维地震资料采集及处理,基于该油田新的油藏构造精细解释及储层反演成果,利用油藏地质建模与数值模拟一体化技术,建立起更精确的油藏模型代替ODP阶段的油藏模型,并在随钻过程中利用测井、录井等新资料及时更新油藏模型;在钻前及随钻过程中对油田开发方案进行了优化与调整,如井型优化,边部水平井距内含油边界距离的优化,高部位水平井距油层顶部距离的优化,以及水平井主支上钻分支井的效果研究等。
2.
Reservoir development program contains a number of technological and economic targets, The dimensions of the unit value indicators and targets are often not integrated, the development program is good or bad on one target is relative, has not definite boundary and is fuzzy .
油藏开发方案含有多个技术经济指标,各指标值的量纲单位往往不统一,又开发方案在某一指标下的优劣是相对的,无明确界限且具有模糊性。
补充资料: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()中.

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