Changeset 15970


Ignore:
Timestamp:
08/27/13 12:01:05 (12 years ago)
Author:
seroussi
Message:

BUG: Now use Pid for grounding lines

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  
    27792779
    27802780        for(i=0;i<NUMVERTICES;i++){
    2781                 if (flags[vertices[i]->Sid()]<0.){
     2781                if (flags[vertices[i]->Pid()]<0.){
    27822782                        shelf=true;
    27832783                        break;
     
    1125311253                                        nodes[i]->inputs->AddInput(new BoolInput(MaskVertexongroundediceEnum,false));
    1125411254                                }
    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.){
    1125711256                                        s[i]        = (1-density)*h[i];
    1125811257                                        b[i]        = -density*h[i];
     
    1130311302                if(migration_style==SoftMigrationEnum){
    1130411303                        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.){
    1130711305                                phi[i]=h[i]+r[i]/density;
    1130811306                        }
     
    1134311341                        if(bed_hydro>r[i]){
    1134411342                                /*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);
    1134611344                        }
    1134711345                }
     
    1135711355        /*Go through nodes, and whoever is on the potential_ungrounding, ends up in nodes_on_iceshelf: */
    1135811356        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);
    1136111359
    1136211360                        /*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.){
    1136411362                                nflipped++;
    1136511363                        }
  • issm/trunk-jpl/src/c/classes/Elements/Tria.cpp

    r15967 r15970  
    19811981
    19821982        for(i=0;i<NUMVERTICES;i++){
    1983                 if (flags[vertices[i]->Sid()]<0.){
     1983                if (flags[vertices[i]->Pid()]<0.){
    19841984                        shelf=true;
    19851985                        break;
     
    73637363                                        nodes[i]->inputs->AddInput(new BoolInput(MaskVertexongroundediceEnum,false));
    73647364                                }
    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.){
    73677366                                        s[i]        = (1-density)*h[i];
    73687367                                        b[i]        = -density*h[i];
     
    74147413                if(migration_style==SoftMigrationEnum){
    74157414                        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.){
    74187416                                phi[i]=h[i]+r[i]/density;
    74197417                        }
     
    74467444                        if(bed_hydro>r[i]){
    74477445                                /*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);
    74497447                        }
    74507448                }
     
    74607458        /*Go through nodes, and whoever is on the potential_ungrounding, ends up in nodes_on_iceshelf: */
    74617459        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);
    74647462
    74657463                        /*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.){
    74677465                                nflipped++;
    74687466                        }
Note: See TracChangeset for help on using the changeset viewer.