Changeset 16990


Ignore:
Timestamp:
12/03/13 09:21:07 (11 years ago)
Author:
Mathieu Morlighem
Message:

BUG: SSAHO supposed to call SSA3d and not SSA

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/analyses/StressbalanceAnalysis.cpp

    r16988 r16990  
    31993199
    32003200        /*compute all stiffness matrices for this element*/
    3201         ElementMatrix* Ke1=CreateKMatrixSSA(element);
     3201        ElementMatrix* Ke1=CreateKMatrixSSA3d(element);
    32023202        ElementMatrix* Ke2=CreateKMatrixHO(element);
    32033203        ElementMatrix* Ke3=CreateKMatrixCouplingSSAHO(element);
    32043204        ElementMatrix* Ke =new ElementMatrix(Ke1,Ke2,Ke3);
     3205
     3206        //Ke2=element->CreateKMatrix();
     3207        //for(int i=0;i<12;i++){
     3208        //      for(int j=0;j<12;j++){
     3209        //              if(Ke->values[i*12+j] != Ke2->values[i*12+j]){
     3210        //                      Ke->Echo();
     3211        //                      Ke2->Echo();
     3212        //                      printf("ID = %i\n",element->Id());
     3213        //                      _error_("S");
     3214        //              }
     3215        //      }
     3216        //}
    32053217
    32063218        /*clean-up and return*/
Note: See TracChangeset for help on using the changeset viewer.