Changeset 20213
- Timestamp:
- 02/18/16 17:22:51 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/EnthalpyAnalysis.cpp
r20155 r20213 249 249 if(!element->IsIceInElement()) return; 250 250 251 /* Only update Constraints at the base of grounded ice*/252 if(!(element->IsOnBase()) || element->IsFloating()) return;251 /* Only update constraints at the base. */ 252 if(!(element->IsOnBase())) return; 253 253 254 254 /*Intermediary*/ … … 1208 1208 void EnthalpyAnalysis::GetBasalConstraints(Vector<IssmDouble>* vec_spc,Element* element){/*{{{*/ 1209 1209 1210 /* Check if ice in element */1211 if(!element->IsIceInElement()) return;1212 1213 /* Only update Constraints at the base of grounded ice*/1214 if(!(element->IsOnBase()) || element->IsFloating()) return;1215 1216 1210 /*Intermediary*/ 1217 1211 bool isdynamicbasalspc; … … 1235 1229 if(!element->IsIceInElement()) return; 1236 1230 1237 /* Only update Constraints at the base of grounded ice*/ 1231 /* Only update constraints at the base. 1232 * Floating ice is not affected by basal BC decision chart. */ 1238 1233 if(!(element->IsOnBase()) || element->IsFloating()) return; 1239 1234 … … 1305 1300 if(!element->IsIceInElement()) return; 1306 1301 1307 /* Only update Constraints at the base of grounded ice*/ 1302 /* Only update constraints at the base. 1303 * Floating ice is not affected by basal BC decision chart.*/ 1308 1304 if(!(element->IsOnBase()) || element->IsFloating()) return; 1309 1305
Note:
See TracChangeset
for help on using the changeset viewer.