File: plotmesh.m

package info (click to toggle)
octave-iso2mesh 1.9.8%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 11,128 kB
  • sloc: cpp: 11,982; ansic: 10,158; sh: 365; makefile: 59
file content (249 lines) | stat: -rw-r--r-- 7,992 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
function hm = plotmesh(node, varargin)
%
% hm=plotmesh(node,face,elem,opt)
%
% plot surface and volumetric meshes
%
% author: Qianqian Fang <q.fang at neu.edu>
%
% input:
%      node: a node coordinate list, 3 columns for x/y/z; if node has a
%            4th column, it will be used to set the color at each node.
%      face: a triangular surface face list; if face has a 4th column,
%            it will be used to separate the surface into
%            sub-surfaces and display them in different colors;
%            face can be a cell array, each element of the array represents
%            a polyhedral facet of the mesh, if an element is an array with
%            two array subelements, the first one is the node index, the
%            second one is a scalar as the group id of the facet.
%      elem: a tetrahedral element list; if elem has a 5th column,
%            it will be used to separate the mesh into
%            sub-domains and display them in different colors.
%      opt:  additional options for the plotting
%
%            for simple point plotting, opt can be markers
%            or color options, such as 'r.', or opt can be
%            a logic statement to select a subset of the mesh,
%            such as 'x>0 & y+z<1', or an equation defining
%            a plane at which a mesh cross-section is plotted, for
%            example 'y=2*x'; opt can have more than one
%            items to combine these options, for example:
%            plotmesh(...,'x>0','r.'); the range selector must
%            appear before the color/marker specifier
%
% in the event where all of the above inputs have extra settings related to
% the color of the plot, the priorities are given in the following order:
%
%          opt > node(:,4) > elem(:,5) > face(:,4)
%
% output:
%   hm: handle or handles (vector) to the plotted surfaces
%
% example:
%
%   h=plotmesh(node,'r.');
%   h=plotmesh(node,'x<20','r.');
%   h=plotmesh(node,face);
%   h=plotmesh(node,face,'y>10');
%   h=plotmesh(node,face,'facecolor','r');
%   h=plotmesh(node,elem,'x<20');
%   h=plotmesh(node,elem,'x<20 & y>0');
%   h=plotmesh(node,face,elem);
%   h=plotmesh(node,face,elem,'linestyle','--');
%   h=plotmesh(node,elem,'z=20');
%
% -- this function is part of iso2mesh toolbox (http://iso2mesh.sf.net)
%

selector = [];
opt = [];
face = [];
elem = [];

if (nargin > 1)
    hasopt = 0;
    for i = 1:length(varargin)
        if (ischar(varargin{i}))
            if (~isempty(regexp(varargin{i}, '[x-zX-Z]')) && ~isempty(regexp(varargin{i}, '[><=&|]')))
                selector = varargin{i};
                if (nargin >= i + 1)
                    opt = varargin(i + 1:end);
                end
            else
                opt = varargin(i:end);
            end
            if (i == 1)
                face = [];
                elem = [];
            elseif (i == 2)
                if (iscell(varargin{1}) || size(varargin{1}, 2) < 4)
                    face = varargin{1};
                    elem = [];
                elseif (size(varargin{1}, 2) == 4)
                    faceid = unique(varargin{1}(:, 4));
                    if (length(faceid) == 1)
                        face = varargin{1};
                        elem = [];
                    elseif (any(hist(varargin{1}(:, 4), unique(varargin{1}(:, 4))) > 50))
                        face = varargin{1};
                        elem = [];
                    else
                        elem = varargin{1};
                        face = [];
                    end
                else
                    elem = varargin{1};
                    face = [];
                end
            elseif (i == 3)
                face = varargin{1};
                elem = varargin{2};
            end
            hasopt = 1;
            break
        end
    end
    if (hasopt == 0)
        if (length(varargin) >= 2)
            face = varargin{1};
            elem = varargin{2};
            if (length(varargin) > 2)
                opt = varargin(3:end);
            end
        elseif (iscell(varargin{1}) || size(varargin{1}, 2) < 4)
            face = varargin{1};
            elem = [];
        elseif (size(varargin{1}, 2) == 4)
            faceid = unique(varargin{1}(:, 4));
            if (length(faceid) == 1)
                face = varargin{1};
                elem = [];
            elseif (any(hist(varargin{1}(:, 4), unique(varargin{1}(:, 4))) > 50))
                face = varargin{1};
                elem = [];
            else
                elem = varargin{1};
                face = [];
            end
        else
            elem = varargin{1};
            face = [];
        end
    end
end

holdstate = ishold;
if (~holdstate)
    cla;
end
if (size(node, 2) == 4 && size(elem, 2) == 5)
    warning(['You have specified the node colors by both the 4th ' ...
             'and 5th columns of node and face inputs, respectively. ' ...
             'The node input takes priority']);
end
if (isempty(face) && isempty(elem))
    if (isempty(selector))
        if (isempty(opt))
            h = plot3(node(:, 1), node(:, 2), node(:, 3), 'o');
        else
            h = plot3(node(:, 1), node(:, 2), node(:, 3), opt{:});
        end
    else
        x = node(:, 1);
        y = node(:, 2);
        z = node(:, 3);
        idx = eval(['find(' selector ')']);
        if (~isempty(idx))
            if (isempty(opt))
                h = plot3(node(idx, 1), node(idx, 2), node(idx, 3), 'o');
            else
                h = plot3(node(idx, 1), node(idx, 2), node(idx, 3), opt{:});
            end
        else
            warning('nothing to plot');
        end
    end
end

if (~isempty(face))
    hold on;
    if (isempty(selector))
        if (isempty(opt))
            h = plotsurf(node, face);
        else
            h = plotsurf(node, face, opt{:});
        end
    else
        if (iscell(face))
            cent = meshcentroid(node, face);
        else
            cent = meshcentroid(node, face(:, 1:3));
        end
        x = cent(:, 1);
        y = cent(:, 2);
        z = cent(:, 3);
        idx = eval(['find(' selector ')']);
        if (~isempty(idx))
            if (iscell(face))
                h = plotsurf(node, face(idx), opt{:});
            else
                h = plotsurf(node, face(idx, :), opt{:});
            end
        else
            warning('no surface to plot');
        end
    end
end

if (~isempty(elem))
    hold on;
    if (isempty(selector))
        if (isempty(opt))
            h = plottetra(node, elem);
        else
            h = plottetra(node, elem, opt{:});
        end
    else
        cent = meshcentroid(node, elem(:, 1:4));
        x = cent(:, 1);
        y = cent(:, 2);
        z = cent(:, 3);
        if (regexp(selector, '='))
            if (size(node, 2) == 4)
                [cutpos, cutvalue, facedata] = qmeshcut(elem, node(:, 1:3), node(:, 4), selector);
            elseif (size(node, 2) == 3)
                [cutpos, cutvalue, facedata] = qmeshcut(elem, node, node(:, 3), selector);
            else
                error('plotmesh can only plot 3D tetrahedral meshes');
            end
            if (~isreal(cutvalue))
                cutvalue = abs(cutvalue);
            end
            h = patch('Vertices', cutpos, 'Faces', facedata, 'FaceVertexCData', cutvalue, 'facecolor', 'interp', opt{:});
        else
            idx = eval(['find(' selector ')']);
            if (~isempty(idx))
                if (isempty(opt))
                    h = plottetra(node, elem(idx, :));
                else
                    h = plottetra(node, elem(idx, :), opt{:});
                end
            else
                warning('no tetrahedral element to plot');
            end
        end
    end
end

if (exist('h', 'var') && ~holdstate)
    hold off;
end
if (exist('h', 'var'))
    if (any(get(gca, 'dataaspectratio') > 1e8))
        view(3);
    end
    axis equal;
end
if (exist('h', 'var') && nargout >= 1)
    hm = h;
end