Changeset 347


Ignore:
Timestamp:
05/12/09 09:58:13 (16 years ago)
Author:
Eric.Larour
Message:

Collapsed surface and bed slope computations into one

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  
    147147        materials = new DataSet(MaterialsEnum());
    148148
     149
    149150        /*Now, is the flag macayaealpattyn on? otherwise, do nothing: */
    150151        if (!model->ismacayealpattyn)goto cleanup_and_return;
     
    153154        analysis_type=AnalysisTypeAsEnum(model->analysis_type);
    154155
     156       
    155157        /*Width of elements: */
    156158        if(strcmp(model->meshtype,"2d")==0){
     
    160162                elements_width=6; //penta elements
    161163        }
     164
    162165
    163166
     
    173176        }
    174177
     178
    175179        MeshPartitionx(&epart, &npart,model->numberofelements,model->numberofnodes,model->elements, model->numberofelements2d,model->numberofnodes2d,model->elements2d,model->numlayers,elements_width, model->meshtype,num_procs);
    176180
     
    178182        xfree((void**)&model->elements);
    179183        xfree((void**)&model->elements2d);
    180                
     184
    181185
    182186        /*Deal with rifts, they have to be included into one partition only, not several: */
     
    337341                xfree((void**)&model->B);
    338342                xfree((void**)&model->n);
     343
    339344        }
    340345        else{ //        if (strcmp(meshtype,"2d")==0)
     
    563568        ModelFetchData((void**)&model->gridonsurface,NULL,NULL,model_handle,"gridonsurface","Matrix","Mat");
    564569
    565        
     570
    566571        /*Get number of dofs per node: */
    567572        DistributeNumDofs(&node_numdofs,analysis_type);
  • issm/trunk/src/c/ModelProcessorx/Model.cpp

    r308 r347  
    277277
    278278        ModelFetchData((void**)&model->meshtype,NULL,NULL,model_handle,"type","String",NULL);
    279 
    280279        /*!Get numberofelements and numberofnodes: */
    281280        ModelFetchData((void**)&model->numberofnodes,NULL,NULL,model_handle,"numberofgrids","Integer",NULL);
Note: See TracChangeset for help on using the changeset viewer.