aboutsummaryrefslogtreecommitdiff
path: root/src/GeneralizedPolynomial-Uniform/common/3d.maple
diff options
context:
space:
mode:
Diffstat (limited to 'src/GeneralizedPolynomial-Uniform/common/3d.maple')
-rw-r--r--src/GeneralizedPolynomial-Uniform/common/3d.maple306
1 files changed, 306 insertions, 0 deletions
diff --git a/src/GeneralizedPolynomial-Uniform/common/3d.maple b/src/GeneralizedPolynomial-Uniform/common/3d.maple
new file mode 100644
index 0000000..45a913c
--- /dev/null
+++ b/src/GeneralizedPolynomial-Uniform/common/3d.maple
@@ -0,0 +1,306 @@
+# Maple code to compute common coefficients for all 3d interpolation schemes
+# $Id$
+
+################################################################################
+
+#
+# generic stuff for 3d, cube, size=2
+#
+
+data_var_list_3d_size2 := map(data_var_name, posn_list_3d_size2, "data_");
+
+print_name_list_dcl(data_var_list_3d_size2, "fp",
+ "3d.cube.size2/data-var.dcl.c");
+print_data_var_assign(posn_list_3d_size2, "data_",
+ "3d.cube.size2/data-var.assign.c");
+
+print_interp_coeff_var_store(posn_list_3d_size2, "", "coeff_I_",
+ "3d.cube.size2/coeff-I.store.c");
+print_interp_coeff_var_store(posn_list_3d_size2, "factor", "coeff_dx_",
+ "3d.cube.size2/coeff-dx.store.c");
+print_interp_coeff_var_store(posn_list_3d_size2, "factor", "coeff_dy_",
+ "3d.cube.size2/coeff-dy.store.c");
+print_interp_coeff_var_store(posn_list_3d_size2, "factor", "coeff_dz_",
+ "3d.cube.size2/coeff-dz.store.c");
+
+print_name_list_dcl(map(coeff_name, posn_list_3d_size2, "coeff_I_"), "fp",
+ "3d.cube.size2/coeff-I.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size2, "coeff_dx_"), "fp",
+ "3d.cube.size2/coeff-dx.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size2, "coeff_dy_"), "fp",
+ "3d.cube.size2/coeff-dy.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size2, "coeff_dz_"), "fp",
+ "3d.cube.size2/coeff-dz.dcl.c");
+
+print_interp_cmpt__lc_of_data(posn_list_3d_size2,
+ "result", "coeff_I_", "data_",
+ "3d.cube.size2/interp-I.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size2,
+ "result", "coeff_dx_", "data_",
+ "3d.cube.size2/interp-dx.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size2,
+ "result", "coeff_dy_", "data_",
+ "3d.cube.size2/interp-dy.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size2,
+ "result", "coeff_dz_", "data_",
+ "3d.cube.size2/interp-dz.compute.c");
+
+########################################
+
+#
+# generic stuff for 3d, cube, size=3
+#
+
+data_var_list_3d_size3 := map(data_var_name, posn_list_3d_size3, "data_");
+
+print_name_list_dcl(data_var_list_3d_size3, "fp",
+ "3d.cube.size3/data-var.dcl.c");
+print_data_var_assign(posn_list_3d_size3, "data_",
+ "3d.cube.size3/data-var.assign.c");
+
+print_interp_coeff_var_store(posn_list_3d_size3, "", "coeff_I_",
+ "3d.cube.size3/coeff-I.store.c");
+print_interp_coeff_var_store(posn_list_3d_size3, "factor", "coeff_dx_",
+ "3d.cube.size3/coeff-dx.store.c");
+print_interp_coeff_var_store(posn_list_3d_size3, "factor", "coeff_dy_",
+ "3d.cube.size3/coeff-dy.store.c");
+print_interp_coeff_var_store(posn_list_3d_size3, "factor", "coeff_dz_",
+ "3d.cube.size3/coeff-dz.store.c");
+print_interp_coeff_var_store(posn_list_3d_size3, "factor", "coeff_dxx_",
+ "3d.cube.size3/coeff-dxx.store.c");
+print_interp_coeff_var_store(posn_list_3d_size3, "factor", "coeff_dxy_",
+ "3d.cube.size3/coeff-dxy.store.c");
+print_interp_coeff_var_store(posn_list_3d_size3, "factor", "coeff_dxz_",
+ "3d.cube.size3/coeff-dxz.store.c");
+print_interp_coeff_var_store(posn_list_3d_size3, "factor", "coeff_dyy_",
+ "3d.cube.size3/coeff-dyy.store.c");
+print_interp_coeff_var_store(posn_list_3d_size3, "factor", "coeff_dyz_",
+ "3d.cube.size3/coeff-dyz.store.c");
+print_interp_coeff_var_store(posn_list_3d_size3, "factor", "coeff_dzz_",
+ "3d.cube.size3/coeff-dzz.store.c");
+
+print_name_list_dcl(map(coeff_name, posn_list_3d_size3, "coeff_I_"), "fp",
+ "3d.cube.size3/coeff-I.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size3, "coeff_dx_"), "fp",
+ "3d.cube.size3/coeff-dx.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size3, "coeff_dy_"), "fp",
+ "3d.cube.size3/coeff-dy.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size3, "coeff_dz_"), "fp",
+ "3d.cube.size3/coeff-dz.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size3, "coeff_dxx_"), "fp",
+ "3d.cube.size3/coeff-dxx.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size3, "coeff_dxy_"), "fp",
+ "3d.cube.size3/coeff-dxy.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size3, "coeff_dxz_"), "fp",
+ "3d.cube.size3/coeff-dxz.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size3, "coeff_dyy_"), "fp",
+ "3d.cube.size3/coeff-dyy.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size3, "coeff_dyz_"), "fp",
+ "3d.cube.size3/coeff-dyz.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size3, "coeff_dzz_"), "fp",
+ "3d.cube.size3/coeff-dzz.dcl.c");
+
+print_interp_cmpt__lc_of_data(posn_list_3d_size3,
+ "result", "coeff_I_", "data_",
+ "3d.cube.size3/interp-I.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size3,
+ "result", "coeff_dx_", "data_",
+ "3d.cube.size3/interp-dx.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size3,
+ "result", "coeff_dy_", "data_",
+ "3d.cube.size3/interp-dy.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size3,
+ "result", "coeff_dz_", "data_",
+ "3d.cube.size3/interp-dz.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size3,
+ "result", "coeff_dxx_", "data_",
+ "3d.cube.size3/interp-dxx.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size3,
+ "result", "coeff_dxy_", "data_",
+ "3d.cube.size3/interp-dxy.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size3,
+ "result", "coeff_dxz_", "data_",
+ "3d.cube.size3/interp-dxz.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size3,
+ "result", "coeff_dyy_", "data_",
+ "3d.cube.size3/interp-dyy.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size3,
+ "result", "coeff_dyz_", "data_",
+ "3d.cube.size3/interp-dyz.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size3,
+ "result", "coeff_dzz_", "data_",
+ "3d.cube.size3/interp-dzz.compute.c");
+
+########################################
+
+#
+# generic stuff for 3d, cube, size=4
+#
+
+data_var_list_3d_size4 := map(data_var_name, posn_list_3d_size4, "data_");
+
+print_name_list_dcl(data_var_list_3d_size4, "fp",
+ "3d.cube.size4/data-var.dcl.c");
+print_data_var_assign(posn_list_3d_size4, "data_",
+ "3d.cube.size4/data-var.assign.c");
+
+print_interp_coeff_var_store(posn_list_3d_size4, "", "coeff_I_",
+ "3d.cube.size4/coeff-I.store.c");
+print_interp_coeff_var_store(posn_list_3d_size4, "factor", "coeff_dx_",
+ "3d.cube.size4/coeff-dx.store.c");
+print_interp_coeff_var_store(posn_list_3d_size4, "factor", "coeff_dy_",
+ "3d.cube.size4/coeff-dy.store.c");
+print_interp_coeff_var_store(posn_list_3d_size4, "factor", "coeff_dz_",
+ "3d.cube.size4/coeff-dz.store.c");
+print_interp_coeff_var_store(posn_list_3d_size4, "factor", "coeff_dxx_",
+ "3d.cube.size4/coeff-dxx.store.c");
+print_interp_coeff_var_store(posn_list_3d_size4, "factor", "coeff_dxy_",
+ "3d.cube.size4/coeff-dxy.store.c");
+print_interp_coeff_var_store(posn_list_3d_size4, "factor", "coeff_dxz_",
+ "3d.cube.size4/coeff-dxz.store.c");
+print_interp_coeff_var_store(posn_list_3d_size4, "factor", "coeff_dyy_",
+ "3d.cube.size4/coeff-dyy.store.c");
+print_interp_coeff_var_store(posn_list_3d_size4, "factor", "coeff_dyz_",
+ "3d.cube.size4/coeff-dyz.store.c");
+print_interp_coeff_var_store(posn_list_3d_size4, "factor", "coeff_dzz_",
+ "3d.cube.size4/coeff-dzz.store.c");
+
+print_name_list_dcl(map(coeff_name, posn_list_3d_size4, "coeff_I_"), "fp",
+ "3d.cube.size4/coeff-I.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size4, "coeff_dx_"), "fp",
+ "3d.cube.size4/coeff-dx.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size4, "coeff_dy_"), "fp",
+ "3d.cube.size4/coeff-dy.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size4, "coeff_dz_"), "fp",
+ "3d.cube.size4/coeff-dz.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size4, "coeff_dxx_"), "fp",
+ "3d.cube.size4/coeff-dxx.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size4, "coeff_dxy_"), "fp",
+ "3d.cube.size4/coeff-dxy.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size4, "coeff_dxz_"), "fp",
+ "3d.cube.size4/coeff-dxz.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size4, "coeff_dyy_"), "fp",
+ "3d.cube.size4/coeff-dyy.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size4, "coeff_dyz_"), "fp",
+ "3d.cube.size4/coeff-dyz.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size4, "coeff_dzz_"), "fp",
+ "3d.cube.size4/coeff-dzz.dcl.c");
+
+print_interp_cmpt__lc_of_data(posn_list_3d_size4,
+ "result", "coeff_I_", "data_",
+ "3d.cube.size4/interp-I.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size4,
+ "result", "coeff_dx_", "data_",
+ "3d.cube.size4/interp-dx.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size4,
+ "result", "coeff_dy_", "data_",
+ "3d.cube.size4/interp-dy.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size4,
+ "result", "coeff_dz_", "data_",
+ "3d.cube.size4/interp-dz.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size4,
+ "result", "coeff_dxx_", "data_",
+ "3d.cube.size4/interp-dxx.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size4,
+ "result", "coeff_dxy_", "data_",
+ "3d.cube.size4/interp-dxy.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size4,
+ "result", "coeff_dxz_", "data_",
+ "3d.cube.size4/interp-dxz.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size4,
+ "result", "coeff_dyy_", "data_",
+ "3d.cube.size4/interp-dyy.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size4,
+ "result", "coeff_dyz_", "data_",
+ "3d.cube.size4/interp-dyz.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size4,
+ "result", "coeff_dzz_", "data_",
+ "3d.cube.size4/interp-dzz.compute.c");
+
+########################################
+
+#
+# generic stuff for 3d, cube, size=5
+#
+
+data_var_list_3d_size5 := map(data_var_name, posn_list_3d_size5, "data_");
+
+print_name_list_dcl(data_var_list_3d_size5, "fp",
+ "3d.cube.size5/data-var.dcl.c");
+print_data_var_assign(posn_list_3d_size5, "data_",
+ "3d.cube.size5/data-var.assign.c");
+
+print_interp_coeff_var_store(posn_list_3d_size5, "", "coeff_I_",
+ "3d.cube.size5/coeff-I.store.c");
+print_interp_coeff_var_store(posn_list_3d_size5, "factor", "coeff_dx_",
+ "3d.cube.size5/coeff-dx.store.c");
+print_interp_coeff_var_store(posn_list_3d_size5, "factor", "coeff_dy_",
+ "3d.cube.size5/coeff-dy.store.c");
+print_interp_coeff_var_store(posn_list_3d_size5, "factor", "coeff_dz_",
+ "3d.cube.size5/coeff-dz.store.c");
+print_interp_coeff_var_store(posn_list_3d_size5, "factor", "coeff_dxx_",
+ "3d.cube.size5/coeff-dxx.store.c");
+print_interp_coeff_var_store(posn_list_3d_size5, "factor", "coeff_dxy_",
+ "3d.cube.size5/coeff-dxy.store.c");
+print_interp_coeff_var_store(posn_list_3d_size5, "factor", "coeff_dxz_",
+ "3d.cube.size5/coeff-dxz.store.c");
+print_interp_coeff_var_store(posn_list_3d_size5, "factor", "coeff_dyy_",
+ "3d.cube.size5/coeff-dyy.store.c");
+print_interp_coeff_var_store(posn_list_3d_size5, "factor", "coeff_dyz_",
+ "3d.cube.size5/coeff-dyz.store.c");
+print_interp_coeff_var_store(posn_list_3d_size5, "factor", "coeff_dzz_",
+ "3d.cube.size5/coeff-dzz.store.c");
+
+print_name_list_dcl(map(coeff_name, posn_list_3d_size5, "coeff_I_"), "fp",
+ "3d.cube.size5/coeff-I.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size5, "coeff_dx_"), "fp",
+ "3d.cube.size5/coeff-dx.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size5, "coeff_dy_"), "fp",
+ "3d.cube.size5/coeff-dy.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size5, "coeff_dz_"), "fp",
+ "3d.cube.size5/coeff-dz.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size5, "coeff_dxx_"), "fp",
+ "3d.cube.size5/coeff-dxx.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size5, "coeff_dxy_"), "fp",
+ "3d.cube.size5/coeff-dxy.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size5, "coeff_dxz_"), "fp",
+ "3d.cube.size5/coeff-dxz.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size5, "coeff_dyy_"), "fp",
+ "3d.cube.size5/coeff-dyy.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size5, "coeff_dyz_"), "fp",
+ "3d.cube.size5/coeff-dyz.dcl.c");
+print_name_list_dcl(map(coeff_name, posn_list_3d_size5, "coeff_dzz_"), "fp",
+ "3d.cube.size5/coeff-dzz.dcl.c");
+
+print_interp_cmpt__lc_of_data(posn_list_3d_size5,
+ "result", "coeff_I_", "data_",
+ "3d.cube.size5/interp-I.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size5,
+ "result", "coeff_dx_", "data_",
+ "3d.cube.size5/interp-dx.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size5,
+ "result", "coeff_dy_", "data_",
+ "3d.cube.size5/interp-dy.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size5,
+ "result", "coeff_dz_", "data_",
+ "3d.cube.size5/interp-dz.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size5,
+ "result", "coeff_dxx_", "data_",
+ "3d.cube.size5/interp-dxx.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size5,
+ "result", "coeff_dxy_", "data_",
+ "3d.cube.size5/interp-dxy.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size5,
+ "result", "coeff_dxz_", "data_",
+ "3d.cube.size5/interp-dxz.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size5,
+ "result", "coeff_dyy_", "data_",
+ "3d.cube.size5/interp-dyy.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size5,
+ "result", "coeff_dyz_", "data_",
+ "3d.cube.size5/interp-dyz.compute.c");
+print_interp_cmpt__lc_of_data(posn_list_3d_size5,
+ "result", "coeff_dzz_", "data_",
+ "3d.cube.size5/interp-dzz.compute.c");
+
+################################################################################