~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to misc/utils/octave/README

  • Committer: Johannes Ring
  • Date: 2008-03-05 22:43:06 UTC
  • Revision ID: johannr@simula.no-20080305224306-2npsdyhfdpl2esji
The BIG commit!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Notes about the pdeplot, pdesurf and pdemesh Octave functions:
 
2
 
 
3
These functions are Free Software reimplementations of the corresponding
 
4
functions in Matlab's PDE Toolbox.
 
5
 
 
6
They require the external program "ivview" included in the open source
 
7
Open Inventor distribution which can be obtained from
 
8
 
 
9
        http://oss.sgi.com/projects/inventor/.
 
10
 
 
11
Open Inventor also exists in the package system of some Linux
 
12
distributions, such as Debian (the package inventor-clients).
 
13
 
 
14
They have been verified to work in Octave 2.1.50.
 
15
 
 
16
Example usage:
 
17
 
 
18
> pdemesh(points, edges, cells)
 
19
> pdesurf(points, cells, u)
 
20
 
 
21
Bugs and comments on features:
 
22
 
 
23
The functions use the "popen2" call in Octave to communicate with
 
24
"ivview", and this does not always work correctly, "ivview" can
 
25
sometimes hang. This is presumably an Octave bug.
 
26
 
 
27
The pdeplot function is a far from complete reimplementation of the 
 
28
Matlab pdeplot.