FreeFem 3.5.x
femSolver1c.hpp
1// Emacs will be in -*- Mode: c++ -*-
2//
3// ********** DO NOT REMOVE THIS BANNER **********
4//
5// SUMMARY: Language for a Finite Element Method
6
7//
8// AUTHORS: C. Prud'homme
9// ORG :
10// E-MAIL : prudhomm@users.sourceforge.net
11//
12// ORIG-DATE: June-94
13// LAST-MOD: 13-Aug-00 at 23:19:18 by Christophe Prud'homme
14//
15// DESCRIPTION:
16/*
17 This program is free software; you can redistribute it and/or modify
18 it under the terms of the GNU General Public License as published by
19 the Free Software Foundation; either version 2 of the License, or
20 (at your option) any later version.
21
22 This program is distributed in the hope that it will be useful,
23 but WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 GNU General Public License for more details.
26
27 You should have received a copy of the GNU General Public License
28 along with this program; if not, write to the Free Software
29 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30
31*/
32// DESCRIP-END.
33//
34
35#ifndef __FEM1C_H
36#define __FEM1C_H 1
37
38namespace fem
39{
40 void rhsPDE(int quadra, creal* fw, creal* f, creal* g);
41
42 float gaussband (creal* a, creal* x, long n, long bdthl, int first, float eps);
43
44 float pdeian(creal* a, creal* u, creal* f, creal* g, creal* u0,
45 creal* alpha, creal* rho11, creal* rho12, creal* rho21, creal* rho22,
46 creal* u1, creal* u2, creal* beta, int quadra, int factorize);
47
48}
49#endif /* __FEM1C_H */

This is the FreeFEM reference manual
Provided by The KFEM project