Changeset 26684
- Timestamp:
- 12/01/21 12:19:06 (3 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
r26653 r26684 2190 2190 Element::GetInputListOnVertices(&lsf[0],MaskIceLevelsetEnum); 2191 2191 /*Deal with partially ice-covered elements*/ 2192 if( false && (lsf[0]*lsf[1]<=0 || lsf[0]*lsf[2]<=0 || lsf[1]*lsf[2]<=0)){2192 if(lsf[0]*lsf[1]<=0 || lsf[0]*lsf[2]<=0 || lsf[1]*lsf[2]<=0){ 2193 2193 bool istrapneg; 2194 2194 int point; … … 4404 4404 /*Now get the average SMB over the element*/ 4405 4405 Element::GetInputListOnVertices(&lsf[0],MaskIceLevelsetEnum); 4406 if( false && (lsf[0]*lsf[1]<=0 || lsf[0]*lsf[2]<=0 || lsf[1]*lsf[2]<=0)){4406 if(lsf[0]*lsf[1]<=0 || lsf[0]*lsf[2]<=0 || lsf[1]*lsf[2]<=0){ 4407 4407 /*Partially ice-covered element*/ 4408 4408 bool mainlyice; -
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r26653 r26684 3549 3549 Element::GetInputListOnVertices(&lsf[0],MaskIceLevelsetEnum); 3550 3550 /*Deal with partially ice-covered elements*/ 3551 if( false && (lsf[0]*lsf[1]<=0 || lsf[0]*lsf[2]<=0 || lsf[1]*lsf[2]<=0)){3551 if(lsf[0]*lsf[1]<=0 || lsf[0]*lsf[2]<=0 || lsf[1]*lsf[2]<=0){ 3552 3552 bool istrapneg; 3553 3553 int point; … … 5496 5496 /*Now get the average SMB over the element*/ 5497 5497 Element::GetInputListOnVertices(&lsf[0],MaskIceLevelsetEnum); 5498 if( false && (lsf[0]*lsf[1]<=0 || lsf[0]*lsf[2]<=0 || lsf[1]*lsf[2]<=0)){5498 if(lsf[0]*lsf[1]<=0 || lsf[0]*lsf[2]<=0 || lsf[1]*lsf[2]<=0){ 5499 5499 /*Partially ice-covered element*/ 5500 5500 bool mainlyice;
Note:
See TracChangeset
for help on using the changeset viewer.