Changeset 347
- Timestamp:
- 05/12/09 09:58:13 (16 years ago)
- Location:
- issm/trunk/src/c/ModelProcessorx
- Files:
-
- 1 deleted
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/ModelProcessorx/DiagnosticHoriz/CreateElementsNodesAndMaterialsDiagnosticHoriz.cpp
r306 r347 147 147 materials = new DataSet(MaterialsEnum()); 148 148 149 149 150 /*Now, is the flag macayaealpattyn on? otherwise, do nothing: */ 150 151 if (!model->ismacayealpattyn)goto cleanup_and_return; … … 153 154 analysis_type=AnalysisTypeAsEnum(model->analysis_type); 154 155 156 155 157 /*Width of elements: */ 156 158 if(strcmp(model->meshtype,"2d")==0){ … … 160 162 elements_width=6; //penta elements 161 163 } 164 162 165 163 166 … … 173 176 } 174 177 178 175 179 MeshPartitionx(&epart, &npart,model->numberofelements,model->numberofnodes,model->elements, model->numberofelements2d,model->numberofnodes2d,model->elements2d,model->numlayers,elements_width, model->meshtype,num_procs); 176 180 … … 178 182 xfree((void**)&model->elements); 179 183 xfree((void**)&model->elements2d); 180 184 181 185 182 186 /*Deal with rifts, they have to be included into one partition only, not several: */ … … 337 341 xfree((void**)&model->B); 338 342 xfree((void**)&model->n); 343 339 344 } 340 345 else{ // if (strcmp(meshtype,"2d")==0) … … 563 568 ModelFetchData((void**)&model->gridonsurface,NULL,NULL,model_handle,"gridonsurface","Matrix","Mat"); 564 569 565 570 566 571 /*Get number of dofs per node: */ 567 572 DistributeNumDofs(&node_numdofs,analysis_type); -
issm/trunk/src/c/ModelProcessorx/Model.cpp
r308 r347 277 277 278 278 ModelFetchData((void**)&model->meshtype,NULL,NULL,model_handle,"type","String",NULL); 279 280 279 /*!Get numberofelements and numberofnodes: */ 281 280 ModelFetchData((void**)&model->numberofnodes,NULL,NULL,model_handle,"numberofgrids","Integer",NULL);
Note:
See TracChangeset
for help on using the changeset viewer.