1)  dynamic link library
动态键接库
2)  dynamic state
动态
1.
A Brief Remark on the Interrelation between Molecular Static State and Dynamic State in Organic Chemistry;
略论有机化学中分子的静态与动态的相互关系
2.
The emphasis has been put on the method of controlling silk longth by using high speed register of PLC under the dynamic state.
本文介绍了可编程序控制器(PLC)在扁丝机改造中的应用,重点介绍了动态下利用PLC的高速计数对扁丝机进行定长控制的方法。
3.
In order to solve the convergence problem and overcome the difficulties for setting the initial values in the steady state simulation of distillation columns, a combined steady-dynamic state model is proposed by taking the advantage of the distinguishing feature of the implicit integration.
本文为了克服精馏塔静态仿真不易收敛和初值难以给定等难题,巧妙地利用隐含数值积分方法的特点,将稳态与动态数学模型耦合起来,用以求解高难度的非理想精馏塔静态仿真问题。
3)  Dynamic
动态
1.
Application and Perspective of Dynamic Soft-reduction Technology for Continuous Casting at Meigang;
梅钢连铸动态轻压下技术的应用与展望
2.
Analyze and research on dynamic multi-stage countercurrent extraction;
动态连续阶段逆流提取工艺分析与研究
3.
Research on the Dynamic Evaluation of Eco-environmental Quality in Anhui Province;
安徽省生态环境质量动态评价研究
4)  dynamics
动态
1.
Dynamics of Preparative Ion Exchange Chromatography of Amino Acids;
制备型氨基酸离子交换色谱的动态特性
2.
Analysis on the Epidemic Dynamics of HFRS in Jiangxi Province;
江西省肾综合征出血热动态分析
3.
Structure and dynamics of forest plant diversity in Eastern mountain area of Heilongjiang province;
黑龙江省东部山区森林植物多样性结构与动态的研究
5)  development
动态
1.
Recent Development on Qzonosphpere Protection;
有关保护臭氧层的最近动态
2.
Development and Tendency of Quality Breeding under New Situation of Commercial Maize Breeding;
商业化育种新形势下玉米品质育种动态与走向
3.
Finally,the development trends of low expansion alloys are reviewed.
最后综述了低膨胀合金的发展动态。
6)  performance
动态
1.
The Trial Production Performance Forecast Research of Daniudi Low Permeability Gas Field in Tabamiao;
塔巴庙大牛地低渗透气田试采动态预测研究
2.
An Analysis of Performance and Efficiency of Polymer Flood at Ng4 Cell of Central Region 1 of Gudao;
孤岛油田中一区Ng4聚合物驱注采动态及效果分析
3.
Simulation studies of waterflood performance with horizontal wells.;
水平井注水动态模拟研究
参考词条
补充资料: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

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