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
68 println("Number of mesh nodes : ", div(mesh_size, dim))
71 # Create a CeedVector with the mesh coordinates.
74 # Apply a transformation to the mesh.
170 # Compute the mesh volume using the mass+diffusion operator: vol = 1^T \cdot (M + K) \cdot 1
171 print("Computing the mesh volume using the formula: vol = 1^T * (M + K) * 1...")
180 # Compute and print the sum of the entries of 'v' giving the mesh volume.
184 @printf("Exact mesh volume : % .14g\n", exact_vol)
185 @printf("Computed mesh volume : % .14g\n", vol)