Changeset 18861
- Timestamp:
- 11/25/14 14:30:24 (10 years ago)
- Location:
- issm/trunk-jpl/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Element.cpp
r18857 r18861 1098 1098 else shelf=true; 1099 1099 } 1100 else if(migration_style==NoneEnum || migration_style==AggressiveMigrationEnum || migration_style==SoftMigrationEnum ){ //Floating if all nodes are floating1100 else if(migration_style==NoneEnum || migration_style==AggressiveMigrationEnum || migration_style==SoftMigrationEnum || migration_style==GroundingOnlyEnum){ //Floating if all nodes are floating 1101 1101 if(this->inputs->Min(MaskGroundediceLevelsetEnum) > 0.) shelf=false; 1102 1102 else shelf=true; … … 1233 1233 if(phi[i]>=0.) b[i]=r[i]; 1234 1234 } 1235 else if(migration_style == GroundingOnlyEnum && b[i]<r[i]) b[i]=r[i]; 1235 1236 /*Ice shelf: if bed below bathymetry, impose it at the bathymetry and update surface, elso do nothing */ 1236 1237 else if(phi[i]<=0.){ … … 1255 1256 } 1256 1257 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"); 1258 1259 } 1259 1260 } -
issm/trunk-jpl/src/c/modules/GroundinglineMigrationx/GroundinglineMigrationx.cpp
r18521 r18861 39 39 case SubelementMigrationEnum: 40 40 case SubelementMigration2Enum: 41 case GroundingOnlyEnum: 41 42 /*Nothing additional to do here, MigrateGroundingLine takes care of everything*/ 42 43 break; … … 81 82 serial_vertexgrounded=vertexgrounded->ToMPISerial(); 82 83 serial_vertexfloating=vertexfloating->ToMPISerial(); 83 84 /*find vertices on GL */85 84 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; 98 90 } 99 91 -
issm/trunk-jpl/src/c/shared/Enum/EnumDefinitions.h
r18828 r18861 717 717 SubelementMigration2Enum, 718 718 ContactEnum, 719 GroundingOnlyEnum, 719 720 MaskGroundediceLevelsetEnum, 720 721 /*}}}*/ -
issm/trunk-jpl/src/m/classes/groundingline.m
r18732 r18861 40 40 function md = checkconsistency(obj,md,solution,analyses) % {{{ 41 41 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'}); 43 43 44 44 if ~strcmp(obj.migration,'None'), -
issm/trunk-jpl/src/m/classes/groundingline.py
r18303 r18861 37 37 def checkconsistency(self,md,solution,analyses): # {{{ 38 38 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']) 40 40 41 41 if not m.strcmp(self.migration,'None'):
Note:
See TracChangeset
for help on using the changeset viewer.