|
马上注册,结交更多同行朋友,交流,分享,学习。
您需要 登录 才可以下载或查看,没有帐号?注册
x
我这有一个程序关于solver初始化的测试
#include "stdio.h"
#include "ac.h"
extern "C"{
#include "as_sem.h"
#include "slv_intr.h"
#include "ac_adm.h"
}
void main()
{
ADAMS_OBJECT model;
ac_initialize("ADAMS_OEM");
model = ac_adm_read("base", "model.adm");
if (model != NULL)
{
if (ac_adm_write(model, "output.adm"))
printf("Model written to output.adm\n");
else
printf("Model could not be written.\n");
}
Asol_Initialize();
Asol_Terminate();
ac_terminate();
return;
}
输出为
Environment variable, MDI_AVIEW_MESSAGES, not defined
Unable to open message file: "". Check protection or existence of the file.
Model written to output.adm
PROGRAM FAULT
Demand Load: Unknown error number
Press any key to continue
不知是什么问题,sdk中的例子也是如此,请高手指点
在这里先谢过了。如果有人愿意与我交流sdk方面的与我联系
QQ147694992,(其他方面不懂,我不涉及建模,哈哈) |
|