说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 滚动开发
1)  rolling development
滚动开发
1.
Discussions on the benefits of the power generation of Three Gorges Project and the rolling development of the Jinsha River;
谈三峡发电效益和滚动开发金沙江
2.
In the light of the complexity,rolling development has gained better effect by applying latest theory of transform fault belt according to specific structural model through fine structure explain and implement of key-well.
进行滚动开发,取得了较好的开发效果。
3.
Based on the complexity of the ground and underground condition of Daqing peripheral oilfield, this paper fully depicts the successful practice of rolling development aiming at increasing successful drilling rate and decreasing developing risk.
针对大庆西部外围油田地下条件十分复杂的问题 ,叙述了围绕提高钻井成功率 ,降低开发风险所进行的滚动开发的成功实践 ,把 1983— 2 0 0 1年整个滚动开发过程依据不同时期滚动开发目标、实践目标的思路及技术特点分为三个阶段 ,即滚动开发初级阶段 ,滚动开发发展阶段 ,滚动开发提高完善阶段 ,并分阶段阐述了应用地震地质综合预测技术 ,解决不同油田复杂地质情况的具体作法和应用效果。
2)  progressive development
滚动开发
1.
In Xuzhuang oilfield,the structure is complex,the seismic data is bad,and the progressive development is difficult.
许庄油田构造复杂,地震资料差,滚动开发难度大,提出了以地质思想为指导逐步滚动开发的理念,以许5-1断块周边地区的滚动开发实践为例,总结了适合复杂小断块油田滚动开发的思路和经验,取得了新成果。
2.
It is featured by fractural faults,severe multiple and igneous rocks,thus the technology of fine structural interpretation plays key role in progressive development of little fault block oilfield.
素有“地质家考场”的江苏油田地下情况复杂 ,断层破碎 ,火成岩发育 ,多次波严重 ,因此 ,构造精细解释在复杂小断块的滚动开发中起着至关重要重要的作用。
3.
However, in 2001, great progress in progressive development has been made in this block by using advanced software, new technology and the combining of many technologies.
2 0 0 1年引进先进软件 ,充分利用新技术新工艺 ,发挥多项技术综合应用的优势对濮 92块实施滚动开发 ,取得了较大突
3)  progressive exploration and development
滚动勘探开发
1.
Application of "checking in three aspects" in progressive exploration and development in Yulou area,Liaohe Oilfield;
“三查”在于楼油田滚动勘探开发中的应用
2.
Technologies for progressive exploration and development in complex fault block reservoir of Lei11 well block;
雷11井区复杂断块油藏滚动勘探开发配套技术研究与应用
3.
Study of progressive exploration and development in Wenliu oilfield;
文留油气田滚动勘探开发研究
4)  exploration and development
滚动勘探开发
5)  On-going development of oil fields
油田滚动开发
6)  Rolling exploration and development
滚动勘探开发
1.
The rolling exploration and development achievements and key techniques for Dongpu sag in the "Ninth Five Plan" period are summarized.
总结了“九五”以来东濮凹陷新增探明储量恢复性增长的成功经验和关键技术 ,应用圈闭法对东濮凹陷滚动勘探开发效果及潜力进行了研究。
2.
Using delicate reservoir description to look for residual miniature trap reservoirs, and making it productivity are an important task of rolling exploration and development at mature exploration area.
利用精细油藏描述技术寻找剩余微型圈闭油藏并使之形成生产能力 ,是勘探成熟区滚动勘探开发的重要工作。
3.
According to the relevance to rolling exploration and development, reservior evaluation, reservior prediction and reservior description softwares were selected to be explored with their adaption, evaluating its applicable geologic conditions, data request, software characteristec and module functions.
本文通过对国内外各种石油勘探开发技术软件广泛调查,深入调查了储层预测新技术新方法的应用状况,对各类软件从其与滚动勘探开发地质研究关联程度出发,选择关系紧密的油层评价软件、储层预测软件、油藏描述软件,进行了较为深入的适用性探讨,从适应的地质条件、资料要求、软件特点、模块功能等多方面进行评价。
补充资料: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()中.

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