Changeset 17118 for issm/trunk-jpl/src/c/classes/Loads/Numericalflux.cpp
- Timestamp:
- 01/15/14 10:59:22 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Loads/Numericalflux.cpp
r16164 r17118 476 476 /*Initialize Element matrix and return if necessary*/ 477 477 Tria* tria=(Tria*)element; 478 if( tria->NoIceInElement()) return NULL;478 if(!tria->IsIceInElement()) return NULL; 479 479 ElementMatrix* Ke=new ElementMatrix(nodes,NUMNODES_INTERNAL,this->parameters); 480 480 … … 540 540 ElementMatrix* Ke = NULL; 541 541 Tria* tria=(Tria*)element; 542 if( tria->NoIceInElement()) return NULL;542 if(!tria->IsIceInElement()) return NULL; 543 543 544 544 /*Retrieve all inputs and parameters*/ … … 629 629 /*Initialize Element matrix and return if necessary*/ 630 630 Tria* tria=(Tria*)element; 631 if( tria->NoIceInElement()) return NULL;631 if(!tria->IsIceInElement()) return NULL; 632 632 ElementMatrix* Ke=new ElementMatrix(nodes,NUMNODES_INTERNAL,this->parameters); 633 633 … … 692 692 ElementMatrix* Ke = NULL; 693 693 Tria* tria=(Tria*)element; 694 if( tria->NoIceInElement()) return NULL;694 if(!tria->IsIceInElement()) return NULL; 695 695 696 696 /*Retrieve all inputs and parameters*/ … … 818 818 ElementVector* pe = NULL; 819 819 Tria* tria=(Tria*)element; 820 if( tria->NoIceInElement()) return NULL;820 if(!tria->IsIceInElement()) return NULL; 821 821 822 822 /*Retrieve all inputs and parameters*/ … … 912 912 ElementVector* pe = NULL; 913 913 Tria* tria=(Tria*)element; 914 if( tria->NoIceInElement()) return NULL;914 if(!tria->IsIceInElement()) return NULL; 915 915 916 916 /*Retrieve all inputs and parameters*/
Note:
See TracChangeset
for help on using the changeset viewer.