1) terminal olefinic bond,terminal olefinic link
末端烯键
2) terminal
末端
1.
Comparison between terminal device control of VRF and FCU systems;
VRF系统与FCU系统末端控制的比较
5) end-to-end association
末端对末端配对
6) end treatment
末端治理
1.
In order to solve the disadvantages of the end treatment in the environmental pollution treatment,a new economic development mode,cleaner production,has been discovered.
为了解决传统的末端治理在环境污染治理中的弊端,寻找了一条新的经济发展模式——清洁生产。
2.
According to the theoretical foundations of the thought of sustainable development and cleaner production, this paper analyses on the distinction between cleaner production and “end treatment”, and expounds the importance of realizing economy's sustainable development and practicing the cleaner production.
依据可持续发展思想与清洁生产的理论基础,分析了清洁生产与“末端治理”的区别,阐述了要实现经济的持续良性发展必须实行清洁生产的观点。
3.
Nowadays, the end treatment needs substantial investment,and the technology for it is imperfect.
制漆 (涂料 )工业废水具有成分复杂、CODcr等有机物浓度高、可生化性差、水量少且变化大的特点 ,废水末端治理投资大、技术不成熟。
参考词条
补充资料: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
说明:补充资料仅用于学习参考,请勿用于其它任何用途。