Lines Matching refs:mesh
9 # map [0,1] to [0,1] varying the mesh density
41 # Determine the mesh size based on the given approximate problem size.
45 # Build CeedElemRestriction objects describing the mesh and solution discrete
58 println("Number of mesh nodes : ", div(mesh_size, dim))
61 # Create a CeedVector with the mesh coordinates.
64 # Apply a transformation to the mesh.
131 # Compute the mesh volume using the mass operator: vol = 1^T \cdot M \cdot 1
132 print("Computing the mesh volume using the formula: vol = 1^T.M.1 ...")
141 # Compute and print the sum of the entries of 'v' giving the mesh volume.
145 @printf("Exact mesh volume : % .14g\n", exact_vol)
146 @printf("Computed mesh volume : % .14g\n", vol)