Changeset 15970
- Timestamp:
- 08/27/13 12:01:05 (12 years ago)
- Location:
- issm/trunk-jpl/src/c/classes/Elements
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Penta.cpp
r15967 r15970 2779 2779 2780 2780 for(i=0;i<NUMVERTICES;i++){ 2781 if (flags[vertices[i]-> Sid()]<0.){2781 if (flags[vertices[i]->Pid()]<0.){ 2782 2782 shelf=true; 2783 2783 break; … … 11253 11253 nodes[i]->inputs->AddInput(new BoolInput(MaskVertexongroundediceEnum,false)); 11254 11254 } 11255 //else if(migration_style==SoftMigrationEnum && reCast<int,IssmDouble>(sheet_ungrounding[vertices[i]->Sid()])){ 11256 else if(migration_style==SoftMigrationEnum && phi_ungrounding[vertices[i]->Sid()]<0.){ 11255 else if(migration_style==SoftMigrationEnum && phi_ungrounding[vertices[i]->Pid()]<0.){ 11257 11256 s[i] = (1-density)*h[i]; 11258 11257 b[i] = -density*h[i]; … … 11303 11302 if(migration_style==SoftMigrationEnum){ 11304 11303 bed_hydro=-density*h[i]; 11305 //if(phi[i]<0. || bed_hydro<=r[i] || reCast<bool>(sheet_ungrounding[nodes[i]->Sid()])){ 11306 if(phi[i]<0. || bed_hydro<=r[i] || phi_ungrounding[vertices[i]->Sid()]<0.){ 11304 if(phi[i]<0. || bed_hydro<=r[i] || phi_ungrounding[vertices[i]->Pid()]<0.){ 11307 11305 phi[i]=h[i]+r[i]/density; 11308 11306 } … … 11343 11341 if(bed_hydro>r[i]){ 11344 11342 /*Vertex that could potentially unground, flag it*/ 11345 potential_ungrounding->SetValue(vertices[i]-> Sid(),1,INS_VAL);11343 potential_ungrounding->SetValue(vertices[i]->Pid(),1,INS_VAL); 11346 11344 } 11347 11345 } … … 11357 11355 /*Go through nodes, and whoever is on the potential_ungrounding, ends up in nodes_on_iceshelf: */ 11358 11356 for(i=0;i<NUMVERTICES;i++){ 11359 if (reCast<bool,IssmDouble>(vertices_potentially_ungrounding[nodes[i]-> Sid()])){11360 vec_nodes_on_iceshelf->SetValue(vertices[i]-> Sid(),-1.,INS_VAL);11357 if (reCast<bool,IssmDouble>(vertices_potentially_ungrounding[nodes[i]->Pid()])){ 11358 vec_nodes_on_iceshelf->SetValue(vertices[i]->Pid(),-1.,INS_VAL); 11361 11359 11362 11360 /*If node was not on ice shelf, we flipped*/ 11363 if(nodes_on_iceshelf[vertices[i]-> Sid()]>=0.){11361 if(nodes_on_iceshelf[vertices[i]->Pid()]>=0.){ 11364 11362 nflipped++; 11365 11363 } -
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r15967 r15970 1981 1981 1982 1982 for(i=0;i<NUMVERTICES;i++){ 1983 if (flags[vertices[i]-> Sid()]<0.){1983 if (flags[vertices[i]->Pid()]<0.){ 1984 1984 shelf=true; 1985 1985 break; … … 7363 7363 nodes[i]->inputs->AddInput(new BoolInput(MaskVertexongroundediceEnum,false)); 7364 7364 } 7365 //else if(migration_style==SoftMigrationEnum && reCast<bool>(sheet_ungrounding[vertices[i]->Sid()])){ 7366 else if(migration_style==SoftMigrationEnum && phi_ungrounding[vertices[i]->Sid()]<0.){ 7365 else if(migration_style==SoftMigrationEnum && phi_ungrounding[vertices[i]->Pid()]<0.){ 7367 7366 s[i] = (1-density)*h[i]; 7368 7367 b[i] = -density*h[i]; … … 7414 7413 if(migration_style==SoftMigrationEnum){ 7415 7414 bed_hydro=-density*h[i]; 7416 if(phi[i]<0. || bed_hydro<=r[i] || phi_ungrounding[vertices[i]->Sid()]<0.){ 7417 //if(phi[i]<0. || bed_hydro<=r[i] || reCast<bool>(sheet_ungrounding[vertices[i]->Sid()])){ 7415 if(phi[i]<0. || bed_hydro<=r[i] || phi_ungrounding[vertices[i]->Pid()]<0.){ 7418 7416 phi[i]=h[i]+r[i]/density; 7419 7417 } … … 7446 7444 if(bed_hydro>r[i]){ 7447 7445 /*Vertex that could potentially unground, flag it*/ 7448 potential_ungrounding->SetValue(vertices[i]-> Sid(),1,INS_VAL);7446 potential_ungrounding->SetValue(vertices[i]->Pid(),1,INS_VAL); 7449 7447 } 7450 7448 } … … 7460 7458 /*Go through nodes, and whoever is on the potential_ungrounding, ends up in nodes_on_iceshelf: */ 7461 7459 for(i=0;i<3;i++){ 7462 if (reCast<bool>(vertices_potentially_ungrounding[vertices[i]-> Sid()])){7463 vec_nodes_on_iceshelf->SetValue(vertices[i]-> Sid(),-1.,INS_VAL);7460 if (reCast<bool>(vertices_potentially_ungrounding[vertices[i]->Pid()])){ 7461 vec_nodes_on_iceshelf->SetValue(vertices[i]->Pid(),-1.,INS_VAL); 7464 7462 7465 7463 /*If node was not on ice shelf, we flipped*/ 7466 if(nodes_on_iceshelf[vertices[i]-> Sid()]>=0.){7464 if(nodes_on_iceshelf[vertices[i]->Pid()]>=0.){ 7467 7465 nflipped++; 7468 7466 }
Note:
See TracChangeset
for help on using the changeset viewer.