For example, to solve the Poisson equation div(a grad(v)) =
f
on a domain D
, an input file
(".pro
" file) would contain something like this:
FunctionSpace {
{ Name H1; Type Form0;
BasisFunction {
{ Name sn; NameOfCoef vn; Function BF_Node; Support D; Entity NodesOf[All]; }
}
}
}
Formulation{
{ Name Poisson; Type FemEquation;
Quantity {
{ Name v; Type Local; NameOfSpace H1; }
}
Equation {
Galerkin { [ a[] * Dof{Grad v}, {Grad v} ] ; In D; Jacobian V; Integration I; }
Galerkin { [ f[], {v} ] ; In D; Jacobian V; Integration I; }
}
}
}
i.e., a direct transcription of the discrete function space and weak
form of the problem.
See GetDP's reference manual for a more thorough overview of GetDP's capabilities.
The binary versions are compiled with PETSc in complex arithmetic, with support for direct sparse linear solvers using UMFPACK. This makes them suboptimal for certain kinds of problems. You should recompile GetDP from the source code to achieve the best performance, in particular for large 3D problems. Check the wiki (login: getdp, password: getdp) for sample build instructions.
Please use the public mailing list getdp@geuz.org to send questions or ask for help. If you think you have found a bug in the program, you can file a report directly here (username: getdp, password: getdp).
In short, this means that everyone is free to use GetDP and to redistribute it on a free basis. GetDP is not in the public domain; it is copyrighted and there are restrictions on its distribution (see the license and its associated FAQ). For example, you cannot integrate this version of GetDP (in full or in parts) in any closed-source software you plan to distribute (commercially or not). If you want to integrate parts of GetDP into a closed-source software, or want to sell a modified closed-source version of GetDP, you will need to obtain a different license. Please contact us directly for more information.
Back to geuz.org