-
Notifications
You must be signed in to change notification settings - Fork 6
/
MG_solver_setup.c
47 lines (33 loc) · 1012 Bytes
/
MG_solver_setup.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
Copyright (C) 1995 The GeoFramework Consortium
This file is part of Ellipsis3D.
Ellipsis3D is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2,
as published by the Free Software Foundation.
Ellipsis3D is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
Author:
Louis Moresi <[email protected]>
*/
#include "element_definitions.h"
#include "global_defs.h"
#include <math.h>
void set_mg_defaults(
struct All_variables *E
)
{
void solve_constrained_flow_iterative();
void mg_allocate_vars();
E->solver_allocate_vars = mg_allocate_vars;
E->solve_stokes_problem = solve_constrained_flow_iterative;
return;
}
void mg_allocate_vars(
struct All_variables *E
)
{
/* nothing specific at the moment */
return;
}