|
What Is FlexPDE? |
Top Previous Next |
|
FlexPDE is a "scripted finite element model builder and numerical solver". By this we mean that from a script written by the user, FlexPDE performs the operations necessary to turn a description of a partial differential equations system into a finite element model, solve the system, and present graphical and tabular output of the results.
FlexPDE is also a "problem solving environment". It performs the entire range of functions necessary to solve partial differential equation systems: an editor for preparing scripts, a mesh generator for building finite element meshes, a finite element solver to find solutions, and a graphics system to plot results. The user can edit the script, run the problem and observe the output, then re-edit and re-run repeatedly without leaving the FlexPDE application environment.
FlexPDE has no pre-defined problem domain or equation list. The choice of partial differential equations is totally up to the user.
The FlexPDE scripting language is a "natural" language. It allows the user to describe the mathematics of his partial differential equations system and the geometry of his problem domain in a format similar to the way he might describe it to a co-worker.
For instance, there is an EQUATIONS section in the script, in which Laplace's equation would be presented as
Div(grad(u)) = 0.
Similarly, there is a BOUNDARIES section in the script, where the geometric boundaries of a two-dimensional problem domain are presented merely by walking around the perimeter:
Start(x1,y1) line to (x2,y1) to (x2,y2) to (x1,y2) to close
This scripted form has many advantages
There is also a corollary effect with the scripted model:
In an educational environment, this is good. It's what the student wants to learn.
In an industrial environment, a single knowledgeable user can prepare scripts which can be used and modified by less skilled workers. And a library of application scripts can show how it is done.
|