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 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
|
// iges114.cmd
// Surface Evolver script to write IGES file for surface, using IGES
// entity type 114 which handles linear, quadratic,
// and cubic triangles (among many other types not of interest).
/*
Assumptions: 3D soapfilm model, up to cubic model,
not torus or symmetry group
(use the "detorus" command if necessary to convert torus or symmetry
to unwrapped surface, but remember that detorus alters the surface)
Does facets only, not edges.
Does facets satisfying "show" criterion.
Facet color is frontcolor on both sides.
*/
// This version automatically handles quadratic and cubic models.
// usage: iges114 >>> "filename.igs"
// Set up color translation array
define iges_colors integer [16];
iges_black := 1
//iges_colors[black] := 1
iges_colors[red] := 2
iges_colors[green] := 3
iges_colors[blue] := 4
iges_colors[yellow] := 5
iges_colors[magenta] := 6
iges_colors[cyan] := 7
iges_colors[white] := 8
iges_colors[brown] := 2 // red
iges_colors[lightgray] := 8 // white
iges_colors[darkgray] := 1 // black
iges_colors[lightblue] := 4 // blue
iges_colors[lightcyan] := 7 // cyan
iges_colors[lightred] := 2 // red
iges_colors[lightmagenta] := 7
// Coefficients of the 2D cubic polynomial for coordinate jj
procedure iges114_coeff(integer fid, integer jj)
{ local v1,v2,v3,v4,v5,v6,v7,v8,v9,vA;
foreach facet[fid] ff do
if linear then
{ /* 1 x 1 domain mapped to triangle */
c0c0 := ff.vertex[1].x[jj];
c1c0 := ff.vertex[2].x[jj]-ff.vertex[1].x[jj];
c0c1 := ff.vertex[3].x[jj]-ff.vertex[1].x[jj];
c1c1 := ff.vertex[1].x[jj]-ff.vertex[2].x[jj];
c0c2 := 0;
c0c3 := 0;
c1c2 := 0;
c1c3 := 0;
c2c0 := 0;
c2c1 := 0;
c2c2 := 0;
c2c3 := 0;
c3c0 := 0;
c3c1 := 0;
c3c2 := 0;
c3c3 := 0;
}
else if quadratic then
{ /* 2 x 2 domain mapped to triangle */
c0c0 := ff.vertex[1].x[jj];
c0c1 := (-3*ff.vertex[1].x[jj])/2. + 2*ff.vertex[6].x[jj] - ff.vertex[3].x[jj]/2.;
c0c2 := ff.vertex[1].x[jj]/2. - ff.vertex[6].x[jj] + ff.vertex[3].x[jj]/2.;
c1c0 := (-3*ff.vertex[1].x[jj])/2. + 2*ff.vertex[4].x[jj] - ff.vertex[2].x[jj]/2.;
c1c1 := (7*ff.vertex[1].x[jj])/4. - 2*ff.vertex[4].x[jj] + ff.vertex[2].x[jj]/4. - ff.vertex[6].x[jj] + ff.vertex[5].x[jj];
c1c2 := -ff.vertex[1].x[jj]/2. + ff.vertex[4].x[jj]/2. + ff.vertex[6].x[jj]/2. - ff.vertex[5].x[jj]/2.;
c2c0 := ff.vertex[1].x[jj]/2. - ff.vertex[4].x[jj] + ff.vertex[2].x[jj]/2.;
c2c1 := -ff.vertex[1].x[jj]/2. + ff.vertex[4].x[jj] - ff.vertex[2].x[jj]/2.;
c2c2 := ff.vertex[1].x[jj]/8. - ff.vertex[4].x[jj]/4. + ff.vertex[2].x[jj]/8.;
c0c3 := 0;
c1c3 := 0;
c2c3 := 0;
c3c0 := 0;
c3c1 := 0;
c3c2 := 0;
c3c3 := 0;
}
else if lagrange and lagrange_order == 2 then
{ /* 2 x 2 domain mapped to triangle */
c0c0 := ff.vertex[1].x[jj];
c0c1 := (-3*ff.vertex[1].x[jj])/2. + 2*ff.vertex[4].x[jj] - ff.vertex[6].x[jj]/2.;
c0c2 := ff.vertex[1].x[jj]/2. - ff.vertex[4].x[jj] + ff.vertex[6].x[jj]/2.;
c1c0 := (-3*ff.vertex[1].x[jj])/2. + 2*ff.vertex[2].x[jj] - ff.vertex[3].x[jj]/2.;
c1c1 := (7*ff.vertex[1].x[jj])/4. - 2*ff.vertex[2].x[jj] + ff.vertex[3].x[jj]/4. - ff.vertex[4].x[jj] + ff.vertex[5].x[jj];
c1c2 := -ff.vertex[1].x[jj]/2. + ff.vertex[2].x[jj]/2. + ff.vertex[4].x[jj]/2. - ff.vertex[5].x[jj]/2.;
c2c0 := ff.vertex[1].x[jj]/2. - ff.vertex[2].x[jj] + ff.vertex[3].x[jj]/2.;
c2c1 := -ff.vertex[1].x[jj]/2. + ff.vertex[2].x[jj] - ff.vertex[3].x[jj]/2.;
c2c2 := ff.vertex[1].x[jj]/8. - ff.vertex[2].x[jj]/4. + ff.vertex[3].x[jj]/8.;
c0c3 := 0;
c1c3 := 0;
c2c3 := 0;
c3c0 := 0;
c3c1 := 0;
c3c2 := 0;
c3c3 := 0;
}
else if lagrange and lagrange_order == 3 then
{ /* 3 x 3 domain mapped to triangle */
v1 := ff.vertex[1].x[jj];
v2 := ff.vertex[2].x[jj];
v3 := ff.vertex[3].x[jj];
v4 := ff.vertex[4].x[jj];
v5 := ff.vertex[5].x[jj];
v6 := ff.vertex[6].x[jj];
v7 := ff.vertex[7].x[jj];
v8 := ff.vertex[8].x[jj];
v9 := ff.vertex[9].x[jj];
vA := ff.vertex[10].x[jj];
c0c0 := v1;
c0c1 := (-11*v1)/6. + 3*v5 - (3*v8)/2. + vA/3.;
c0c2 := v1 - (5*v5)/2. + 2*v8 - vA/2.;
c0c3 := -v1/6. + v5/2. - v8/2. + vA/6.;
c1c0 := (-11*v1)/6. + 3*v2 - (3*v3)/2. + v4/3.;
c1c1 := (47*v1)/18. - (7*v2)/2. + v3 - v4/9. - (5*v5)/2. + 3*v6 - v7/2. + v8/2. - v9/2.;
c1c2 := (-7*v1)/6. + (4*v2)/3. - v3/6. + (11*v5)/6. - 2*v6 + v7/6. - (2*v8)/3. + (2*v9)/3.;
c1c3 := v1/6. - v2/6. - v5/3. + v6/3. + v8/6. - v9/6.;
c2c0 := v1 - (5*v2)/2. + 2*v3 - v4/2.;
c2c1 := (-7*v1)/6. + (8*v2)/3. - (11*v3)/6. + v4/3. + v5/2. - v6 + v7/2.;
c2c2 := (4*v1)/9. - (17*v2)/18. + (5*v3)/9. - v4/18. - v5/3. + (2*v6)/3. - v7/3.;
c2c3 := -v1/18. + v2/9. - v3/18. + v5/18. - v6/9. + v7/18.;
c3c0 := -v1/6. + v2/2. - v3/2. + v4/6.;
c3c1 := v1/6. - v2/2. + v3/2. - v4/6.;
c3c2 := -v1/18. + v2/6. - v3/6. + v4/18.;
c3c3 := v1/162. - v2/54. + v3/54. - v4/162.;
}
} // end iges114_coeff
iges_parameter_counter := 0;
procedure print_coeffs(integer dirnum)
{ local message;
message := sprintf "%18.15f,%18.15f,",c0c0,c1c0;
iges_parameter_counter += 1;
printf "%-64s%8dP%7d\n",message,dirnum,iges_parameter_counter;
message := sprintf "%18.15f,%18.15f,",c2c0,c3c0;
iges_parameter_counter += 1;
printf "%-64s%8dP%7d\n",message,dirnum,iges_parameter_counter;
message := sprintf "%18.15f,%18.15f,",c0c1,c1c1;
iges_parameter_counter += 1;
printf "%-64s%8dP%7d\n",message,dirnum,iges_parameter_counter;
message := sprintf "%18.15f,%18.15f,",c2c1,c3c1;
iges_parameter_counter += 1;
printf "%-64s%8dP%7d\n",message,dirnum,iges_parameter_counter;
message := sprintf "%18.15f,%18.15f,",c0c2,c1c2;
iges_parameter_counter += 1;
printf "%-64s%8dP%7d\n",message,dirnum,iges_parameter_counter;
message := sprintf "%18.15f,%18.15f,",c2c2,c3c2;
iges_parameter_counter += 1;
printf "%-64s%8dP%7d\n",message,dirnum,iges_parameter_counter;
message := sprintf "%18.15f,%18.15f,",c0c3,c1c3;
iges_parameter_counter += 1;
printf "%-64s%8dP%7d\n",message,dirnum,iges_parameter_counter;
message := sprintf "%18.15f,%18.15f,",c1c3,c2c3;
iges_parameter_counter += 1;
printf "%-64s%8dP%7d\n",message,dirnum,iges_parameter_counter;
} // end print_coeffs
iges114 := {
local start_counter,global_counter,message,xmax,ymax,zmax;
local maxsize,entype,paramdata,structure,linefont,level,view;
local transmat,label,status,directory_counter,lineweight;
local colornum,paramcount,form,reserved,entlabel,entsubscr;
local ctype,ptype,mvalue,nvalue,minu,maxu;
local minv,maxv,co00,co10,co01,co11,line,subcount;
if torus then
{ errprintf "Cannot run 'iges114' command in torus mode. Do 'detorus' first.\n";
abort;
};
if surface_dimension != 2 then
{ errprintf "iges114 requires soapfilm model surface, not string model.\n";
abort;
};
if !linear and !quadratic and (!lagrange_order==2) and (!lagrange_order==3)
then
{ errprintf
"iges114 requires surface to be linear, quadratic, or cubic.\n";
abort;
};
if torus then
{ errprintf "Cannot run 'iges114' command in torus mode. Do 'detorus' first.\n";
abort;
};
if symmetry_group then
{ errprintf "Cannot run 'iges114' command in symmetry group mode. Do 'detorus' first.\n";
abort;
};
if space_dimension != 3 then
{ errprintf "The 'iges114' command must be run in three-dimensional space.\n";
abort;
};
if surface_dimension == 1 then
{ errprintf "The 'iges114' command is not meant for the string model.\n";
abort;
};
if simplex_representation then
{ errprintf "The 'iges114' command is not meant for the simplex model.\n";
abort;
};
if rgb_colors then
{ errprintf "The 'iges114' command does not do RGB colors; do rgb_colors off.\n";
abort;
};
// Flag section
// Don't need this since not doing binary or compressed format.
// Start section
start_counter := 0;
start_counter += 1;
printf "%-72sS%07d\n","IGES version of Surface Evolver surface",start_counter;
start_counter += 1;
printf " %-69sS%07d\n",datafilename,start_counter;
start_counter += 1;
printf "%-72sS%07d\n","Created using iges.cmd Evolver script.",
start_counter;
// Global section
global_counter := 0;
global_counter += 1;
printf "%-72sG%07d\n","1H,,1H;,",global_counter;
global_counter += 1;
printf "%02dH%-69sG%07d\n",sizeof("Surface Evolver"),"Surface Evolver,",
global_counter;
global_counter += 1;
message := sprintf "%s,",datafilename;
printf "%02dH%-69sG%07d\n",sizeof(datafilename),message,global_counter;
global_counter += 1;
printf "%02dH%-69sG%07d\n",sizeof("Surface Evolver"),"Surface Evolver,",
global_counter;
global_counter += 1;
printf "%02dH%-69sG%07d\n",sizeof("Surface Evolver"),"Surface Evolver,",
global_counter;
global_counter += 1;
printf "%-72sG%07d\n","32,75,6,75,15,,1.0,1,2HIN,32768,0.0394,",
global_counter;
global_counter += 1;
printf "%-72sG%07d\n","15H00000000.000000,", global_counter; // date
xmax := max(vertex,abs(x));
ymax := max(vertex,abs(y));
zmax := max(vertex,abs(z));
maxsize := (xmax > ymax) ? xmax : ymax;
maxsize := (zmax > maxsize) ? zmax : maxsize;
message := sprintf "%g,%g,",maxsize/10000000,maxsize;
global_counter += 1;
printf "%-72sG%07d\n",message, global_counter;
global_counter += 1;
printf "%02dH%-69sG%07d\n",sizeof("Name of author"),"Name of author,",
global_counter;
global_counter += 1;
printf "%02dH%-69sG%07d\n",sizeof("Author's organization"),
"Author's organization,", global_counter;
global_counter += 1;
printf "%-72sG%07d\n","15H00000000.000000;", global_counter; // date
// Directory entry section. Each entry 20 8-char fields on two lines.
// Fields with default values
entype := 0; // 1 and 11
paramdata := 1; // 2
structure := 0; // 3
linefont := 0; // 4
level := 0; // 5
view := 0; // 6
transmat := 0; // 7
label := 0; // 8
status := "00000000"; // 9; actually 4 two-digit numbers
directory_counter := 0; // 10 and 20
lineweight := 0; // 12
colornum := 0; // 13
paramcount := 0; // 14
form := 0; // 15
reserved := " "; // 16 and 17
entlabel := "entity"; // 18
entsubscr := 0; // 19
// Facets as "parametric surface" types
entype := 114;
status := "00010001";
paramcount := 1;
entlabel := " FACET";
define facet attribute fpdata integer;
define facet attribute fdir integer;
foreach facet ff where show and color >= 0 do
{ ff.fpdata := paramdata;
entsubscr := ff.id;
directory_counter += 1; ff.fdir := directory_counter;
printf "%8d%8d%8d%8d%8d%8d%8d%8d%8sD%7d\n",entype,paramdata,structure,
linefont,level,view,transmat,label,status,directory_counter;
directory_counter += 1;
printf "%8d%8d%8d%8d%8d%8s%8s%8s%8dD%7d\n",entype,lineweight,
(ff.color == BLACK ? iges_black : iges_colors[ff.color]),
paramcount,form,reserved,reserved,entlabel,entsubscr,directory_counter;
paramdata += 25; // 25 lines per facet in data section
};
// Geometry element
entype := 402;
status := "00000301";
paramcount := ceil(facet_count/10);
form := 7;
entlabel := " SURFACE";
entsubscr := 1;
directory_counter += 1;
printf "%8d%8d%8d%8d%8d%8d%8d%8d%8sD%7d\n",entype,paramdata,structure,
linefont,level,view,transmat,label,status,directory_counter;
directory_counter += 1;
printf "%8d%8d%8d%8d%8d%8s%8s%8s%8dD%7d\n",entype,lineweight,colornum,
paramcount,form,reserved,reserved,entlabel,entsubscr,directory_counter;
// Parameter data section
iges_parameter_counter := 0;
// Facets
entype := 114;
ptype := 0; // unspecified
mvalue := 1; // number of u segments
nvalue := 1; // number of v segments
minu := 0;
maxu := lagrange_order;
minv := 0;
maxv := lagrange_order;
if linear then { ctype := 1; }
else if quadratic or (lagrange_order == 2) then
{ ctype := 2;}
else { ctype := 3; };
foreach facet ff where show and color >= 0 do
{ iges_parameter_counter += 1;
if ff.fpdata != iges_parameter_counter then
errprintf
"ERROR: bad facet parameter line number, facet %d. Is %d, should be %d.\n",
ff.id,iges_parameter_counter,ff.fpdata;
message := sprintf "%d,%d,%d,%d,%d,%g,%g,%g,%g,",entype,ctype,ptype,
mvalue,nvalue,minu,maxu,minv,maxv;
printf "%-64s%8dP%7d\n",message,ff.fdir,iges_parameter_counter;
// x coefficients, 2 per line
iges114_coeff(ff.id,1);
print_coeffs(ff.fdir);
// y coefficients, 2 per line
iges114_coeff(ff.id,2);
print_coeffs(ff.fdir);
// z coefficients, 2 per line
iges114_coeff(ff.id,3);
print_coeffs(ff.fdir);
};
// Geometry element
line := sprintf "402,%d,",facet_count;
subcount := 0;
foreach facet ff where show and color >= 0 do
{ if subcount == 10 then
{
iges_parameter_counter += 1;
printf "%-64s%8dP%7d\n",line,directory_counter-1,iges_parameter_counter;
line := "" ;
subcount := 0;
};
line := sprintf"%s%d,",line,ff.fdir;
subcount += 1;
};
line := sprintf "%s0,0;",line; // sample files ended with 2 extra 0's
iges_parameter_counter += 1;
printf "%-64s%8dP%7d\n",line,directory_counter-1,iges_parameter_counter;
// Terminate section
printf "S%07dG%07dD%07dP%07d%40sT0000001\n",start_counter,global_counter,
directory_counter,iges_parameter_counter," ";
}
// End iges114.cmd
// Usage: iges114 >>> "filename.igs"
|