Main Content

meshconfig

Change meshing mode of antenna, array, custom antenna, custom array, or custom geometry

Description

example

meshconfig(object,mode) changes the meshing mode of the antenna according to the specified mode.

m = meshconfig(object,mode) changes the meshing mode of the antenna, array, or custom geometric shape according to the specified mode and stores the mesh properties in a structure.

Examples

collapse all

Change the mesh configuration of a dipole antenna from auto (default) to manual mode.

h = dipole;
meshconfig(h,"manual")
ans = struct with fields:
     NumTriangles: 0
    NumTetrahedra: 0
         NumBasis: []
    MaxEdgeLength: []
    MinEdgeLength: []
       GrowthRate: []
         MeshMode: 'manual'

mesh(h,MaxEdgeLength=0.1)

Figure contains an axes object and an object of type uicontrol. The axes object with title Metal mesh, xlabel x (m), ylabel y (m) contains 2 objects of type patch, surface. These objects represent PEC, feed.

Input Arguments

collapse all

Antenna, array, custom antenna, custom array or custom geometric shape to change the meshing mode, specified as an antenna object, array object, custom antenna or array mesh, custom antenna or array geometry, custom antenna, antenna.Shape object, or shape.Shape object from the catalog.

Meshing mode, specified as a string.

Data Types: string

Version History

Introduced in R2015a

See Also

|