说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 红壤开发
1)  development of red soil
红壤开发
1.
The key strategy for Fertile Soil Scheme dealt with in this paper is base on the real conditions for development of red soil in Jiangxi.
从江西的实际情况出发,提出了红壤开发全面实施“沃土计划”发展持续农业的主要对策:首先对小流域进行综合治理,立体开发;二是坚持等高开垦,防治水土流失;三是增施有机肥,提高土壤有机质含量;四是加强有机肥积造和施用技术的科研工作。
2)  Red soil exploitation area
红壤开发区
3)  Newly opened red soil
红壤新开地
4)  Red soil
红壤
1.
Study on the phosphorus sorption-desorption characteristics of red soils and its environmental impact;
红壤磷吸附解吸特性及环境效应研究
2.
The influence of acid rain on the release of phosphorus from upland red soils;
酸雨对旱地红壤磷素释放的影响研究
3.
Studies on the character and rule of cadmium release from red soils under the action of acid rain;
模拟酸雨作用下红壤镉释放的研究
5)  red earth
红壤
1.
Assessmentof criticalload for acid deposition to all kinds of red earth in Liuzhou area ,China;
柳州地区各种红壤土种的酸沉降临界负荷研究
2.
Diagnosis of leaf yellowing disease for Huanghua pear plants on red earth;
红壤黄花梨叶片黄化症的诊断
3.
A comparative study on soil water characteristics of lateritic red earth dryland and red earth dryland in Fujian province;
福建赤红壤旱地与红壤旱地水分特性的比较
6)  red soils
红壤
1.
Distribution of rare earth elements in red soils in southern China;
中国南方红壤中稀土元素分布的研究
2.
Mobilization of aluminum from red soils under acidic conditions and its environmental implications;
酸性条件下红壤中铝的活化及环境意义
3.
This paper deals with the distribution of soluable rare earth elements (REE) in red soils and different soil profiles,and also the change of percentage of REE in total soil contents.
本文对165个红壤样品进行了可溶态稀土含量的测定,研究了可溶态稀土在土壤中的分布、土壤不同剖面层的分布及其所占比例的变化,探讨了土壤可溶态稀土含量与不同母质的关系,与土壤pH值(pHKCl、pHH2O)、有机质间的相关性,分析了与土壤硅酸盐成分及质地间的相关性。
补充资料: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()中.

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