Changeset 15973
- Timestamp:
- 08/27/13 13:38:33 (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
r15972 r15973 11190 11190 11191 11191 int i,migration_style; 11192 bool oldfloating; 11192 11193 bool floatingelement = false; 11193 11194 bool groundedelement = false; … … 11209 11210 GetInputListOnVertices(&r[0],BathymetryEnum); 11210 11211 GetInputListOnVertices(&phi[0],MaskGroundediceLevelsetEnum); 11211 rho_water = matpar->GetRhoWater(); 11212 rho_ice = matpar->GetRhoIce(); 11213 density = rho_ice/rho_water; 11212 rho_water = matpar->GetRhoWater(); 11213 rho_ice = matpar->GetRhoIce(); 11214 density = rho_ice/rho_water; 11215 oldfloating = this->IsFloating(); //figure out if the element is floating before starting to change everything 11214 11216 11215 11217 /*go through vertices, and update inputs, considering them to be PentaVertex type: */ … … 11282 11284 11283 11285 /*Add basal melting rate if element just ungrounded*/ 11284 if(! this->IsFloating()&& floatingelement==true){11286 if(!oldfloating && floatingelement==true){ 11285 11287 for(i=0;i<NUMVERTICES;i++)melting[i]=gl_melting_rate/yts; 11286 11288 this->inputs->AddInput(new PentaInput(BasalforcingsMeltingRateEnum,&melting[0],P1Enum)); -
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r15972 r15973 7303 7303 7304 7304 int i,migration_style; 7305 bool oldfloating; 7305 7306 bool floatingelement = false; 7306 7307 bool groundedelement = false; … … 7320 7321 GetInputListOnVertices(&r[0],BathymetryEnum); 7321 7322 GetInputListOnVertices(&phi[0],MaskGroundediceLevelsetEnum); 7322 rho_water = matpar->GetRhoWater(); 7323 rho_ice = matpar->GetRhoIce(); 7324 density = rho_ice/rho_water; 7323 rho_water = matpar->GetRhoWater(); 7324 rho_ice = matpar->GetRhoIce(); 7325 density = rho_ice/rho_water; 7326 oldfloating = this->IsFloating(); //figure out if element is floating before we start to change everything 7325 7327 7326 7328 /*go through vertices, and update inputs, considering them to be TriaVertex type: */ … … 7393 7395 7394 7396 /*Add basal melting rate if element just ungrounded*/ 7395 if(! this->IsFloating()&& floatingelement==true){7397 if(!oldfloating && floatingelement==true){ 7396 7398 for(i=0;i<NUMVERTICES;i++)melting[i]=gl_melting_rate/yts; 7397 7399 this->inputs->AddInput(new TriaInput(BasalforcingsMeltingRateEnum,&melting[0],P1Enum));
Note:
See TracChangeset
for help on using the changeset viewer.