aboutsummaryrefslogtreecommitdiff
path: root/src/GeneralizedPolynomial-Uniform/Hermite/3d.maple
diff options
context:
space:
mode:
Diffstat (limited to 'src/GeneralizedPolynomial-Uniform/Hermite/3d.maple')
-rw-r--r--src/GeneralizedPolynomial-Uniform/Hermite/3d.maple126
1 files changed, 63 insertions, 63 deletions
diff --git a/src/GeneralizedPolynomial-Uniform/Hermite/3d.maple b/src/GeneralizedPolynomial-Uniform/Hermite/3d.maple
index ae52a9f..ac72c38 100644
--- a/src/GeneralizedPolynomial-Uniform/Hermite/3d.maple
+++ b/src/GeneralizedPolynomial-Uniform/Hermite/3d.maple
@@ -1,4 +1,4 @@
-# 3d.maple -- compute Hermite interpolation coefficients in 3-D
+# 3d.maple -- compute Hermite interpolation coeffsicients in 3-D
# $Header$
################################################################################
@@ -11,7 +11,7 @@
# interpolating polynomial
interp_3d_cube_order2
:= Hermite_polynomial_interpolant(fn_3d_order3,
- coeff_set_3d_order3,
+ coeffs_set_3d_order3,
[x,y,z],
{
{x} = deriv_3d_dx_3point,
@@ -26,63 +26,63 @@ interp_3d_cube_order2
{op(posn_list_3d_size2)});
# I
-coeff_as_lc_of_data(%, posn_list_3d_size4);
-print_coeff__lc_of_data(%, "coeff_I_", "fp",
- "3d.coeffs/3d.cube.order2/coeff-I.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size4);
+print_coeffs__lc_of_data(%, "coeffs_I->coeff_", "fp",
+ "3d.coeffs/3d.cube.order2/coeffs-I.compute.c");
# d/dx
simplify( diff(interp_3d_cube_order2,x) );
-coeff_as_lc_of_data(%, posn_list_3d_size4);
-print_coeff__lc_of_data(%, "coeff_dx_", "fp",
- "3d.coeffs/3d.cube.order2/coeff-dx.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size4);
+print_coeffs__lc_of_data(%, "coeffs_dx->coeff_", "fp",
+ "3d.coeffs/3d.cube.order2/coeffs-dx.compute.c");
# d/dy
simplify( diff(interp_3d_cube_order2,y) );
-coeff_as_lc_of_data(%, posn_list_3d_size4);
-print_coeff__lc_of_data(%, "coeff_dy_", "fp",
- "3d.coeffs/3d.cube.order2/coeff-dy.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size4);
+print_coeffs__lc_of_data(%, "coeffs_dy->coeff_", "fp",
+ "3d.coeffs/3d.cube.order2/coeffs-dy.compute.c");
# d/dz
simplify( diff(interp_3d_cube_order2,z) );
-coeff_as_lc_of_data(%, posn_list_3d_size4);
-print_coeff__lc_of_data(%, "coeff_dz_", "fp",
- "3d.coeffs/3d.cube.order2/coeff-dz.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size4);
+print_coeffs__lc_of_data(%, "coeffs_dz->coeff_", "fp",
+ "3d.coeffs/3d.cube.order2/coeffs-dz.compute.c");
# d^2/dx^2
simplify( diff(interp_3d_cube_order2,x,x) );
-coeff_as_lc_of_data(%, posn_list_3d_size4);
-print_coeff__lc_of_data(%, "coeff_dxx_", "fp",
- "3d.coeffs/3d.cube.order2/coeff-dxx.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size4);
+print_coeffs__lc_of_data(%, "coeffs_dxx->coeff_", "fp",
+ "3d.coeffs/3d.cube.order2/coeffs-dxx.compute.c");
# d^2/dxdy
simplify( diff(interp_3d_cube_order2,x,y) );
-coeff_as_lc_of_data(%, posn_list_3d_size4);
-print_coeff__lc_of_data(%, "coeff_dxy_", "fp",
- "3d.coeffs/3d.cube.order2/coeff-dxy.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size4);
+print_coeffs__lc_of_data(%, "coeffs_dxy->coeff_", "fp",
+ "3d.coeffs/3d.cube.order2/coeffs-dxy.compute.c");
# d^2/dxdz
simplify( diff(interp_3d_cube_order2,x,z) );
-coeff_as_lc_of_data(%, posn_list_3d_size4);
-print_coeff__lc_of_data(%, "coeff_dxz_", "fp",
- "3d.coeffs/3d.cube.order2/coeff-dxz.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size4);
+print_coeffs__lc_of_data(%, "coeffs_dxz->coeff_", "fp",
+ "3d.coeffs/3d.cube.order2/coeffs-dxz.compute.c");
# d^2/dy^2
simplify( diff(interp_3d_cube_order2,y,y) );
-coeff_as_lc_of_data(%, posn_list_3d_size4);
-print_coeff__lc_of_data(%, "coeff_dyy_", "fp",
- "3d.coeffs/3d.cube.order2/coeff-dyy.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size4);
+print_coeffs__lc_of_data(%, "coeffs_dyy->coeff_", "fp",
+ "3d.coeffs/3d.cube.order2/coeffs-dyy.compute.c");
# d^2/dydz
simplify( diff(interp_3d_cube_order2,y,z) );
-coeff_as_lc_of_data(%, posn_list_3d_size4);
-print_coeff__lc_of_data(%, "coeff_dyz_", "fp",
- "3d.coeffs/3d.cube.order2/coeff-dyz.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size4);
+print_coeffs__lc_of_data(%, "coeffs_dyz->coeff_", "fp",
+ "3d.coeffs/3d.cube.order2/coeffs-dyz.compute.c");
# d^2/dz^2
simplify( diff(interp_3d_cube_order2,z,z) );
-coeff_as_lc_of_data(%, posn_list_3d_size4);
-print_coeff__lc_of_data(%, "coeff_dzz_", "fp",
- "3d.coeffs/3d.cube.order2/coeff-dzz.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size4);
+print_coeffs__lc_of_data(%, "coeffs_dzz->coeff_", "fp",
+ "3d.coeffs/3d.cube.order2/coeffs-dzz.compute.c");
################################################################################
@@ -94,7 +94,7 @@ print_coeff__lc_of_data(%, "coeff_dzz_", "fp",
# interpolating polynomial
interp_3d_cube_order3
:= Hermite_polynomial_interpolant(fn_3d_order3,
- coeff_set_3d_order3,
+ coeffs_set_3d_order3,
[x,y,z],
{
{x} = deriv_3d_dx_5point,
@@ -109,62 +109,62 @@ interp_3d_cube_order3
{op(posn_list_3d_size2)});
# I
-coeff_as_lc_of_data(%, posn_list_3d_size6);
-print_coeff__lc_of_data(%, "coeff_I_", "fp",
- "3d.coeffs/3d.cube.order3/coeff-I.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size6);
+print_coeffs__lc_of_data(%, "coeffs_I->coeff_", "fp",
+ "3d.coeffs/3d.cube.order3/coeffs-I.compute.c");
# d/dx
simplify( diff(interp_3d_cube_order3,x) );
-coeff_as_lc_of_data(%, posn_list_3d_size6);
-print_coeff__lc_of_data(%, "coeff_dx_", "fp",
- "3d.coeffs/3d.cube.order3/coeff-dx.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size6);
+print_coeffs__lc_of_data(%, "coeffs_dx->coeff_", "fp",
+ "3d.coeffs/3d.cube.order3/coeffs-dx.compute.c");
# d/dy
simplify( diff(interp_3d_cube_order3,y) );
-coeff_as_lc_of_data(%, posn_list_3d_size6);
-print_coeff__lc_of_data(%, "coeff_dy_", "fp",
- "3d.coeffs/3d.cube.order3/coeff-dy.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size6);
+print_coeffs__lc_of_data(%, "coeffs_dy->coeff_", "fp",
+ "3d.coeffs/3d.cube.order3/coeffs-dy.compute.c");
# d/dz
simplify( diff(interp_3d_cube_order3,z) );
-coeff_as_lc_of_data(%, posn_list_3d_size6);
-print_coeff__lc_of_data(%, "coeff_dz_", "fp",
- "3d.coeffs/3d.cube.order3/coeff-dz.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size6);
+print_coeffs__lc_of_data(%, "coeffs_dz->coeff_", "fp",
+ "3d.coeffs/3d.cube.order3/coeffs-dz.compute.c");
# d^2/dx^2
simplify( diff(interp_3d_cube_order3,x,x) );
-coeff_as_lc_of_data(%, posn_list_3d_size6);
-print_coeff__lc_of_data(%, "coeff_dxx_", "fp",
- "3d.coeffs/3d.cube.order3/coeff-dxx.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size6);
+print_coeffs__lc_of_data(%, "coeffs_dxx->coeff_", "fp",
+ "3d.coeffs/3d.cube.order3/coeffs-dxx.compute.c");
# d^2/dxdy
simplify( diff(interp_3d_cube_order3,x,y) );
-coeff_as_lc_of_data(%, posn_list_3d_size6);
-print_coeff__lc_of_data(%, "coeff_dxy_", "fp",
- "3d.coeffs/3d.cube.order3/coeff-dxy.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size6);
+print_coeffs__lc_of_data(%, "coeffs_dxy->coeff_", "fp",
+ "3d.coeffs/3d.cube.order3/coeffs-dxy.compute.c");
# d^2/dxdz
simplify( diff(interp_3d_cube_order3,x,z) );
-coeff_as_lc_of_data(%, posn_list_3d_size6);
-print_coeff__lc_of_data(%, "coeff_dxz_", "fp",
- "3d.coeffs/3d.cube.order3/coeff-dxz.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size6);
+print_coeffs__lc_of_data(%, "coeffs_dxz->coeff_", "fp",
+ "3d.coeffs/3d.cube.order3/coeffs-dxz.compute.c");
# d^2/dy^2
simplify( diff(interp_3d_cube_order3,y,y) );
-coeff_as_lc_of_data(%, posn_list_3d_size6);
-print_coeff__lc_of_data(%, "coeff_dyy_", "fp",
- "3d.coeffs/3d.cube.order3/coeff-dyy.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size6);
+print_coeffs__lc_of_data(%, "coeffs_dyy->coeff_", "fp",
+ "3d.coeffs/3d.cube.order3/coeffs-dyy.compute.c");
# d^2/dydz
simplify( diff(interp_3d_cube_order3,y,z) );
-coeff_as_lc_of_data(%, posn_list_3d_size6);
-print_coeff__lc_of_data(%, "coeff_dyz_", "fp",
- "3d.coeffs/3d.cube.order3/coeff-dyz.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size6);
+print_coeffs__lc_of_data(%, "coeffs_dyz->coeff_", "fp",
+ "3d.coeffs/3d.cube.order3/coeffs-dyz.compute.c");
# d^2/dz^2
simplify( diff(interp_3d_cube_order3,z,z) );
-coeff_as_lc_of_data(%, posn_list_3d_size6);
-print_coeff__lc_of_data(%, "coeff_dzz_", "fp",
- "3d.coeffs/3d.cube.order3/coeff-dzz.compute.c");
+coeffs_as_lc_of_data(%, posn_list_3d_size6);
+print_coeffs__lc_of_data(%, "coeffs_dzz->coeff_", "fp",
+ "3d.coeffs/3d.cube.order3/coeffs-dzz.compute.c");
################################################################################