Lines Matching full:dim
5 function transform_mesh_coords!(dim, mesh_size, mesh_coords) argument
7 if dim == 1
14 num_nodes = mesh_size÷dim
31 function run_ex3(; ceed_spec, dim, mesh_order, sol_order, num_qpts, prob_size) argument
32 ncompx = dim
37 create_tensor_h1_lagrange_basis(ceed, dim, ncompx, mesh_order + 1, num_qpts, GAUSS)
39 create_tensor_h1_lagrange_basis(ceed, dim, 1, sol_order + 1, num_qpts, GAUSS)
42 nxyz = get_cartesian_mesh_size(dim, sol_order, prob_size)
48 build_cartesian_restriction(ceed, dim, nxyz, mesh_order, ncompx, num_qpts)
49 num_q_comp = 1 + div(dim*(dim + 1), 2)
52 dim,
61 dim,
68 println("Number of mesh nodes : ", div(mesh_size, dim))
73 set_cartesian_mesh_coords!(dim, nxyz, mesh_order, mesh_coords)
75 exact_vol = transform_mesh_coords!(dim, mesh_size, mesh_coords)
80 dim=dim,
81 (dx, :in, EVAL_GRAD, dim, dim), # ← THIS LINE: dx input
93 for i = 1:dim
94 for j = i:dim
114 elem_qpts = num_qpts^dim
125 dim=dim,
127 (du, :in, EVAL_GRAD, dim),
130 (dv, :out, EVAL_GRAD, dim),
141 for i = 1:dim
143 for j = 1:dim
192 dim=3,