Changeset 5873 for issm/trunk


Ignore:
Timestamp:
09/17/10 16:50:44 (15 years ago)
Author:
Mathieu Morlighem
Message:

Added CreateKMatrixDiagnosticMacAyealPattyn

Location:
issm/trunk/src/c/objects
Files:
4 edited

Legend:

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

    r5872 r5873  
    21942194                        break;
    21952195                case MacAyealPattynApproximationEnum:
    2196                         Ke=CreateKMatrixDiagnosticMacAyeal3d();
    2197                         if(Ke) Ke->AddToGlobal(Kgg,NULL,NULL);
    2198                         delete Ke;
    2199                         Ke=CreateKMatrixDiagnosticPattyn();
    2200                         if(Ke) Ke->AddToGlobal(Kgg,NULL,NULL);
    2201                         delete Ke;
    2202                         Ke=CreateKMatrixCouplingMacAyealPattyn();
     2196                        Ke=CreateKMatrixDiagnosticMacAyealPattyn();
    22032197                        if(Ke) Ke->AddToGlobal(Kgg,NULL,NULL);
    22042198                        delete Ke;
    22052199                        break;
     2200
    22062201                case PattynStokesApproximationEnum:
    22072202                        Ke=CreateKMatrixDiagnosticPattyn();
     
    24162411
    24172412        /*clean-up and return*/
     2413        return Ke;
     2414}
     2415/*}}}*/
     2416/*FUNCTION Penta::CreateKMatrixDiagnosticMacAyealPattyn{{{1*/
     2417ElementMatrix* Penta::CreateKMatrixDiagnosticMacAyealPattyn(void){
     2418
     2419        /*compute all stiffness matrices for this element*/
     2420        ElementMatrix* Ke1=CreateKMatrixDiagnosticMacAyeal3d();
     2421        ElementMatrix* Ke2=CreateKMatrixDiagnosticPattyn();
     2422        ElementMatrix* Ke3=CreateKMatrixCouplingMacAyealPattyn();
     2423        ElementMatrix* Ke =new ElementMatrix(Ke1,Ke2,Ke3);
     2424
     2425        /*clean-up and return*/
     2426        delete Ke1;
     2427        delete Ke2;
     2428        delete Ke3;
    24182429        return Ke;
    24192430}
  • issm/trunk/src/c/objects/Elements/Penta.h

    r5872 r5873  
    133133                ElementMatrix* CreateKMatrixDiagnosticMacAyeal3dViscous(void);
    134134                ElementMatrix* CreateKMatrixDiagnosticMacAyeal3dFriction(void);
     135                ElementMatrix* CreateKMatrixDiagnosticMacAyealPattyn(void);
    135136                ElementMatrix* CreateKMatrixDiagnosticPattyn(void);
    136137                ElementMatrix* CreateKMatrixDiagnosticPattynViscous(void);
  • issm/trunk/src/c/objects/Numerics/ElementMatrix.cpp

    r5839 r5873  
    171171        /*clean-up*/
    172172        xfree((void**)&P);
     173}
     174/*}}}*/
     175/*FUNCTION ElementMatrix::ElementMatrix(ElementMatrix* Ke1, ElementMatrix* Ke2,ElementMatrix* Ke3){{{1*/
     176ElementMatrix::ElementMatrix(ElementMatrix* Ke1, ElementMatrix* Ke2,ElementMatrix* Ke3){
     177
     178        /*Concatenate all matrices*/
     179        ElementMatrix* Ke12 =new ElementMatrix(Ke1,Ke2);
     180        ElementMatrix* Ke123=new ElementMatrix(Ke12,Ke3);
     181
     182        /*Initialize current object with this matrix*/
     183        this->Init(Ke123);
     184
     185        /*clean-up*/
     186        delete Ke12;
     187        delete Ke123;
    173188}
    174189/*}}}*/
  • issm/trunk/src/c/objects/Numerics/ElementMatrix.h

    r5831 r5873  
    5151                ElementMatrix();
    5252                ElementMatrix(ElementMatrix* Ke1,ElementMatrix* Ke2);
     53                ElementMatrix(ElementMatrix* Ke1,ElementMatrix* Ke2,ElementMatrix* Ke3);
    5354                ElementMatrix(bool square,int* gglobaldoflist,int gsize);
    5455                ElementMatrix(bool square,int* gglobaldoflist,int gsize,int* flocaldoflist,int* fglobaldoflist,int fsize,int* slocaldoflist,int* sglobaldoflist,int ssize);
Note: See TracChangeset for help on using the changeset viewer.