DocumentationHelp Center
Area of 2-D mesh elements
A = area(mesh)
[A,AE] = area(mesh)
A = area(mesh,elements)
example
A = area(mesh) returns the area A of the entire mesh.
A
mesh
[A,AE] = area(mesh) also returns a row vector AE containing areas of each individual element of the mesh.
AE
A = area(mesh,elements) returns the combined area of the specified elements of the mesh.
elements
collapse all
Generate a 2-D mesh and find its area.
Create a PDE model.
model = createpde;
Include the geometry of the built-in function lshapeg. Plot the geometry.
lshapeg
geometryFromEdges(model,@lshapeg); pdegplot(model,'FaceLabels','on')
Generate a mesh and plot it.
mesh = generateMesh(model); figure pdemesh(model)
Compute the area of the entire mesh.
ma = area(mesh)
ma = 3.0000
Generate a 2-D mesh and find the area of each element.
Compute the area of the entire mesh and the area of each individual element of the mesh. Display the areas of the first 5 elements.
[ma,mi] = area(mesh); mi(1:5)
ans = 1×5 0.0047 0.0054 0.0053 0.0048 0.0061
Find the combined area of the elements associated with a particular face of a 2-D mesh.
Find the elements associated with face 1 and compute the total area of these elements.
Ef1 = findElements(mesh,'region','Face',1); maf1 = area(mesh,Ef1)
maf1 = 1.0000
Find how much of the total mesh area belongs to these elements. Return the result as a percentage.
maf1_percent = maf1/area(mesh)*100
maf1_percent = 33.3333
Mesh
PDEModel
generateMesh
Mesh object, specified as the Mesh property of a PDEModel object or as the output of generateMesh.
Example: model.Mesh
model.Mesh
Element IDs, specified as a positive integer or a matrix of positive integers.
Example: [10 68 81 97 113 130 136 164]
[10 68 81 97 113 130 136 164]
Area of the entire mesh or the combined area of the specified elements of the mesh, returned as a positive number.
Areas of individual elements, returned as a row vector of positive numbers.
FEMesh Properties | findElements | findNodes | meshQuality | volume
findElements
findNodes
meshQuality
volume
A modified version of this example exists on your system. Do you want to open this version instead?
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Contact your local office
Get trial now