|
1) development threshold
开发度
1.
By the use of development threshold, the sustainable development of water resources of basin is evaluated.
从可持续发展的观点出发 ,对水资源可持续开发的内涵进行了定义 ;从保证生态环境稳定的角度 ,对开发度进行了界定 ,并确定了保证河流系统生态环境稳定的生态需水模型 ,从而建立了河流系统水资源开发度模型 ;用开发度模型对海滦河流域开发的情况进行评价 ,结果表明海滦河流域的实际开发利用量大量占用了河流系统的生态用水 ,超过其开发度 ,影响了河流系统生态环境稳定和流域水循环可再生性的维持 ,使海滦河流域生态环境恶
2) deep development
深度开发
1.
Application of high-resolution sequence stratigraphy in deep development of oilfield;
高分辨率层序地层学在油田深度开发中的应用
2.
Research on the Deep Development and Management of Human Resources of University;
高校人力资源深度开发与管理研究
3.
Nutritional value,stabilizing treatment and deep development of rice bran as well as research status and functionality are discussed in detail.
详细论述了米糠的营养性质、稳定化处理和深度开发,以及米糠蛋白的研究现状、乳化性和乳化稳定、起泡性和泡沫稳定性、溶解性等功能性质。
3) further development
深度开发
1.
The Research on Further Development of Rural Ecotourism in Turpan Region
吐鲁番地区乡村生态旅游深度开发研究
2.
Except the delicious and highly nutritional meat,the other parts,including hair,hide,milk,blood,viscera,bone and horn,are also valuable for further development.
牦牛肉质鲜美 ,营养价值高 ,牦牛的全身 (毛、皮、肉、乳、血、内脏、骨、角 )都有深度开发价值。
3.
According to the vast sand resources, Changli County began development mainly including digging well, supplying electricity, building roads, constructing field guarding foresting, explored five efficient utilization modes and accumulated a lot of experiences for the further development and sustainable utilization of sand resources.
针对广阔沙地资源 ,从 1988年开始昌黎县进行以打井、配电、修路、发展农田防护林网等为主要内容的开发 ,摸索出沙地保护地蔬菜生产、乔木保护沙地果园、沙地节水高效种植、沙地防风林生态建设和畜禽养殖、农副产品加工等 5种高效利用模式 ,为沙地资源深度开发和持续利用探索了路子。
4) development intensity
开发强度
1.
Road Traffic Factors and Strategies of Projects Development Intensity Critical Control in Mountain Cities Urban Redevelopment;
影响山地旧城改造项目开发强度临界控制的道路交通因素及对策
2.
The experience of land use and development of surrounding area in foreign high-speed railway station was summarized from land structure and layout,land use development intensity and development model.
从用地结构与布局、用地开发强度以及开发模式三个方面,总结了国外高速铁路站点周边地区土地利用与开发的经验,并结合济南西客站片区的土地利用规划专项研究,就高铁站点周边的用地布局与结构、开发强度、土地开发推进模式等方面进行了探讨,以期为我国高铁站点周边地区的建设积累经验。
5) Land use intensity
开发强度
1.
It analyzes the land use intensity impact of rail transit on the station area.
按照功能导向,将轨道交通站点划分为居住型、中心型、枢纽型三种类型,确定站点的空间影响区,分析轨道交通站点对周边用地开发强度的影响作用。
6) Development Level
开发程度
1.
Climatic condition and change dynamic of development level of the potential productivity of winter wheat in Tianshui
天水冬小麦气候条件与生产潜力开发程度变化动态
2.
Based on the ten-years experimental and statistical data in arid area,semi-arid area and semi-arid and semi-humid area in Tianshui City,Gansu Province,the development level of potential productivity of natural precipitation on drylands has been analyzed,and the moderate development countermeasures of potential productivity in different areas have been put forward.
通过10年的定点资料统计,分析了天水旱作地区自然降水生产潜力开发程度、适宜开发程度及可开发程度;并就资源和环境条件对水分生产潜力开发的制约问题进行了讨论,分阶段分层次提出了生产潜力适度开发对策措施。
补充资料: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()中.
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条
|