Lines Matching refs:mesh
192 # map [0,1] to [0,1] varying the mesh density
245 # Determine the mesh size based on the given approximate problem size.
249 # Build CeedElemRestriction objects describing the mesh and solution discrete
262 println("Number of mesh nodes : ", div(mesh_size, dim))
265 # Create a C.CeedVector with the mesh coordinates.
269 # Apply a transformation to the mesh.
383 # Compute the mesh volume using the mass operator: vol = 1^T \cdot M \cdot 1
384 print("Computing the mesh volume using the formula: vol = 1^T.M.1 ...")
398 # Compute and print the sum of the entries of 'v' giving the mesh volume.
406 @printf("Exact mesh volume : % .14g\n", exact_vol)
407 @printf("Computed mesh volume : % .14g\n", vol)