1)  link
键路
2)  critical path
关键路径
1.
The earned value analysis in project schedule based on critical path;
基于关键路径的项目进度挣值分析
2.
Workflow critical path algorithm based on activities;
基于活动的工作流关键路径算法
3.
The activities sequence in critical path of highway project network;
道路工程项目网络关键路径中的活动排序问题
3)  critical path
关键路
1.
We know that the operation processing time length in a schedule can be calculated through critical path of the corresponding chart.
对于给定加工顺序的n个工件的排列排序,排序时间表长即任务的最后完工时间的计算可以通过与问题对应的有向图的关键路的计算得到。
2.
Proceed to the technique battlefield the test equipment reforms,increasing well-trained degree of the personnel,by using the concurrent technology and the critical path technolog.
改造技术阵地测试设备,提高操作人员的熟练程度,采用并行技术和关键路技术优化导弹测试流程,同时建立战时应急状态下的测试流程,特别是导弹批量测试技术的提出,将极大地提高导弹测试速度,缩短测试时间,为将来技术阵地的建设提供了建议,同时也对将来常规导弹的设计和研制提出了更高的要求。
3.
According to the characteristics of interval plan network,this paper introduces the concept of interval critical path(DBICP).
论文针对区间数计划网络的特点,提出了基于限制期约束的区间关键路(deadline basedinterval critical path,DBICP)的概念,通过相关定理的证明给出了求解DBICP的算法,该算法拓展了Stefan Chanas和Pawel Zielinski关于区间关键路问题的研究成果。
4)  critical path
关键路线
1.
Solve the critical path problem by the shortest path method;
用最短路径法求关键路线及其SAS的实施
2.
This paper focus on deploying resource,make use of the different completion probability of critical and un-critical path,the authors suggest a schedule optimization algorithm based on transferring resources from un-critical path to critical path purposely,and the result of applying the model shows that the method is practical for optimizing project schedule with resourc.
着眼于资源的调配,提出利用关键路线与非关键路线上完工概率的不同,有目的地将非关键路线上的资源调配到关键路线上进行进度计划优化的算法,并对该方法进行了算例说明,结果表明该法对资源约束下的工程项目进度计划优化具有实际意义。
3.
The limitation of the PERT in the planning of construction schedule is studied for two cases, where there are several critical paths, or the sub critical path is close to the critical path.
分析了施工进度计划中当出现多条 (期望 )关键路线及次关键路线和关键路线相接近时应用PERT存在的一些问题 ,指出了在计算完工概率时应用PERT的局限性 ;将多条 (期望 )关键路线及次关键路线和关键路线相接近的情况分为相关和非相关两种情形分别讨论 ,提出相应的完工概率的计算方法 。
5)  key path
关键路径
1.
Study of time parameter and key path arithmetic in engineering building project network planning;
工程网络计划的时间参数与关键路径算法研究
2.
Affecting factors analysis of major equipment erection key path in PWR NPP;
压水堆核电站主设备安装关键路径影响因素分析
3.
Based on the utility analysis in the economics,by searching the key path between a traffic mode and another transfer mode in the intermodal transfer points,a utility cost model is put forward to evaluate and optimize the facilities layout alternatives of the urban intermodal passenger transfer points.
利用经济学中效用分析法,通过寻找枢纽内存在换乘的任何2种交通方式之间的关键路径,建立枢纽内设施不同布局方案的效用损失模型,以此评价和优化枢纽内设施布局方案。
6)  critical link
关键路段
1.
To simplify the problem of improving road network reliability with limited resources,only critical links,which are chosen by travelers with higher probabilities than a prescribed threshold,were selected.
为简化资源约束下路网可靠性的改进问题,只选择关键路段(即被选择的概率大于预定阀值的路段)进行改进。
参考词条
补充资料:UG自定义右键弹出菜单和快捷键

UG的右键弹出菜单包含了一些我们常用的功能,比如Roate、Fit等,为了使用的更加方便,我们也可以自己打造!打开UG安装目录下的UGII下的menus文件夹,里面包含了一些*.men和*.tbr,我们以文本方式打开它,发现也不难理解。例如,我们想在右键弹出菜单里面的roate和pan之间加入如图示的view下的orient功能,首先我们打开ug_main.men,查找orient,会看到下面的内容:



BUTTON UG_VIEW_REFRESH
LABEL &Refresh
BITMAP refresh_window.bmp
ACCELERATOR F5
ACTIONS STANDARD



CASCADE_BUTTON UG_VIEW_EDIT
LABEL O&peration



BUTTON UG_VIEW_ORIENT
LABEL Ori&ent...
ACTIONS STANDARD



参考上面部分我们会看出快捷键的定义是*ACCELERATOR来指定的,我们把红色部分即BUTTON UG_VIEW_ORIENT的LABEL下面加入一行ACCELERATOR Ctrl+Alt+O(这里可以自行定义,但不要和别的重复),保存,这样我们就把快捷键定义好了,然后我们选中红色部分复制。接着打开ug_view_popup.men,它就是右键弹出菜单的定义文件。为了把它放在roate和pan之间,我们把刚才复制的部分粘贴在下面图示的位置:



TOGGLE_BUTTON UG_VIEW_POPUP_ROTATE
LABEL R&otate
BITMAP rotate.bmp
ACCELERATOR F7
ACTIONS STANDARD



BUTTON UG_VIEW_ORIENT
LABEL Ori&ent...
ACCELERATOR Ctrl+Alt+O
ACTIONS STANDARD



TOGGLE_BUTTON UG_VIEW_POPUP_PAN
LABEL &Pan
BITMAP pan.bmp
ACCELERATOR F9
ACTIONS STANDARD

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