资源简介
此文件包括了讲述电磁场有限元方法的几本经典电子书,以及用有限元方法求解二维三维电磁场边值问题的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个文件信息
相关资源
- 个人物品管理程序
- 新华三校招和社招技术研发类笔试题
- 数据结构考研教案__清华·C语言版
- 钱能C++程序设计教程第二版pdf高清带
- C语言实现贪吃蛇大量注释+用到的库文
- C语言名题精选百则 技巧篇_冼镜光编
- C语言程序设计苏小红.zip
- C语言的png和jpeg图片格式转换为bmp格式
- C语言推箱子游戏有注释文档
- 天津城建大学C语言考试题库2011-2013
- Windows环境下socket编程C语言编写
- 纯C语言写的sift算法,亲测,可用,可
- C语言程序设计(第三版)-谭浩强.p
- 古诗收集程序C语言
- 单片机C语言400例.rar
- 明解C语言:中级篇
- C语言深度解剖(第2版)解开程序员面
- C语言操作MySQL数据库
- 基于目标距离的S型速度曲线规划
- C语言的圣经 - K&R的C程序设计语言第
- C语言项目开发全程实录源码
- stm8S从入门到精通
- 51单片机轻松入门__基于STC15W4K系列(
- 计算机二级c语言模拟软件破解版
- 嗨翻C语言,head first c的中文版,高清
- 单片机C语言程序设计实训100例第3篇综
- 餐饮管理系统 C语言+EasyX+MFC
- visual c++6.0win7兼容64位
- C语言程序设计现代方法第2版.pdf
- 数据结构C语言版-严蔚敏PDF + 课后题代
评论
共有 条评论