ParMooN
 All Classes Functions Variables Friends Pages
NSE3D_Friction_FixPo.h
1 // ======================================================================
2 // @(#)NSE2D_FixPo.h 1.2 04/13/00
3 //
4 // common declaration for all Navier-Stokes problems
5 // ======================================================================
6 
7 #ifndef __NSE3D_FRICTION_FIXPO__
8 #define __NSE3D_FRICTION_FIXPO__
9 
10 #include <Enumerations.h>
11 
12 // ======================================================================
13 // Type 3, Standard Galerkin, with friction, D(u):D(v)
14 // ======================================================================
15 void NSType3GalerkinDD3DFriction(double Mult, double *coeff,
16  double *param, double hK,
17  double **OrigValues, int *N_BaseFuncts,
18  double ***LocMatrices, double **LocRhs);
19 
20 // ======================================================================
21 // Type 3, Standard Galerkin, friction, D(u):D(v)
22 // ======================================================================
23 void NSType3_4NLGalerkinDD3DFriction(double Mult, double *coeff,
24  double *param, double hK,
25  double **OrigValues, int *N_BaseFuncts,
26  double ***LocMatrices, double **LocRhs);
27 
28 #endif