说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 开发方案
1)  development project
开发方案
1.
The basic principles of multi-goal decisionmaking and idealized pattern are used to establish a mathematical model for selecting oilfield development project, by which integrally the indexes of oilfield development effect, direct economic efficiency and social efficiency are considered for an optimal selection from 6 oilfield development projects.
应用多目标决策理想点法的基本原理,建立了一个优选油气田开发方案的数学模型,综合考虑了油气田开发效果、经济效益和社会效益等指标,对某油田新区的6种开发方案进行了优选,并将评价结果与单指标分析法和模糊数学优选法的结果进行了比较,表明用多目标决策方法优选油气田开发方案是简单、科学合理的。
2.
Effective techno-economic evaluation on the development project plays an important role in the formulation and implementation of whole gas reservoir.
对东泰气田 Jp1 气藏拟定的两套开发方案从投资估算、盈利能力等技术经济角度出发 ,对两套开发方案进行了技术经济评价和对比分析 ,得出两套开发方案中更加合理的开发方案 ,对东泰气田蓬一气藏的勘探与开发提供了技术经济指导。
3.
Its processes are that first,it is to establish an evaluation model for the oil-gas field development projects,in the second place,the optimal normal value is calculated out by means of the optimum seeking method in order to determine the optimal objects,at last,according to its order.
文中把信息论和模糊物元分析有机地结合,对油气田开发方案的评价优选,提出了信息熵模糊物元分析法。
2)  development plan
开发方案
1.
Study of Development plan for Natural Gas of Strippled Wells in Sichuan Gas Fields ,;
四川气田低产气井天然气开发方案研究
2.
Reservoir numerical simulationand development plan for No. 11 block oil reservoir in Chengdao oil field.;
埕岛11断块油藏数值模拟及开发方案研究
3.
According to the results of numerical stimulation and the economic evaluation, a reasonable development plan is determined in different development periods.
根据模拟结果和经济评价结果,确定了该类油藏不同开发时期的合理开发方案
3)  Development Program
开发方案
1.
Before and during drilling, its development program was optimized and adjusted.
旅大4-2油田在ODP批准后进行了新的三维地震资料采集及处理,基于该油田新的油藏构造精细解释及储层反演成果,利用油藏地质建模与数值模拟一体化技术,建立起更精确的油藏模型代替ODP阶段的油藏模型,并在随钻过程中利用测井、录井等新资料及时更新油藏模型;在钻前及随钻过程中对油田开发方案进行了优化与调整,如井型优化,边部水平井距内含油边界距离的优化,高部位水平井距油层顶部距离的优化,以及水平井主支上钻分支井的效果研究等。
2.
Reservoir development program contains a number of technological and economic targets, The dimensions of the unit value indicators and targets are often not integrated, the development program is good or bad on one target is relative, has not definite boundary and is fuzzy .
油藏开发方案含有多个技术经济指标,各指标值的量纲单位往往不统一,又开发方案在某一指标下的优劣是相对的,无明确界限且具有模糊性。
4)  development scheme
开发方案
1.
Research on cascade development scheme from Pengshui hydropower station to the river mouth of the main Wujiang river;
乌江干流彭水至河口河段梯级开发方案研究
2.
In light of the applied defects of subjective and objective weight assignment methods of the appraisal approaches for oil-gas field development, the TOPSIS method to comprehensively evaluate the development scheme of oil-gas field is presented.
针对目前油田开发方案评价方法中主观赋权法和客观赋权法的应用局限,提出用理想解排序法来进行油田开发方案的综合评价,以油田开发理论和实践为依据,将油田开发效果指标、经济效益指标综合考虑,建立了油田开发方案综合优选的数学模型。
5)  exploitation scheme
开发方案
1.
To draw up a scientific,reasonable and feasible exploitation scheme of a project area for its integrated developmem of agricultural resources is an important task to the integrated development of agricultural resources.
为农业资源综合开发项目区拟定科学、合理和可行的开发方案,是农业资源综合开发中的一项重要工作。
6)  development plan of oil and gas fields
油气田开发方案
1.
Building and application of analytical hierarchy process model for optimization of comprehensive development plan of oil and gas fields;
为此,尝试运用综合评价法中的层次分析(AHP,Analytic Hi-erarchy Process)理论,对油气田开发方案进行评价与优选。
补充资料: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()中.

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