集成UG和ANSYS之二----upupdate之x_t
集成UG和ANSYS之二----upupdate之x_t
author:? san
email:?? visualsan@yahoo.cn
?????????????????????????????????????????????? write by san,nuaa 202
????????????????????????????????????????????????????????????? 2011,11,13
--------------------------------------------------------------------
將UG的prt文件先儲存文x_t格式文件,然后再導入ANSYS計算。文將探討ANSYS集成UG進行優化方面的問題,將實現一個ugupdate.exe,功能除了更新prt文件文還將prt文件另存為x_t文件,以供ANSYS調用。
關于prt格式轉換為x_t格式的方法用UG/OPEN API可以實現,查閱網絡資料,已有先例,故prt文件轉x_t格式的代碼取自網絡,本人不造車輪。改進后的ugupdate.exe調用方法如下
system("you.prt?? you.exp?? you.x_t")
createprocess("you.prt“,”you.exp?? you.x_t"...)
功能描寫:
用you.exp里的參數更新you.exp并另存為you.x_t
代碼如下:
#include <iostream>#include <string>
#include <uf.h>
#include <uf_modl.h>
#include <uf_ps.h>
#include <uf_obj.h>
#include <uf_assem.h>
#include <uf_part.h>
#include <uf_modl_expressions.h>
using namespace std;
/*
功能:
用exp文件更新prt文件文,并將prt文件另存為x_t文件
調用方法:
system("you.prt you.exp you.x_t")
createprocess("you.prt","you.exp d:\\you.x_t"...)
注意:
文件名一定要寫全,在導出時會自動刪除舊的文件否則可能
因為文件已經存在而導致導出x_t文件失敗。
san,nuaa,202
visualsan@yahoo.cn
2011.11.13
*/
int prt_save_as_xt(tag_t,string ps);
//引入lib文件,因人而異
#pragma comment(lib,"F:\\Program Files\\UGS\\NX 4.0\\UGOPEN\\libufun.lib")
#define VISUALSAN_NUAA_202_RUN(x)\
if(0!=x)\
{\
char msg[133];\
UF_get_fail_message( x,msg );\
cout<<msg;\
return -1;\
}
int main(int argc,char **argv)
{
//實現初始化ug api,否則其它ug函數是無法使用的
VISUALSAN_NUAA_202_RUN( UF_initialize() );
//文件路徑
string prt,ep;
string x_t;//x_t格式文件地址
/*參數個數檢查,
注意用system("UG_update.exe xx.prt yy.exp")調用時,
默認第一個參數為exe地址,所以你的參數
是第二個開始;用createprocess時,則參數和你傳遞的一樣
system("UG_update.exe xx.prt yy.x_t")
argv[0]=UG_update.exe argv[1]=xx.prt argv[2]=yy.exp argv[3]=yy.x_t
createprocess("UG_update.exe","xx.prt yy.exp yy.x_t",....)
argv[0]=xx.prt argv[1]=yy.exp argv[2]=yy.x_t*/
if( argc<3 )
{
cerr<<"參數個數不足";
return -1;
}
//默認你是用createprocess創建線程的
if(argc==3)
{
prt = argv[0]; //prt文件
ep = argv[1]; //exp文件
x_t = argv[2]; //x_t文件
}
//否則是用system調用的
else
{
prt = argv[1]; //prt文件
ep = argv[2]; //exp文件
x_t = argv[3]; //x_t文件
}
//打開模型文件
UF_PART_load_status_t st;
tag_t prt_id;
//打開prt文件
VISUALSAN_NUAA_202_RUN( UF_PART_open( prt.c_str(), &prt_id, &st ) );
//更新模型文件
VISUALSAN_NUAA_202_RUN( UF_MODL_import_exp( (char*)ep.c_str() , 0) );
//更新模型
VISUALSAN_NUAA_202_RUN( UF_MODL_update() );
//寫入文件
VISUALSAN_NUAA_202_RUN( UF_PART_save() );
//另存為x_t文件
if( -1 == prt_save_as_xt(prt_id,x_t) )
return -1;
//關閉prt文件
VISUALSAN_NUAA_202_RUN( UF_PART_close(prt_id,1,1) );
VISUALSAN_NUAA_202_RUN( UF_PART_free_load_status(&st) );
//退出前UF_terminate調用清理
VISUALSAN_NUAA_202_RUN( UF_terminate() );
return 0;
}
int prt_save_as_xt(tag_t body_tag,string ps)
{
//沒有后綴名時,加上后綴名
if( std::string::npos == ps.find( ".x_t" ))
ps += ".x_t";
//引用代碼:Ug2Ansys.cpp 李 響, 中國地質大學(北京) 2006.12.31
uf_list_p_t body_list;
// 獲得裝配樹根事例root_part_occ, 當函數返回NULL_TAG時, 表明當前部件文件中沒有裝配(即單個部件)
tag_t root_part_occ = UF_ASSEM_ask_root_part_occ( body_tag );
VISUALSAN_NUAA_202_RUN( UF_MODL_create_list(&body_list) );
// 如果是單個部件
if(root_part_occ == NULL_TAG)
{
tag_t object = NULL_TAG;
int UF_body_type;
int type;
int subtype;
do{
VISUALSAN_NUAA_202_RUN(
UF_OBJ_cycle_objs_in_part(body_tag, UF_solid_type, &object)
);
if(object != NULL_TAG)
{
VISUALSAN_NUAA_202_RUN(
UF_OBJ_ask_type_and_subtype(object, &type, &subtype)
);
VISUALSAN_NUAA_202_RUN(
UF_MODL_ask_body_type(object, &UF_body_type)
);
if(subtype != UF_solid_body_subtype)
continue;
if(UF_body_type == UF_MODL_SOLID_BODY)
{
VISUALSAN_NUAA_202_RUN(
UF_MODL_put_list_item(body_list, object)
);
break;
}
}
}while(1);
}
//如果是裝配體
else
{
tag_t obj = UF_ASSEM_ask_prototype_of_occ(root_part_occ);
tag_t object = NULL_TAG;
int UF_body_type;
int type;
int subtype;
do
{
VISUALSAN_NUAA_202_RUN(
UF_OBJ_cycle_objs_in_part(body_tag, UF_solid_type, &object) );
if(object != NULL_TAG)
{
VISUALSAN_NUAA_202_RUN(
UF_OBJ_ask_type_and_subtype(object, &type, &subtype) );
// 判斷body是否是一個Solid或Sheet
VISUALSAN_NUAA_202_RUN(
UF_MODL_ask_body_type(object, &UF_body_type) );
if(subtype != UF_solid_body_subtype)
continue;
if(UF_body_type == UF_MODL_SOLID_BODY)
{
// 將對象加入到鏈表的尾部
VISUALSAN_NUAA_202_RUN(
UF_MODL_put_list_item(body_list, object) );
}
}
else
{
break;
}
}while(1);
}
// 如果文件存在, 先刪除
remove( ps.c_str() );
// 創建Parasolid文件
VISUALSAN_NUAA_202_RUN(
UF_PS_export_data(body_list, (char*)ps.c_str() ) );
// 刪除鏈表
VISUALSAN_NUAA_202_RUN(
UF_MODL_delete_list(&body_list) );
return 0;
}
?
程序編譯后生成update.exe備用
?
使用方法之一:system("update.exe? you.prt? you.exp? you.x_t ");
代碼:
#include <iostream>using namespace std;
//san,nuaa,202,visualsan@yahoo.cn
//2011.11.13
void main()
{
cout<<"ug1\n";
system("UG_UPDATE.exe box.prt box.exp you.x_t");
}
使用方法之二:
新建一個? xx.bat,內容如下
ug_update.exe? you.prt? you.exp? you.x_t
保存,把所有文件放在一起,運行,ok.
所示方法之三:createprocess
代碼如下:
#include <windows.h>#include <iostream>
using namespace std;
//write by san ,nuaa 202,2011.11.13
// visualsan@yahoo.cn
int main(int argc,char**argv)
{
//是否顯示窗口
bool bShowWnd=1;
STARTUPINFO si;
PROCESS_INFORMATION pi;
ZeroMemory( &si, sizeof(si) );
si.cb = sizeof(si);
ZeroMemory( &pi, sizeof(pi) );
si.dwFlags=STARTF_USESHOWWINDOW;
si.wShowWindow=bShowWnd?SW_SHOW:SW_HIDE;
if( !CreateProcess("UG_UPDATE.exe",// module name (use command line)
"D:\\ug\\box.prt D:\\ug\\box.exp D:\\ug\\box.x_t", // Command line
NULL, // Process handle not inheritable
NULL, // Thread handle not inheritable
FALSE, // Set handle inheritance to FALSE
0, // No creation flags
NULL, // Use parent's environment block
NULL, // Use parent's starting directory
&si, // Pointer to STARTUPINFO structure
&pi ) // Pointer to PROCESS_INFORMATION structure
)
{
cerr<<"CreateProcess failed ";
return -1;
}
//wait until end
WaitForSingleObject( pi.hProcess, INFINITE );
// Close process and thread handles.
CloseHandle( pi.hProcess );
CloseHandle( pi.hThread );
return 0;
}
?
使用實例
1.UG新建一個正方體
2.保存為box.prt ,將參數導出為box.exp
3.采用第二種方法,運行xx.bat更新程序,注意導出文件一定要寫完整路徑
4.導入ansys,如圖所示,ok
-----------------------------------------------------------------------------------?????????????????????????????????????????????????????????????????
??????????????????????????????????????????????? write by san,nuaa 202
???????????????????????????????????????????????? Email:visualsan@yahoo.cn
???????????????????????????????????????????????????????????????? 2011,11,13
轉載于:https://www.cnblogs.com/JustHaveFun-SAN/archive/2011/11/13/visualsan_nuaa_202_2.html
總結
以上是生活随笔為你收集整理的集成UG和ANSYS之二----upupdate之x_t的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Google Maps API 调用实例
- 下一篇: MySQL保留关键字