1) homopolar link;homopolar bond
无极键
2) wuji
无极
1.
Returning to Wuji again——harmonious Wushu and Toism;
复归于无极——志同道合的武术与道家
2.
From a view-point of scientific theory,the different connotation of the relation between human and nature at the levels of Wusheng,Wuji,Taiji and Huangji is presented respectively and human-being can learn the essence and law of the heaven,the earth and everything in the world at different levels.
从科学理解角度揭示了在无生、无极、太极、皇极层面,人天关系有不同内涵,人可认识天地万物不同层面的本质、规律。
3.
0 means a state of Wuji which can be so big that it has no boundary and at the same time it can be so small that it has no inner.
0就是其大无外、其小无内的无极之境,归0是天地万物有序运化的自然表现,是人类认识自然、改造自然必须遵循的法则,是促成身心健康、人物亲和、人天合一的正确途径。
3) The Promise
无极
1.
An Outsmarted Failure——A Simple Remark of Obvious Faults in the Film The Promise;
弄巧成拙的失败尝试——简评电影《无极》的明显缺失
2.
Covering every aspects of life,such as love,desting power,freelom,etc, Chen Kai-ge s The Promise introduces a surrealistic and non-realistic approach to refracting the reality.
陈凯歌的《无极》涵盖了爱情、命运、权力、自由等生活中的一切,它采用一种超现实和非现实的方式来折射现实。
4) the Promise
《无极》
1.
From Globalization to Localization: Reflections on the Promise and the Steamed Bread;
从全球到本土:评电影《无极》与博客搞笑剧《馒头》
2.
The Promise, Torn between Splendor and Gloom;
《无极》:华丽与阴冷之间的分裂
3.
The Thoughts Unable To Be Consumed——On The Enlightenment Predicament of The Promise;
无法消费的思想——论《无极》的启蒙困境
5) endless-rope
无极绳
1.
Application of endless-rope winder in underground auxiliary haulage;
无极绳绞车在煤矿辅助运输中的应用
2.
The endless-rope dispatching winch tows the tramcars or other equipments which are fixed on cable wire to solve the problem of assistant conveyance of mines.
无极绳调度绞车是利用钢丝绳循环往复地牵引固定在钢丝绳上的车辆或其他装备前进,能有效解决矿井辅助运输问题。
6) stepless pressure regulation
无极调压
1.
Brief introduced the structure and working principle of self- made dismentling and assembling press, the design and calculation for major workingpieces, the feature of while the prop is in long stroke, stepless pressure regulation can be achieved, etc.
简要介绍自制液压拆装压力机的结构和工作原理,主要工件设计计算和该设备具有 行程大同时能够实现无极调压等特点,为煤矿机械联接件的拆装提供了一个有益的尝试。
参考词条
补充资料: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
说明:补充资料仅用于学习参考,请勿用于其它任何用途。