Changeset 15634
- Timestamp:
- 07/26/13 08:18:34 (12 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Penta.cpp
r15628 r15634 357 357 } 358 358 /*}}}*/ 359 359 /*FUNCTION Penta::Configure {{{*/ 360 360 void Penta::Configure(Elements* elementsin, Loads* loadsin, Nodes* nodesin,Vertices* verticesin, Materials* materialsin, Parameters* parametersin){ 361 361 -
issm/trunk-jpl/src/c/classes/Node.cpp
r15594 r15634 1147 1147 void TransformStiffnessMatrixCoord(ElementMatrix* Ke,Node** nodes,int numnodes,int* cs_array){/*{{{*/ 1148 1148 1149 int i,j; 1150 int numdofs = 0; 1149 int numdofs = 0; 1151 1150 IssmDouble *transform = NULL; 1152 1151 IssmDouble *values = NULL; 1153 1152 1154 1153 /*Get total number of dofs*/ 1155 for(i =0;i<numnodes;i++){1154 for(int i=0;i<numnodes;i++){ 1156 1155 switch(cs_array[i]){ 1157 1156 case XYEnum: numdofs+=2; break; … … 1163 1162 /*Copy current stiffness matrix*/ 1164 1163 values=xNew<IssmDouble>(Ke->nrows*Ke->ncols); 1165 for(i =0;i<Ke->nrows;i++) for(j=0;j<Ke->ncols;j++) values[i*Ke->ncols+j]=Ke->values[i*Ke->ncols+j];1164 for(int i=0;i<Ke->nrows*Ke->ncols;i++) values[i]=Ke->values[i]; 1166 1165 1167 1166 /*Get Coordinate Systems transform matrix*/ -
issm/trunk-jpl/src/c/classes/Nodes.cpp
r15439 r15634 175 175 int Nodes::MaxNumDofs(int analysis_type,int setenum){ 176 176 177 int i;178 177 int max=0; 179 int allmax; 180 int numdofs=0; 178 int allmax,numdofs; 181 179 182 180 /*Now go through all nodes, and get how many dofs they own, unless they are clone nodes: */ 183 for(i =0;i<this->Size();i++){181 for(int i=0;i<this->Size();i++){ 184 182 185 183 Node* node=dynamic_cast<Node*>(this->GetObjectByOffset(i)); … … 198 196 max=allmax; 199 197 #endif 198 199 return max; 200 } 201 /*}}}*/ 202 /*FUNCTION Nodes::MaximymId{{{*/ 203 int Nodes::MaximumId(){ 204 205 int max=-1; 206 int id,allmax; 207 208 /*Now go through all nodes, and get how many dofs they own, unless they are clone nodes: */ 209 if(!sorted){ 210 for(int i=0;i<this->Size();i++){ 211 Node* node=dynamic_cast<Node*>(this->GetObjectByOffset(i)); 212 id=node->Id(); 213 if(id>max)max=id; 214 } 215 } 216 else{ 217 Node* node=dynamic_cast<Node*>(this->GetObjectByOffset(this->Size()-1)); 218 max = node->Id(); 219 } 220 221 /*Grab max of all cpus: */ 222 #ifdef _HAVE_MPI_ 223 MPI_Allreduce((void*)&max,(void*)&allmax,1,MPI_INT,MPI_MAX,IssmComm::GetComm()); 224 max=allmax; 225 #endif 200 226 201 227 return max; -
issm/trunk-jpl/src/c/classes/Nodes.h
r15439 r15634 28 28 void FlagClones(int analysis_type); 29 29 int MaxNumDofs(int analysis_type,int setenum); 30 int MaximumId(void); 30 31 int NumberOfDofs(int analysis_type,int setenum); 31 32 int NumberOfDofsLocal(int analysis_type,int setenum); -
issm/trunk-jpl/src/c/modules/ModelProcessorx/CreateNodes.cpp
r15631 r15634 13 13 /*Intermediaries*/ 14 14 int i,j,counter; 15 int numberofvertices2d;16 15 bool *my_edges = NULL; 17 16 bool *my_nodes = NULL; … … 53 52 } 54 53 55 iomodel->Constant(&numberofvertices2d,MeshNumberofvertices2dEnum); 56 counter = i; 54 counter = iomodel->numberofvertices; 57 55 for(i=0;i<iomodel->numberofedges;i++){ 58 56 if(iomodel->edges[i*3+2]!=2){ -
issm/trunk-jpl/src/c/modules/ModelProcessorx/UpdateCounters.cpp
r15000 r15634 24 24 constraints=*pconstraints; 25 25 26 if(nodes) iomodel->nodecounter=nodes-> NumberOfNodes();26 if(nodes) iomodel->nodecounter=nodes->MaximumId(); 27 27 else iomodel->nodecounter=0; 28 28
Note:
See TracChangeset
for help on using the changeset viewer.