Changeset 18861


Ignore:
Timestamp:
11/25/14 14:30:24 (10 years ago)
Author:
hongjuy
Message:

Adding GroundingOnlyEnum for groundingline migration

Location:
issm/trunk-jpl/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Elements/Element.cpp

    r18857 r18861  
    10981098                else shelf=true;
    10991099        }
    1100         else if(migration_style==NoneEnum || migration_style==AggressiveMigrationEnum || migration_style==SoftMigrationEnum){ //Floating if all nodes are floating
     1100        else if(migration_style==NoneEnum || migration_style==AggressiveMigrationEnum || migration_style==SoftMigrationEnum || migration_style==GroundingOnlyEnum){ //Floating if all nodes are floating
    11011101                if(this->inputs->Min(MaskGroundediceLevelsetEnum) > 0.) shelf=false;
    11021102                else shelf=true;
     
    12331233                        if(phi[i]>=0.) b[i]=r[i];
    12341234                }
     1235                else if(migration_style == GroundingOnlyEnum && b[i]<r[i]) b[i]=r[i];
    12351236                /*Ice shelf: if bed below bathymetry, impose it at the bathymetry and update surface, elso do nothing */
    12361237                else if(phi[i]<=0.){
     
    12551256                                }
    12561257                                else{
    1257                                         if(migration_style!=SoftMigrationEnum) _error_("Error: migration should be Aggressive, Soft or Subelement");
     1258                                        if(migration_style!=SoftMigrationEnum && migration_style!=ContactEnum && migration_style!=GroundingOnlyEnum) _error_("Error: migration should be Aggressive, Soft, Subelement, Contact or GroundingOnly");
    12581259                                }
    12591260                        }
  • issm/trunk-jpl/src/c/modules/GroundinglineMigrationx/GroundinglineMigrationx.cpp

    r18521 r18861  
    3939                case SubelementMigrationEnum:
    4040                case SubelementMigration2Enum:
     41                case GroundingOnlyEnum:
    4142                        /*Nothing additional to do here, MigrateGroundingLine takes care of everything*/
    4243                        break;
     
    8182        serial_vertexgrounded=vertexgrounded->ToMPISerial();
    8283        serial_vertexfloating=vertexfloating->ToMPISerial();
    83 
    84         /*find vertices on GL */
    8584        for(int i=0;i<numberofvertices;i++){
    86                 if(serial_vertexgrounded[i]==1. && serial_vertexfloating[i]==1.){
    87                         phi[i]=0.;
    88                 }
    89                 else if(serial_vertexgrounded[i]==1.){
    90                         phi[i]=1.;
    91                 }
    92                 else if(serial_vertexfloating[i]==1.){
    93                         phi[i]=-1.;
    94                 }
    95                 else{
    96                         phi[i]=9999.;
    97                 }
     85                        if (serial_vertexgrounded[i]==1. && serial_vertexfloating[i]==1.) phi[i]=0.;
     86                        else if (serial_vertexgrounded[i]==1) phi[i]=1;
     87                        else if (serial_vertexfloating[i]==1) phi[i]=-1;
     88                        else if (serial_vertexgrounded[i]>10) phi[i]=9999;
     89                        else phi[i]=-9999;
    9890        }
    9991
  • issm/trunk-jpl/src/c/shared/Enum/EnumDefinitions.h

    r18828 r18861  
    717717        SubelementMigration2Enum,
    718718        ContactEnum,
     719        GroundingOnlyEnum,
    719720        MaskGroundediceLevelsetEnum,
    720721        /*}}}*/
  • issm/trunk-jpl/src/m/classes/groundingline.m

    r18732 r18861  
    4040                function md = checkconsistency(obj,md,solution,analyses) % {{{
    4141
    42                         md = checkfield(md,'fieldname','groundingline.migration','values',{'None' 'AggressiveMigration' 'SoftMigration' 'SubelementMigration' 'SubelementMigration2' 'Contact' 'None'});
     42                        md = checkfield(md,'fieldname','groundingline.migration','values',{'None' 'AggressiveMigration' 'SoftMigration' 'SubelementMigration' 'SubelementMigration2' 'Contact' 'None' 'GroundingOnly'});
    4343
    4444                        if ~strcmp(obj.migration,'None'),
  • issm/trunk-jpl/src/m/classes/groundingline.py

    r18303 r18861  
    3737        def checkconsistency(self,md,solution,analyses):    # {{{
    3838
    39                 md = checkfield(md,'fieldname','groundingline.migration','values',['None','AggressiveMigration','SoftMigration','SubelementMigration','SubelementMigration2','Contact'])
     39                md = checkfield(md,'fieldname','groundingline.migration','values',['None','AggressiveMigration','SoftMigration','SubelementMigration','SubelementMigration2','Contact','GroundingOnly'])
    4040
    4141                if not m.strcmp(self.migration,'None'):
Note: See TracChangeset for help on using the changeset viewer.