1)  Parallel system
平行开发制度
1.
Twenty years passed, since Parallel system was governed by 1982 UN Convention on the law of the sea.
国际海底的平行开发制度自1982年联合国海洋法公约确定以来,已经过去20年了,在这20年的时践和发展中,不仅检验了平行开发制度的利与弊,也为今后进行深海底商业开采确立不可动摇的方向即按经济规律办事,打破僵硬的开发模式,为和平的目的,促进全人类在国际海底区域的各项合作而努力。
2)  parallel
平行
1.
The Reciprocity Between Parallel Limited Length Current Carrying Straight Leads;
平行有限长载流直导线间的相互作用
2.
Long-distance and Parallel Charged Transmission Line s Rock Digging Method;
长距离平行带电线路的岩石开挖方法
3.
Design for the instrument of collating the parallel of multi-axis optical system with video output;
具有视频输出的多光轴光学系统平行校正仪设计
3)  parallelism
平行
1.
Architectural appearance is the new balance reached between cross and parallelism ,which is the target and goal of the constant change of the appearance constitute ,as well as means the new relations of existence , and at the same time furthers.
建筑形态就是在“交叉”“平行”间不断达成的新的平衡,这正是形态构成不断变换的目的与目标,也意味着人与自然及人与人之间新的存在关系,并推动着现代人的审美观念向更高层次发展。
2.
By analyzing the lexical structure and semantic characteristic of parallelism in literary language,this essay tends to show the beauty of balance,rhyme,imagery and style created by the figure of speech,parallelism.
本文将从分析文学语言中“平行”修辞格的句法结构、语义特点出发,研究“平行”修辞格产生的均衡美、节奏美、意象美和气势美等美学特征。
3.
In the poem Mending Wall,using the ingenious structure arrangement and the skills of repetition,parallelism and symbolism,Frost incisively and vividly shows the complicated relation between people and people or between people and the society in modern western civilization only by simple language.
在《修墙》一诗中,他采用匠心独运的结构安排以及平行、重复、象征等写作技巧,仅用简单、通俗的语言就淋漓尽致、生动地表现了现代西方文明社会中人与人、人与社会之间复杂的关系。
4)  Parallel and antiparallel
平行和反平行
5)  parallel tunnels
平行隧道
6)  parallel AN/AO
平行AN/AO
1.
Based on this,an integrated process with enhanced denitrifying phosphorus removing bacteria(DPB),the parallel AN/AO process was proposed to remove nitrogen and phosphorus from low strength domestic wastewater.
提出低浓度污水强化反硝化除磷的一体化工艺——平行AN/AO工艺的主要构型。
参考词条
补充资料: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()中.

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