Logo DUNE-FEM
Logo Albert-Ludwigs-Universität Freiburg Logo Abteilung für Angewandte Mathematik

Support

Here you will find informations if you have problems with Dune-Fem.

The HowTo

In the DUNE-FEM-HOWTO you can find several examples of how to install and use DUNE-FEM

Mailinglist

If there are still opened questions or bugs you can either send an email to the people working with Dune-Fem, see the People page for further details.

The other posibility is to write an email to our official Mailinglist:

In order to recive / write mails from / to the list, subscribe your address on the page: Dune-Fem Malinglist

FAQ

Where can i download the core mdoules ?

You can download the core modules on the official DUNE homepage.

Why do i have a performance loss with gcc-4.6.* using default optimization flags?

Due to a change between gcc-4.4.* and gcc-4.6.* within the inlining of functions, not all functions are inlined with gcc-4.6.*.
The compiler stores a copy of the inlined function within the object file. This object files are limited to a certain amount of memory with a flag. Chosing this flag --param inline-unit-growth to a higher value ( !percentage, default 30% ) results in larger object files and gives back the previous performance.