Changeset 5822


Ignore:
Timestamp:
09/15/10 10:34:49 (15 years ago)
Author:
Mathieu Morlighem
Message:

minor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Elements/Tria.cpp

    r5821 r5822  
    28932893void  Tria::CreateKMatrixDiagnosticMacAyealFriction(Mat Kgg,Mat Kff, Mat Kfs){
    28942894       
    2895         const int      numdof         = 2 *NUMVERTICES;
    28962895        double        *Ke_gg_friction = NULL;
    28972896        ElementMatrix *Ke             = NULL;
     
    29012900
    29022901        if(Ke_gg_friction){
    2903 
    2904                 /*Initialize element matrix: */
    29052902                Ke=this->NewElementMatrix(MacAyealApproximationEnum);
    2906 
    2907                 /*Add Ke_gg values to Ke element stifness matrix: */
    29082903                Ke->AddValues(Ke_gg_friction);
    2909        
    2910                 /*Add Ke element stiffness matrix to global stiffness matrix: */
    29112904                Ke->AddToGlobal(Kgg,Kff,Kfs);
    2912        
    2913                 /*Free ressources:*/
    29142905                delete Ke;
    29152906        }
Note: See TracChangeset for help on using the changeset viewer.