1)  UG/Open API
UG/Open应用程序接口
2)  UG
UG
1.
Analysis of Center Distance between Cylinders of Offset Press Based on UG;
基于UG的胶印机滚筒间中心距分析
2.
The 3D modeling and assembly process based on UG NX;
基于UG NX的模具三维建模与装配设计
3.
Modularization Design of Aggregate Machine Tool Based on UG;
基于UG的组合机床模块化设计
3)  Unigraphics
UG
1.
The design of involute modified gear system based on Unigraphics;
基于UG的渐开线变位齿轮传动系统的设计
2.
0,a special customer interface for using CAD system of ATX computer case based on unigraphics software is developed,and there are menu and toolbar and dialog box and correlative message box in this system.
综合运用UG各二次开发工具UG/Open API、UG/OpenMenu Script、UG/Open UIStyler和V isual C++6。
3.
The study on the simulation of dynamic of cam mechanic based unigraphics;
文章给出了弧面分度凸轮工作轮廓面上点坐标的通用计算公式 ,在此基础上阐述利用UG/FreeformModeling模块与C + +语言相结合生成弧面分度凸轮的工作曲面 ,以实现弧面分度凸轮的三维实体建模。
4)  UGⅡ
UGⅡ
1.
Application of UGⅡin the design of auto winder;
UGⅡ在自动络筒机设计中的应用
2.
application of UGⅡ software on designing extrusion porthole die of Aluminium profiles;
UGⅡ软件在铝型材挤压分流组合模具设计中的应用
3.
CAD System and Software Design for the Forging Die of Airfoil Blade Based on UGⅡ;
基于UGⅡ的叶片锻模CAD系统及软件设计
5)  UG-Ⅱ
UG-Ⅱ
1.
Use an excellent CAD software UG-Ⅱ to make a design of hte die;
UG-Ⅱ计算机软件在冲压模具设计中的应用
6)  UG software
UG
1.
Realization of the 3D model of straight-teeth bevel gear by using UG software;
利用UG实现直齿圆锥齿轮的三维造型
2.
A retarder will be designed to explain a new method based on UG software by three steps.
以减速器为例,基于UG软件平台,通过应用几何链接器(WAVE)链接参数、引入变量化约束和基准分析这三个步骤实现减速器系列装配模型的参数化设计。
参考词条
补充资料: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
    保存上面修改的文件,重新打开ug,我们会看到图示的右键菜单已经改变了!是不是很方便?

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