Changeset 16974


Ignore:
Timestamp:
11/29/13 10:27:02 (11 years ago)
Author:
Mathieu Morlighem
Message:

CHG: made Gauss point similar in element and analyses

Location:
issm/trunk-jpl
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Elements/Penta.cpp

    r16956 r16974  
    77357735
    77367736        /* Start  looping on the number of gaussian points: */
    7737         gauss=new GaussPenta(0,1,2,2);
     7737        gauss=new GaussPenta(0,1,2,3);
    77387738        for(int ig=gauss->begin();ig<gauss->end();ig++){
    77397739
     
    88418841
    88428842        /* Start looping on the number of gauss 2d (nodes on the bedrock) */
    8843         gauss=new GaussPenta(0,1,2,2);
     8843        gauss=new GaussPenta(0,1,2,5);
    88448844        for(int ig=gauss->begin();ig<gauss->end();ig++){
    88458845
  • issm/trunk-jpl/src/c/classes/Elements/Tria.cpp

    r16954 r16974  
    36003600
    36013601        /* Start looping on the number of gauss 1d (nodes on the bedrock) */
    3602         GaussTria* gauss=new GaussTria(indices[0],indices[1],2);
     3602        GaussTria* gauss=new GaussTria(indices[0],indices[1],3);
    36033603        for(int ig=gauss->begin();ig<gauss->end();ig++){
    36043604
     
    40124012
    40134013        /* Start looping on the number of gauss 1d (nodes on the bedrock) */
    4014         GaussTria* gauss=new GaussTria(indices[0],indices[1],2);
     4014        GaussTria* gauss=new GaussTria(indices[0],indices[1],5);
    40154015        for(int ig=gauss->begin();ig<gauss->end();ig++){
    40164016
Note: See TracChangeset for help on using the changeset viewer.