|  | 
	
	
	
		| 
				说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
			 | 
	
	
	
		
		|  | 
					
							
			
				
				
		 
					1)  total waterflood life
					  整个注水开发期 
				
					2)  waterflooding
					['wɔ:tə,flʌdiŋ]
					  注水开发 
					1. 
						Application of steam huff and puff in middle and late waterflooding stages of common heavy oil reservoir;
						 蒸汽吞吐在普通稠油油藏注水开发中后期的应用 
					2. 
						The law of liquid - producing capacity in waterflooding  oilfields of Liaohe oil province;
					  辽河油区注水开发油田产液量变化规律认识 
					3. 
						The fracture system and its effect on waterflooding  in Shanshan Oilfield;
					  鄯善油田裂缝体系及对注水开发效果的影响 
				
					3)  waterflood development
					  注水开发 
					1. 
						Study on adjustment technology of waterflood development of low-permeability reservoirs in the periphery of Daqing Oilfield;
						 大庆外围低渗透油藏注水开发调整技术研究 
					2. 
						On waterflood development  effects and potential of Ma-36 well area;
					  马36井区注水开发效果及潜力分析 
					3. 
						Effectiveness evaluation of waterflood development in deep low permea bility reservoir of Sha 3 formation in block Wen 33;
						 文33块沙三段深层低渗透油藏注水开发效果评价 
				
					4)  water flooding
					  注水开发 
					1. 
						Influence of water washing on crude oils during water flooding ;
					  注水开发过程中原油的水洗作用初探 
					2. 
						Approach to the law of water flooding of common heavy oil reservoirs in Bi 123 and 124 fault block;
						 河南油田泌123、124断块普通稠油油藏注水开发规律探讨 
					3. 
						Calculation method of water flooding  index for new oilfield;
					  新区油田注水开发指标计算方法 
				
					5)  waterflooding development
					  注水开发 
					1. 
						Pilot study on waterflooding development in multi-well fracture-cavity units of Tahe Oilfield;
						 塔河油田多井缝洞单元注水开发试验研究 
					2. 
						The mass began to develop in 1999, and diverted to waterflooding development in 2000, cumulative injection of 110000 cubic meter water by now.
						 该块 1 999年投入开发 ,2 0 0 0年转为注水开发 ,累计注水达 1 1万立方米 ,但是对应油井没有见到相应的注水效果 ,鉴于这种情况 ,本文着重从静态、动态、压力、油水边界、井间地震解释结果等方面来研究了该块的油藏地质特征 ,证明了该块主要存在物性过渡带 ,其次断层有一定的影响 ,从而为下步开发方案的制定打下了坚实的基础。 
					3. 
						Low permeability reservoir bed has a large seepage resistance force to the flow of fluids in it, and reservoir bed fluids can flow only when a pressure is above certain pressure which is called startup pressure,which acts on it, so waterflooding development of low permeability reservoir is hard.
						 低渗透储层由于渗流阻力大存在启动压差 ,注水开发难度较大 ;非均质储层由于层间、平面渗流能力差异大导致储量动用程度差异大 ;渤海湾盆地异常高压油藏一般属欠压实型 ,投入开发后地层压力下降导致储层孔渗降低且部分不可逆 ,影响开发效果 ;深层油藏压力温度高 ,对工艺技术要求高。 
				
					6)  water flooding development
					  注水开发 
					1. 
						The statistics show that the electric power consumption in water flooding development takes up 33%~56% in the total power consumption of oil production.
						 据统计,注水开发油田的注水电耗占原油生产总用电的33%~56%,注水节能成为一个迫切需要解决的问题。 
					2. 
						On the basis of experiment, the article discusses such reservoir characteristics of S3 in East Block of Wen 13 and effects on water flooding development as follows:By conventional analysis technique such as thin-section analysis, lithology and petrological property are reveled.
						 本文从实验数据出发,分别论述了文东油田文13东块沙三中储层多方面的特征及其对注水开发的影响,主要内容有: 通过薄片、铸体等常规分析技术,揭示储层岩石学特征、岩石物性分布特征,研究成岩作用类型,划分成岩阶段和成岩相。 
		补充资料: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()中.
 
说明:补充资料仅用于学习参考,请勿用于其它任何用途。 
			
 参考词条 |