Changeset 19637
- Timestamp:
- 10/14/15 14:36:29 (9 years ago)
- Location:
- issm/trunk-jpl/src/c/analyses
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/EnthalpyAnalysis.cpp
r19162 r19637 530 530 531 531 /* Start looping on the number of gaussian points: */ 532 Gauss* gauss=element->NewGauss( 2);532 Gauss* gauss=element->NewGauss(4); 533 533 for(int ig=gauss->begin();ig<gauss->end();ig++){ 534 534 gauss->GaussPoint(ig); … … 648 648 649 649 /* Start looping on the number of gaussian points: */ 650 Gauss* gauss=element->NewGaussBase( 2);650 Gauss* gauss=element->NewGaussBase(4); 651 651 for(int ig=gauss->begin();ig<gauss->end();ig++){ 652 652 gauss->GaussPoint(ig); … … 737 737 738 738 /* Start looping on the number of gaussian points: */ 739 Gauss* gauss=element->NewGauss( 3);739 Gauss* gauss=element->NewGauss(4); 740 740 for(int ig=gauss->begin();ig<gauss->end();ig++){ 741 741 gauss->GaussPoint(ig); … … 844 844 845 845 /* Start looping on the number of gaussian points: */ 846 Gauss* gauss=element->NewGaussBase( 2);847 Gauss* gaussup=element->NewGaussTop( 2);846 Gauss* gauss=element->NewGaussBase(4); 847 Gauss* gaussup=element->NewGaussTop(4); 848 848 for(int ig=gauss->begin();ig<gauss->end();ig++){ 849 849 gauss->GaussPoint(ig); … … 938 938 939 939 /* Start looping on the number of gaussian points: */ 940 Gauss* gauss=element->NewGaussBase( 2);940 Gauss* gauss=element->NewGaussBase(4); 941 941 for(int ig=gauss->begin();ig<gauss->end();ig++){ 942 942 gauss->GaussPoint(ig); -
issm/trunk-jpl/src/c/analyses/ThermalAnalysis.cpp
r19527 r19637 247 247 248 248 /* Start looping on the number of gaussian points: */ 249 Gauss* gauss=element->NewGaussBase( 2);249 Gauss* gauss=element->NewGaussBase(4); 250 250 for(int ig=gauss->begin();ig<gauss->end();ig++){ 251 251 gauss->GaussPoint(ig); … … 313 313 314 314 /* Start looping on the number of gaussian points: */ 315 Gauss* gauss=element->NewGauss( 2);315 Gauss* gauss=element->NewGauss(4); 316 316 for(int ig=gauss->begin();ig<gauss->end();ig++){ 317 317 gauss->GaussPoint(ig); … … 452 452 453 453 /* Start looping on the number of gaussian points: */ 454 Gauss* gauss = element->NewGaussBase( 2);454 Gauss* gauss = element->NewGaussBase(4); 455 455 for(int ig=gauss->begin();ig<gauss->end();ig++){ 456 456 gauss->GaussPoint(ig); … … 511 511 512 512 /* Start looping on the number of gaussian points: */ 513 Gauss* gauss=element->NewGaussBase( 2);513 Gauss* gauss=element->NewGaussBase(4); 514 514 for(int ig=gauss->begin();ig<gauss->end();ig++){ 515 515 gauss->GaussPoint(ig); … … 571 571 572 572 /* Start looping on the number of gaussian points: */ 573 Gauss* gauss=element->NewGauss( 3);573 Gauss* gauss=element->NewGauss(4); 574 574 for(int ig=gauss->begin();ig<gauss->end();ig++){ 575 575 gauss->GaussPoint(ig); … … 714 714 int *doflist = NULL; 715 715 IssmDouble *xyz_list = NULL; 716 bool hack = false;716 bool hack = true; 717 717 718 718 /*Fetch number of nodes and dof for this finite element*/
Note:
See TracChangeset
for help on using the changeset viewer.