⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ibgdinit.c

📁 有限元学习研究用源代码(老外的),供科研人员参考
💻 C
字号:
/* last edit: Ilja Schmelzer -------------- 10-JUN-1994 15:05:12.06	*/
/************************************************************************/
/*                                                                      */
/*  <<< I B G >>> - Intersection - Based Grid generation package 	*/
/*                                                                      */
/*  Version 1.1 by Ilja Schmelzer   schmelzer@iaas-berlin.d400.de       */
/*                                                                      */
/*  to be distributed under IBG license conditions (see "readme.ibg")	*/
/*                                                                      */
/************************************************************************/
#include "ibglib.h"
/* This program has to be called once at the begin. */
void ibgdInit()
{

/* An equivalent anouncement is required for every license: */

 ibgmessage(ibgMIInit);

 return;
}

/* has to be called at the end: */
int ibgdQuit()
{

/* Don't wonder that this call is nearly empty.  At home I have
another version which calls my local test environment. So I can use a
main file containing your problem without any change. */

 ibgmsgreset;
 ibgmessage(ibgMIQuit);
 ibgmsgreset;
 return 0;
}


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -