forked from farocean97/ffd1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterpolation.h
More file actions
15 lines (10 loc) · 781 Bytes
/
interpolation.h
File metadata and controls
15 lines (10 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
REAL interpolation(PARA_DATA *para, REAL *d0, REAL x_1, REAL y_1, REAL z_1,
int p, int q, int r);
REAL interpolation_bilinear(REAL x_1, REAL y_1, REAL z_1,
REAL d000, REAL d010, REAL d100, REAL d110,
REAL d001, REAL d011, REAL d101, REAL d111);
REAL interpolation_linear(REAL x_1, REAL y_1, REAL d000, REAL d010, REAL d100, REAL d110);
REAL advection_upwind(PARA_DATA *para, REAL **var,REAL *d0,int i, int j, int k);
void interpolation_coef(PARA_DATA *para,REAL **var, REAL *coef,REAL x1, REAL y1, REAL z1,int p, int q, int r);
REAL interpolation_temp(PARA_DATA *para, REAL **var,REAL *d0, REAL x_1, REAL y_1, REAL z_1,
int i0, int j0, int k0, int p, int q, int r);