|
说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
|
|
1) Exploitation of irrigation rojects
水工开发
2) water-saving technology development
节水工艺开发
3) hydro engineering development
水利工程开发
1.
Abastract: This paper proposes ART Neural Net which is used to make decision about hydro engineering development plan.
将自适应共振神经网络模型应用于水利工程开发方案的决策 ,实例证明 ,该模型的计算结果与实际结果和其他方法所得结果是一致的 ,且与常规优选方法相比 ,该模型编程简洁 ,实现容易 ,效率更高。
4) water resources and hydropower development
水利水电工程开发
1.
This paper gives a general survey of the water resources and hydropower development in the world and makes a brief discussion on the implications of regional sustainable development.
本文论述了中国水利水电工程开发与区域可持续发展的关系 ,并提出了中国实现可持续的水利水电工程开发的主要对策。
5) artificial lift and flooding
人工举升和注水开发
1.
For oil fields with low permeability and quite long production history,artificial lift and flooding methods are best choices.
对于低渗油气田或生产历史长的油气田,采取特殊方法比如人工举升和注水开发进行开采。
6) process development
工艺开发
1.
The present status and problems in the basic research and process development of coal liquefaction are analyzed.
分析了煤液化基础研究与工艺开发的现状及所存在的问题,着眼于21世纪,强调了煤液化对我国国民经济可持续发展的重要性,指出应从解决能源和化工原料来源问题两方面大力开展煤液化的基础研究工作,在条件成熟时争取国际合作进行煤液化工业性试验。
2.
There is no right methodology for traditional process development, so the time for development is too long, and to make right decision is difficult, even missing the chance for selecting the best 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()中.
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条
|