aspen 发表于 2005-6-4 16:49

Finite Element Method Demonstration

FEM_CODES is a collection of a few simple finite element method (FEM) programs. These codes are intended primarily to be used by students as an introduction to finite element method programming ideas. A typical programming project asks a student to take one of these programs, learn how to use it, and then extend it in some way.
The originals of these codes come from Professor Max Gunzburger.
The codes are:
ONEDFE is the basic program for solving a linear boundary value problem using piecewise linear elements and a fixed mesh in 1D.
ADAPT is a version of ONEDFE which varies the mesh to reduce the error.
NONLIN is a version of ONEDFE which solves a nonlinear problem.
PMETHOD is a version of ONEDFE which uses the P method, varying the order of the finite element basis.

Files you may copy include:
adapt.f90, adaptive grid refinement;
adapt.out, output from a run;
nonlin.f90, code for a nonlinear problem;
nonlin.out, output from a run;
onedfe.f90, a simple 1D finite element code;
onedfe.out, output from a run;
pmethod.f90, implements the P method;
pmethod.out, output from a run;

FSI 发表于 2005-6-4 18:37

adapt这个不错,可以自适应划分

3060104124 发表于 2011-12-7 21:12

楼主可否将上述程序发我一份~

3060104124 发表于 2011-12-7 21:13

s3060@163.com

ccdong 发表于 2011-12-15 02:32

怎么下载,只是介绍一下吗
页: [1]
查看完整版本: Finite Element Method Demonstration