-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathquadrature_data.h
More file actions
25 lines (25 loc) · 980 Bytes
/
quadrature_data.h
File metadata and controls
25 lines (25 loc) · 980 Bytes
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
/* Data for 2D finite element quadrature. */
static int cf_num_points_6 = 9;
static double* const cf_quad_points_6[9*2] = {
0.124949503233232, 0.437525248383384,
0.437525248383384, 0.124949503233232,
0.437525248383384, 0.437525248383384,
0.797112651860071, 0.165409927389841,
0.797112651860071, 0.037477420750088,
0.165409927389841, 0.797112651860071,
0.165409927389841, 0.037477420750088,
0.037477420750088, 0.797112651860071,
0.037477420750088, 0.165409927389841};
static double const cf_quad_weights_6[9] = {
0.205950504760887,
0.205950504760887,
0.205950504760887,
0.063691414286223,
0.063691414286223,
0.063691414286223,
0.063691414286223,
0.063691414286223,
0.063691414286223};
cf_quad_rule_6 = {.num_points = cf_num_points_6,
.weights = &cf_quad_weights_6[0],
.points = &cf_quad_points_6[0]};