-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathquadratics.h
More file actions
39 lines (35 loc) · 1.07 KB
/
quadratics.h
File metadata and controls
39 lines (35 loc) · 1.07 KB
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
double cf_quadratic_coefficients[6*6] = {
2, 4, 2, -3, -3, 1,
2, 0, 0, -1, 0, 0,
0, 0, 2, 0, -1, 0,
-4, -4, 0, 4, 0, 0,
0, 4, 0, 0, 0, 0,
0, -4, -4, 0, 4, 0};
double cf_quadratic_coefficients_dx[6*6] = {
0, 0, 0, 4, 4, -3,
0, 0, 0, 4, 0, -1,
0, 0, 0, 0, 0, 0,
0, 0, 0, -8, -4, 4,
0, 0, 0, 0, 4, 0,
0, 0, 0, 0, -4, 0};
double cf_quadratic_coefficients_dy[6*6] = {
0, 0, 0, 4, 4, -3,
0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 4, -1,
0, 0, 0, -4, 0, 0,
0, 0, 0, 4, 0, 0,
0, 0, 0, -4, -8, 4};
double cf_quadratic_coefficients_dxx[6*6] = {
0, 0, 0, 0, 0, 4,
0, 0, 0, 0, 0, 4,
0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, -8,
0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0};
double cf_quadratic_coefficients_dyy[6*6] = {
0, 0, 0, 0, 0, 4,
0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 4,
0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, -8};