说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 垂直井开发
1)  vertical extraction
垂直井开发
2)  vertical drilling
垂直钻井
1.
Theoretical and technical investigation of automatic vertical drilling tools;
自动垂直钻井工具的理论与技术研究
2.
During the drilling of 406mm section, the vertical drilling technique(VertiTrak)pro.
为防斜打快,在Φ406井段使用了贝克休斯垂直钻井技术。
3.
Commonly used taper drills, pendulum drills, full-hole drills, bias-axis drills, rigid drill collar, hinge-connecting drills, and rotary-pounding drills all are part of passive angle-preventing techniques which can not meet demands for vertical drilling in deep, ultra-deep, and complex wells.
垂直钻井是当今世界性钻井难题之一,它具有减少套管层次和套管尺寸、提高机械钻速、减少钻柱事故的优点。
3)  vertical well
垂直井
1.
Initiation pressure models for hydraulic fracturing of vertical wells in naturally fractured formation;
天然裂缝地层中垂直井水力裂缝起裂压力模型研究
2.
A new productivity prediction equation of vertical wells in plastic fluid type heavy oil reservoirs.;
塑性流体型稠油油藏垂直井产能预测公式
3.
The relationship between the permeability of coal bed and production curve about coal-bed methane vertical wells
煤储层渗透率与煤层气垂直井排采曲线关系
4)  vertical wellbore
垂直井筒
1.
Model of flow and apparent viscosity in vertical wellbores under polymer flooding;
聚合物驱垂直井筒流动和视粘度模型
2.
A convenient model of pressure gradient calculation of gas-liquid slug flow in vertical wellbore;
垂直井筒气液段塞流压力梯度的简便算法
5)  vertical oil-well
垂直油井
6)  vertilog
垂直测井
补充资料: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()中.

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