Changeset 6237
- Timestamp:
- 10/11/10 11:46:14 (14 years ago)
- Location:
- issm/trunk/src/c/modules/ModelProcessorx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/modules/ModelProcessorx/Balancedvelocities/CreateConstraintsBalancedvelocities.cpp
r4236 r6237 34 34 for (i=0;i<iomodel->numberofvertices;i++){ 35 35 /*keep only this partition's nodes:*/ 36 if((iomodel->my_vertices[i] ==1)){36 if((iomodel->my_vertices[i])){ 37 37 38 38 if ((int)iomodel->spcvelocity[6*i+0] && (int)iomodel->spcvelocity[6*i+1]){ //spc if vx and vy are constrained … … 43 43 count++; 44 44 } 45 } //if((my_vertices[i] ==1))45 } //if((my_vertices[i])) 46 46 } 47 47 -
issm/trunk/src/c/modules/ModelProcessorx/Prognostic/CreateConstraintsPrognostic.cpp
r4739 r6237 39 39 for (i=0;i<iomodel->numberofvertices;i++){ 40 40 /*keep only this partition's nodes:*/ 41 if((iomodel->my_vertices[i] ==1)){41 if((iomodel->my_vertices[i])){ 42 42 43 43 if ((int)iomodel->spcthickness[2*i]){ … … 46 46 count++; 47 47 } 48 } //if((my_vertices[i] ==1))48 } //if((my_vertices[i])) 49 49 } 50 50 -
issm/trunk/src/c/modules/ModelProcessorx/Thermal/CreateConstraintsThermal.cpp
r4236 r6237 39 39 for (i=0;i<iomodel->numberofvertices;i++){ 40 40 /*keep only this partition's nodes:*/ 41 if((iomodel->my_vertices[i] ==1)){41 if((iomodel->my_vertices[i])){ 42 42 43 43 if ((int)iomodel->spctemperature[2*i]){
Note:
See TracChangeset
for help on using the changeset viewer.