|
说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
|
|
1) Results according to the development of experiments
开发试验效果
2) test effect
试验效果
1.
A New Method of describing the quantity of the randomvibration test effect-Statistics Variable Method;
一种定量评价随机振动试验效果的新方法——计量法
2.
On the basis of analysis and evaluation of field test effect in different type wells operated water shutoff work-over,several kinds of typical geological model for water plugging is concluded through the analysis of water breakthrough rule and reasons in production wells with different well .
对已经实施堵水的不同类型油井的现场试验效果进行了分析与评价,并在此基础上,通过对采用不同完井方式投产的油井所表现出的地层见水规律和出水原因的不同的分析,归纳出了几种较为典型的堵水地质模型,提出应根据不同的模型合理选择相应的堵水方式的建议。
3) effect
[英][ɪ'fekt] [美][ɪ'fɛkt]
试验效果
1.
The Analysis of the Applied Experiment Effect of the Seedling Breeding Technology of Staggered Stubble on Yearly Multip-Crop of Vegetable Production in the the “Ten Thousand Yuan Field”;
错茬育苗技术在“万元田”建设一年多造蔬菜生产上的应用试验效果分析
4) test results
试验效果
1.
It gives certain understanding to formation adaptability, the compatibility of ternary system and the emulsification and chromatographic fraction of produced liquid based on the analysis of the test results.
杏二区西部三元复合驱是在先导性试验成功后进行的三元复合驱扩大规模试验 ,该试验是在工业井距和中心井 10 0 %含水率条件下进行的 ,在分析试验效果的基础上 ,对地层的适应性、三元体系的配伍性及采出液的乳化以及色谱分离等取得了一定的认识 ,为三元复合驱大规模推广应用提供了实践依据。
5) Effect experiment
效果试验
6) development effect
开发效果
1.
Analyses of the horizontal well development effect in Jiangsu complex small fault block;
江苏复杂小断块水平井开发效果分析
2.
A new discussion on comprehensive evaluation system of development effect in complex fault-block reservoirs;
复杂断块油藏开发效果综合评判体系新探讨
3.
Reservoir wettability change of the 8~3 stratum of Es_2 in Block No.2 of Shengtuo Oilfield and its influence on development effect;
胜坨油田二区沙二段8~3层储层润湿性变化及对开发效果的影响
补充资料: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()中.
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条
|