Contents     Functions         Previous Next     PDF Index

feplot

Purpose

Gateway function for 3-D visualization of structures. See also the companion function fecom.

Syntax

feplot
feplot(FigHandle)
feplot(model)
feplot(model,def)

Description

fecom gives a complete list of commands. The rest of this section gives more details on the feplot architecture. For a tutorial see section 4.1. Basic ways to call feplot are

The old formats feplot(node,elt,mode,mdof,2) and cf.model={Node,Elt} are still supported but you are encouraged to switch to the new and more general procedure outlined above.

Views of deformed structures are obtained by combining information from various data arrays that can be initialized/modified at any time. The object hierarchy is outlined below with the first row being data arrays that store information and the second row objects that are really displayed in MATLAB axes.

axes describe axes to be displayed within the feplot figure. Division of the figure into subplots (Matlab axes) is obtained using the fecom Sub commands. Within each plot, basic displays (wire mesh, surface, sensor, arrow corresponding to mesh, arrow, or text objects) can be obtained using the fecom Show commands while more elaborate plots are obtained using fecom SetObject commands. Other axes properties (rotations, animation, deformation selection, scaling, title generation, etc.) can then be modified using fecom commands.


mdlModel data structure (see section 7.6) cf.mdl is a handle to the model contained in the feplot figure. The model must be defined before any plot is possible. It is initialized using the fecom InitModel command or using the method cf.model.
StackModel Stack entries are stored in cf.mdl.Stack, but can be more easily reached using cf.Stack{i} or cf.Stack{EntryName} or modified using

cf.Stack{EntryType,EntryName}={EntryType,EntryName,EntryData}.

CStackCase Stack entries are stored in the stack case (itself stored in cf.mdl.Stack). They can be more easily reached using cf.CStack{i} or cf.CStack{EntryName} or modified using

cf.CStack{EntryType,EntryName}={EntryType,EntryName,EntryData}.

selElement selections describe which elements are displayed. The standard selection displays all elements of all groups. fecom Sel commands or cf.sel(i) let you define selections that only display some elements. See also the fecom SetObject commands. Color information is defined for each selection (see fecom Color commands). cf.sel(i)= 'ElementSel'   initializes a selection to use element selected by ElementSel. Note that you may want to declare color data simultaneously using cf.sel(i)= {'ElementSel','Colordata Command',Args}. cf.o(i)= {'ObjectSpec','PatchProperty',PatchValue}   modifies the properties of object i in the current feplot axis.


sens(obsolete) sensor selections describe sets of sensors. Sensor selections are used to display the response at measurement locations through stick or arrows. Initialized using the InitSens command or cf.sens(i) calls (see fecom).cf.sens(i)={sdof}   initializes a sensor set (see fecom InitSens).
defdeformation sets describe deformations at a number of DOFs. Initialized using the InitDef command or cf.def(i) calls (see fecom). cf.def(i)={def,dof} is also accepted. cf.def(i)={def,dof,freq} where freq is a list of frequencies of poles automatically generates title labels for each deformation (see fecom InitDef).

Objects

mesh

mesh objects represent a deformed or undeformed finite element mesh. They are used both for wire-frame and surface representations. mesh objects are characterized by indices giving the element selection, deformation set, channel (deformation number), and color type. They can be modified using calls or the form

 cf = feplot; % get sdth object handle
 cf.o(2) = 'sel 1 def 1 ch 3'

or equivalently with fecom SetObject commands. fecom Show commands reset the object list of the current axis.

Each mesh object is associated to up to three MATLAB patch objects associated respectively with real surfaces, segments and isolated nodes. You can access individual pointers to the patch objects using cf.o(i,j) (see fecom go commands).

arrow

Arrow objects are used to represent sensors, actuators, boundary conditions, ... They are characterized by indices giving their sensor set, deformation set, channel (deformation number), and arrow type. They can be modified using calls or the form (see fecom SetObject commands)

 cf = feplot; % get sdth object handle
 cf.o(2) = 'sen 1 def 1 ch 3'

The SDT currently supports stick sensors (object type 3) and arrows at the sensor tip (type 7). Other arrow types will eventually be supported.

text

fecom text objects are vectorized lists of labels corresponding to nodes, elements, DOFs, ... They can be initialized using fecom Text commands and deleted with textoff. You can use cf.o(i) (see fecom go commands) to get handles to the associated MATLAB text objects and thus set font name size, ... set(cf.o(1), 'fontsize', 7) for example.

Data arrays

feplot stores information in various data arrays cf.mdl for the model, cf.def(i) for the definition of deformations, cf.sel(i) for element selections for display and cf.sens(i) for sensor selections.

mdl

The model currently displayed is stored in cf.mdl, see fecom InitModel.

def

The deformations currently displayed are stored in cf.def, see fecom InitDef.

sel

element selections describe a selection of elements to be displayed. The standard selection displays all elements of all groups. fecom Sel commands let you define selections that only display some elements.


.seleltstring used for element selection
.vert0position of vertices (nodes) in the undeformed configuration
.nodenode numbers associated to the various vertices
.cnaarray (as many as currently declared deformations) of sparse observation matrices giving the linear relation between deformation DOFs and translation DOFs at the selection nodes. The observation matrix gives all x translations followed by all y translations and all z translations.
.fsface definitions for true surfaces (elements that are not represented by lines or points)
.f2face definitions for lines (if any)
.f1face definitions for points (if any)
.fvcsFaceVertexCData for true surfaces (see fecom ColorData commands). Can also be a string, which is then evaluated to obtain the color, or a function handle for the color evaluation call.
.fvc2FaceVertexCData for lines
.fvc1FaceVertexCData for points

sens

sensor selections describe sets of sensors. Sensor selections are used to display the response at measurement locations through stick or arrows. The InitSens command is being replaced by the definition of SensDof stack entries.

.vert0position of vertices (nodes) in the undeformed configuration
.nodenode numbers associated to the various vertices
.ntagnumerical tag identifying each sensor
.dirdirection associated with each sensor
.ctaarray (as many as currently declared deformations) of sparse observation matrices giving the linear relation between deformation DOFs and measurements.
.opt[Created]
.arrowdefines how the arrow is related to the measurement

See also

fecom, femesh, feutil, tutorial in section 4.1


©1991-2011 by SDTools
Previous Up Next