Main Content

meshconfig

Change mesh mode of antenna structure

Description

example

meshconfig(antenna,mode) changes the meshing mode of the antenna according to the text input mode.

m = meshconfig(antenna,mode) changes the meshing mode of the antenna according to the text input mode.

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 object, specified as a scalar.

Meshing mode, specified as 'auto' or 'manual'.

Data Types: char

Version History

Introduced in R2015a

See Also

|