1)  answer back key
应答键
2)  response
应答
1.
Study of relationship between the serum viral load and ALT level and response to interferon therapy.;
乙型肝炎病毒载量及ALT水平与干扰素应答关系的研究
2.
Wild Rice Gene Expression in Response to Brown Planthopper (Nilaparvata lugens Stl) Feeding and Whitebacked Planthopper (Sogatella furcifera Horvath) Feeding;
药用野生稻应答稻飞虱取食过程中基因表达的研究
3.
Challenge of the learning society and response of higher education;
“学习型社会”的挑战与高等教育的应答
3)  Low and no immune responses
低应答和无应答
4)  immune response
免疫应答
1.
Specific immune responses induced by a hepatitis B virus preS2S DNA vaccine in BALB/c mice.;
乙肝病毒核酸疫苗诱导BALB/c小鼠特异性免疫应答
2.
Herpesvirus entry mediator:a switch in immune response and its role in anti-tumor immunity;
疱疹病毒侵入介体在免疫应答及抗肿瘤免疫中的研究进展
3.
Effects of plasmid DNA pIL-12 on the immune response of mice infected with hydatid cysts of Echinococcus granulosus;
pIL-12质粒DNA对细粒棘球蚴感染小鼠免疫应答的影响
5)  transient response
过渡应答
1.
Study of kinetics for complete oxidation of methanol by step transient response method;
阶跃过渡应答法研究甲醇完全氧化反应动力学──反应机理及动力学参数的求取
2.
Study of kinetics for complete oxidation of methanol by step transient response method Adsorption behaviour of CH_3OH,O_2,CO_2 and reaction response of complete oxidation of CH_3OH;
阶跃过渡应答法研究甲醇完全氧化反应动力学
3.
The adsorption behaviors of isobutene,ammonia and tert-butylamine on surface of the catalyst were investigated by means of transient response method.
用过渡应答技术对原料异丁烯、氨及产物叔丁胺在催化剂表面的吸附行为进行了研究,用热分析、原位红外光谱表征了催化剂在不同反应条件下的吸附性能。
6)  impulse-response
扰动-应答
参考词条
补充资料: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

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