1)  body development
车体开发
2)  vehicle body
车体
1.
The model of pose relation among the coordinate axis of the camera, the vehicle body of the movable robot and the aim object i.
建立了摄像机坐标系 ,轮式移动机器人车体坐标系以及目标物体 (世界坐标系 )之间的位姿关系模型 ,着重论述了摄像机与轮式移动机器人车体之间的坐标变化关系 ,并求出了其变换矩阵Mct。
2.
The mathematical model of FEM of the vehicle body is formulated.
对某坦克工程车在起吊、挖掘工况下进行了受力分析,从机械系统的观点出发,应用机械结合技术,以解析的方法求解出车体的载荷条件和边界约束条件,建立了车体的有限元分析数学模型。
3.
with 3D shell elements,the paper calculates the stiffness and strength of the vehicle body under the lowest,medium and highest altitude angles.
对某自行火炮车体在静态射击时的受力情况进行了分析,建立了车体刚强度有限元分析的数学模型,给出了整车网格图。
3)  carbody
车体
1.
Design of type KZ4A electric locomotive s carbody;
KZ4A型机车车体设计
2.
Study on the first step mode of locomotive carbody;
机车车体第一阶模态的研究
3.
Suspension articulated joint assembly of carbody of type Q6W low floor light rail vehicle;
Q6W型低地板轻轨车悬浮铰接式车体连接装置
4)  body
车体
1.
Carbody for HXD2 AC Drive Electric Locomotive;
HXD2型交流传动电力机车车体
2.
Structural strength analysis of the new 108t general-purpose open-top car body;
新型108 t通用敞车车体结构强度分析
3.
Study on Bend Crashworthiness of Typical Body Structure;
车体典型结构件的抗弯曲冲击特性
5)  car-body
车体
1.
Finite Element Modal Analysis on Car-body of Railway Passenger Car;
铁路客车车体固有特性研究
2.
Taking a prototype light rail car with aluminum alloy car-body for example,the test model analysis is carried out.
介绍了城市轨道客车车体结构的振动试验方法。
3.
It can be seen from the analysis that the mixed structure car-body is feasible no matter from the technical points or from the economical points.
介绍了混合结构车体过渡接头的典型结构,探讨了复合板在我国铁道客车制造中应用的可行性,分析了热负荷对混合结构车体整体强度及刚度的影响情况等。
6)  car body
车体
1.
Test for type HX_D1 locomotive car body s static strength;
HX_D1型机车车体静强度试验
2.
Structure optimization and strength calculation for type SS4 modified locomotive s car body;
SS4改型机车车体结构优化及强度计算
3.
Design of car body for CKD_(7F) locomotive;
CKD_(7F)型机车车体的设计
参考词条
补充资料: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()中.

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