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

📄 main.cpp

📁 不错的国外的有限元程序代码,附带详细的manual,可以节省很多的底层工作.
💻 CPP
字号:
/*
	Program developed by Yves DUBOIS-PELERIN and Thomas ZIMMERMANN 
	at the Laboratory for Structural and Continuum mechanics, Ecole
	Polytechnique Federale de Lausanne under Swiss National	Science 
	Foundation grant number 21-27589.89, June 1992.
	
	Expurgated version developed by Yves Dubois-Pelerin for ZACE 
	Services Ltd, November 1992.
*/

//  MAIN
//  Solves finite element problems.
//
//  The DEBUG option MUST be used (check in file 'debug.def').
//  See also file 'main2.c'.

#include "domain.hxx"
#include "freestor.h"
#include "compiler.def"


void main ()
{
	/*
#ifdef BORLAND
   set_new_handler (&freeStoreError) ;     // prevents memory overflow
#endif
   */

   Domain* mesh ;

   mesh = new Domain() ;
   mesh -> solveYourself() ;
   delete mesh ;
}



⌨️ 快捷键说明

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