customdll.h
来自「proe5.0野火版下载(中文版免费下载)」· C头文件 代码 · 共 32 行
H
32 行
#define MAX_CL_NAME_LEN 64/* These functions are provided by the custom load utility and can be called from the user's custom load application code. */extern int CLevalMeasure(char* meaName, double* MeasureValue);extern int CLevalStateVariables(char* custLName, char* forceName, int numElem, double* stateVarArray);/* These functions are called from the custom load utility and are provided by the user's custom load application code. Only EvalCustomLoad is required. The rest are optional.*/extern int CLUSEREvalCustomLoad( char* CustomLoadName, char* ForceName, double CurrentTime, double* value);extern int CLUSERDefineInit(char* CustomLoadName, char* ForceName);extern int CLUSERRunInit(char* CustomLoadName, char* ForceName);extern int CLUSERGetStateVariablesSize(char* CustomLoadName,char* forceName, int* size);extern int CLUSERInitStateVariables(char* CustomLoadName, char* forceName, double* StateVar);extern int CLUSERGetStateVariableDerivatives(char* CustomLoadName, char* forceName, double CurrentTime, double* StateVar);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?