资源简介

此文件包括了讲述电磁场有限元方法的几本经典电子书,以及用有限元方法求解二维三维电磁场边值问题的C语言源程序。

资源截图

代码片段和文件信息

/*                ***********NOTICE**********                              */
/*                                                                         */
/*  The EMAP finite element modeling codes were created at the             */
/*  University of Missouri-Rolla Electromagnetic Compatibility Laboratory. */
/*  They are intended for use in teaching or research.  They may be freely */
/*  copied and distributed PROVIDED THE CODE IS NOT MODIFIED IN ANY MANNER.*/
/*                                                                         */
/*  Suggested modifications or questions about these codes can be          */
/*  directed to Dr. Todd Hubing Department of Electrical Engineering      */
/*  University of Missouri-Rolla Rolla MO  65401.  Principal authors     */
/*  of these codes are Mr. Mohammad Ali and Mr. Girish Bhat of the         */
/*  University of Missouri-Rolla.                                          */
/*                                                                         */
/*  Neither the authors nor the University of Missouri makes any warranty */
/*  express or implied or assumes any legal responsibility for the        */
/*  accuracy completeness or usefulness of these codes or any information */
/*  distributed with these codes.                                          */
/*                                                                         */
/* 5/98                                                                    */
/***************************************************************************
*   PROGRAM     :  Emap4.c (Version 1.0)
*   LAST UPDATE :  May 1998 
*   DEscriptION :  A 3-D Vector Finite Element Modeling Code for Analyzing
                   Time Varying Complex Electromagnetic Fields.
*   LATEST DEV. :  Inclusion of Isource modeling of coax cables.
*   INPUT FILE  :  emap4.in or or 1st argument of emap command
*   OUTPUT FILE :  file(s) specified by input file
*   USER‘S GUIDE:  http://www.emclab.umr.edu/emap4
*                  (contains all the relevant references)
*
****************************************************************************/


/**************************** Include Files ********************************/

#include
#include
#include
#include
#include
#include
#include“complex.h“ /* Complex routines */
#include“alloc.h“  /* Memory allocation routines */

/************************** Default Parameters *****************************/

#define  GBL_Matrix_MaxColNos  19  /* The FEM is sparse and any row has a 
      maximum of 19 columns */
#define  FRCD_Matrix_MaxColNos 11  
#define  MAX_ITERATIONS 25000      /* The maximum number of iterations for 
      the CBCG solver */
#define  TOLERANCE  0.00001        /* The amount of accuracy required in the 
      code */

/************************** Function Prototypes *****************************/

void Read_

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2760  2004-06-14 09:16  电磁场与有限元\EMAP4\alloc.h

     文件        388  2004-06-14 09:16  电磁场与有限元\EMAP4\cavity.in

     文件       1740  2009-06-05 08:57  电磁场与有限元\EMAP4\complex.h

     文件     190178  2004-06-14 09:16  电磁场与有限元\EMAP4\emap4.c

     文件        754  2004-06-14 09:17  电磁场与有限元\EMAP4\PML.in

     文件        658  2004-06-14 09:17  电磁场与有限元\EMAP4\tline.in

     文件        795  2004-06-14 09:17  电磁场与有限元\EMAP4\w_guide.in

     文件      12495  2004-06-18 17:05  电磁场与有限元\EMAP5\emap5.1.1\code\alloc.c

     文件      10075  2004-06-18 17:05  电磁场与有限元\EMAP5\emap5.1.1\code\complex.c

     文件     145361  2009-06-06 14:36  电磁场与有限元\EMAP5\emap5.1.1\code\emap5.c

     文件      18140  2004-06-18 17:03  电磁场与有限元\EMAP5\emap5.1.1\code\far.c

     文件     129558  2004-06-18 17:04  电磁场与有限元\EMAP5\emap5.1.1\code\sift5.c

     文件       6808  2004-06-18 17:04  电磁场与有限元\EMAP5\emap5.1.1\code\util.c

     文件       9579  1998-12-16 14:20  电磁场与有限元\EMAP5\emap5.1.1\examples\example1\E10.in

     文件        282  1998-05-26 11:36  电磁场与有限元\EMAP5\emap5.1.1\examples\example1\E10.sif

     文件     123041  1998-05-26 11:39  电磁场与有限元\EMAP5\emap5.1.1\examples\example2\E20.in

     文件        383  1998-05-26 11:39  电磁场与有限元\EMAP5\emap5.1.1\examples\example2\E20.sif

     文件     351050  1998-05-27 11:18  电磁场与有限元\EMAP5\emap5.1.1\examples\example3\E30.in

     文件        722  1998-05-27 11:18  电磁场与有限元\EMAP5\emap5.1.1\examples\example3\E30.sif

     文件      45707  1998-05-26 11:54  电磁场与有限元\EMAP5\emap5.1.1\examples\example4\E40.in

     文件        368  1998-05-26 11:54  电磁场与有限元\EMAP5\emap5.1.1\examples\example4\E40.sif

     文件      46987  1998-05-26 11:55  电磁场与有限元\EMAP5\emap5.1.1\examples\example4\E41.in

     文件        384  1998-05-26 11:55  电磁场与有限元\EMAP5\emap5.1.1\examples\example4\E41.sif

     文件     159257  1998-05-26 11:59  电磁场与有限元\EMAP5\emap5.1.1\examples\example5\E50.in

     文件        892  1998-05-26 11:58  电磁场与有限元\EMAP5\emap5.1.1\examples\example5\E50.sif

     文件     159242  1998-05-26 12:07  电磁场与有限元\EMAP5\emap5.1.1\examples\example5\E51.in

     文件        908  1998-05-26 12:07  电磁场与有限元\EMAP5\emap5.1.1\examples\example5\E51.sif

     文件     159230  1998-05-26 12:07  电磁场与有限元\EMAP5\emap5.1.1\examples\example5\E52.in

     文件        920  1998-05-26 12:07  电磁场与有限元\EMAP5\emap5.1.1\examples\example5\E52.sif

     文件    5017717  2009-05-28 01:25  电磁场与有限元\有限元C程序设计.pdf

............此处省略18个文件信息

评论

共有 条评论