1) secondary recovery
油藏二次开发
2) reservoir
油藏
1.
An economic analysis of reservoir natural production in middle and later stages;
开发中后期油藏自然生产的经济分析
2.
Factors influencing viscosity of association polymer solution of reservoirs in Bohai Oilfield;
渤海SZ36-1油田油藏条件下缔合聚合物溶液黏度老化影响因素
3.
Vectorial well arrangement in anisotropic reservoirs;
各向异性油藏的矢量井网
3) oil reservoirs
油藏
1.
Electrical resistance heating(ERH) is a new thermal stimulation technique for recovering heavy oil reservoirs.
电热油藏采油是一项开采稠油的新技术。
2.
It is necessary to optimize the calibration method suit-able for the recoverable reserves of solution gas in the oil reservoirs in complex fault blocks.
优选出适合复杂断块油藏地质特征的溶解气可采储量的研究方法十分必要,为此,在对东濮凹陷复杂断块油藏地质特征总结分析的基础上,对中原油田复杂断块油藏溶解气的可采储量进行了研究。
4) oil pool
油藏
1.
The article first analyzes the main characteristics, procedure and latest mode of foreign oil pool management & administration, then introduces the status of oil pool management & administration in domestic oilfield enterprises as well as the gap between China and foreign countries.
分析了国外油藏经营管理的主要特点、步骤和最新模式,介绍了国内油田企业油藏经营管理的现状及与国外的差距,提出了我国油田企业推行油藏经营管理的主要思路、运作程序等建议。
2.
This paper has mainly discussed the similarities and differences between oil pools and gas pools in the respects of hydrocarbon sources,reservoir properties,migration and accumulation mechanisms,and preserving conditions.
作为流体矿藏 ,气藏与油藏的形成和分布具有相似性 ,都需要经过由分散到富集的成藏过程。
5) oil reservoir
油藏
1.
Effects of wettability and its evolution on oil reservoir recovery;
润湿性及其演变对油藏采收率的影响
2.
Research on numerical simulation of ZT2 oil reservoir development;
ZT2油藏开发数值模拟研究
3.
16S rRNA genes comparative analysis of microbial community in nutrientinjected oil reservoir by the T-RFLP method;
营养注入后油藏微生物群落16S rRNA基因的T-RFLP对比分析
6) reservoir simulation
油藏模拟
1.
In the past two decades, various reservoir upscaling theories and methods have been proposed for reservoir characterization and reservoir simulation.
近20年来,由于油藏描述与油藏模拟的需要,人们提出了许多油藏模型网格粗化(Reservoir Upscaling)的理论与方法。
参考词条
补充资料: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()中.
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
|
|