Changeset 3508 for issm/trunk
- Timestamp:
- 04/09/10 16:32:24 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/ModelProcessorx/DiagnosticHutter/CreateElementsNodesAndMaterialsDiagnosticHutter.cpp
r3476 r3508 32 32 if (!iomodel->ishutter)goto cleanup_and_return; 33 33 34 /*Partition elements and vertices and nodes: */ 35 Partitioning(&iomodel->my_elements, &iomodel->my_vertices, &iomodel->my_nodes, &iomodel->my_bordervertices, iomodel, iomodel_handle); 36 34 37 /*Hutter elements can be partitioned using epart, even if 35 38 * each hutter elements either lies on a node (in 2d), or a pair of vertically juxtaposed nodes (in 3d): */ … … 52 55 for (i=0;i<iomodel->numberofvertices;i++){ 53 56 54 if(iomodel->my_ nodes[i]){57 if(iomodel->my_vertices[i]){ 55 58 56 59 /*Create and add penta element to elements dataset: */ … … 68 71 for (i=0;i<iomodel->numberofvertices;i++){ 69 72 70 if(iomodel->my_ nodes[i]){73 if(iomodel->my_vertices[i]){ 71 74 if(iomodel->gridonhutter[i]){ 72 75 if(!iomodel->gridonsurface[i]){ … … 159 162 *pvertices=vertices; 160 163 *pmaterials=materials; 161 162 164 }
Note:
See TracChangeset
for help on using the changeset viewer.