-
Notifications
You must be signed in to change notification settings - Fork 27
/
tetris.m
228 lines (145 loc) · 4.67 KB
/
tetris.m
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
function [mesh] = tetris(opts,nlev)
%TETRIS generate a mesh using a "multi-level" strategy.
% MESH = TETRIS(OPTS,NLEV) generates MESH using a sequence
% of bisection/refinement/optimisation operations. At each
% pass, the mesh from the preceeding level is bisected
% uniformly, a "halo" of nodes associated with "irregular"
% topology is removed and JIGSAW is called to perform
% subsequent refinement/optimisation.
% OPTS is the standard user-defined options struct. passed
% to JIGSAW.
%
% See also JIGSAW
%-----------------------------------------------------------
% Darren Engwirda
% github.com/dengwirda/jigsaw-matlab
% 16-Apr-2021
%-----------------------------------------------------------
%
if ( isempty(opts))
error('JIGSAW: insufficient inputs.');
end
if ( isempty(nlev))
error('JIGSAW: insufficient inputs.');
end
if (~isempty(opts) && ~isstruct (opts))
error('JIGSAW: invalid input types.');
end
if (~isempty(nlev) && ~isnumeric(nlev))
error('JIGSAW: invalid input types.');
end
%---------------------------- call JIGSAW via inc. bisection
SCAL = +2. ^ nlev; OPTS = opts; flag = +1;
while (nlev >= +0)
if (isfield(opts,'hfun_file'))
%---------------------------- create/write current HFUN data
[path,name,fext] = ...
fileparts(opts.hfun_file) ;
if (~isempty(path))
path = [path, '/'];
end
OPTS.hfun_file = ...
[path,name,'-ITER', fext] ;
[HFUN]=loadmsh(opts.hfun_file) ;
HFUN.value = HFUN.value*SCAL;
savemsh (OPTS.hfun_file,HFUN) ;
end
if (isfield(opts,'hfun_hmax'))
%---------------------------- create/write current HMAX data
OPTS.hfun_hmax = ...
opts.hfun_hmax * SCAL ;
end
if (isfield(opts,'hfun_hmin'))
%---------------------------- create/write current HMIN data
OPTS.hfun_hmin = ...
opts.hfun_hmin * SCAL ;
end
if (isfield(opts,'optm_dual'))
%---------------------------- create/write current DUAL flag
OPTS.optm_dual = (nlev == +0) ;
end
if (isfield(opts,'optm_qlim'))
%---------------------------- create/write current QLIM flag
scal = min( ...
2.0, (nlev + 1) ^ (1./4.));
QLIM = opts.optm_qlim ;
OPTS.optm_qlim = QLIM / scal;
else
scal = min( ...
2.0, (nlev + 1) ^ (1./4.));
QLIM = 0.93750 ;
OPTS.optm_qlim = QLIM / scal;
end
if (nlev == +0 || flag == +0)
%---------------------------- call JIGSAW kernel at this lev
mesh = jitter ( ...
OPTS, 2 + min(64, nlev ^ 2), 3) ;
flag = +1 ; % alternate
else
mesh = jitter ( ...
OPTS, 2 + min(64, nlev ^ 2), 2) ;
flag = +0 ; % alternate
end
nlev = nlev - 1 ;
SCAL = SCAL / 2.;
if (nlev >= +0)
if (isfield(opts,'init_file'))
%---------------------------- create/write current INIT data
[path,name,fext] = ...
fileparts(opts.init_file) ;
if (~isempty(path))
path = [path, '/'];
end
OPTS.init_file = ...
[path,name,'-ITER', fext] ;
mesh = bisect (mesh);
mesh = attach (mesh);
savemsh (OPTS.init_file,mesh) ;
else
%---------------------------- create/write current INIT data
[path,name,fext] = ...
fileparts(opts.mesh_file) ;
if (~isempty(path))
path = [path, '/'];
end
OPTS.init_file = ...
[path,name,'-ITER', fext] ;
mesh = bisect (mesh);
mesh = attach (mesh);
savemsh (OPTS.init_file,mesh) ;
end
end
end
end
function [mesh] = attach(mesh)
%ATTACH attach points to the underlying geometry definition.
if (inspect(mesh,'hexa8'))
mark = mesh.hexa8.index(:,1:8);
mesh.point.coord(mark,end) = 3;
end
if (inspect(mesh,'tria4'))
mark = mesh.tria3.index(:,1:4);
mesh.point.coord(mark,end) = 3;
end
if (inspect(mesh,'wedg6'))
mark = mesh.wedg6.index(:,1:6);
mesh.point.coord(mark,end) = 3;
end
if (inspect(mesh,'pyra5'))
mark = mesh.pyra5.index(:,1:5);
mesh.point.coord(mark,end) = 3;
end
if (inspect(mesh,'quad4'))
mark = mesh.quad4.index(:,1:4);
mesh.point.coord(mark,end) = 2;
end
if (inspect(mesh,'tria3'))
mark = mesh.tria3.index(:,1:3);
mesh.point.coord(mark,end) = 2;
end
if (inspect(mesh,'edge2'))
mark = mesh.edge2.index(:,1:2);
mesh.point.coord(mark,end) = 1;
end
end