Changeset 11340


Ignore:
Timestamp:
02/07/12 08:02:29 (13 years ago)
Author:
Mathieu Morlighem
Message:

Added Newton for MacAyeal 3d

Location:
issm/trunk-jpl/src/c/objects/Elements
Files:
2 edited

Legend:

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

    r11338 r11340  
    74327432        switch(approximation){
    74337433                case MacAyealApproximationEnum:
    7434                         _error_("Not supported yet");
     7434                        return CreateJacobianDiagnosticMacayeal2d();
    74357435                case PattynApproximationEnum:
    74367436                        return CreateJacobianDiagnosticPattyn();
     
    74407440                        _error_("Approximation %s not supported yet",EnumToStringx(approximation));
    74417441        }
     7442}
     7443/*}}}*/
     7444/*FUNCTION Penta::CreateJacobianDiagnosticMacayeal2d{{{1*/
     7445ElementMatrix* Penta::CreateJacobianDiagnosticMacayeal2d(void){
     7446
     7447        /*Figure out if this penta is collapsed. If so, then bailout, except if it is at the
     7448          bedrock, in which case we spawn a tria element using the 3 first nodes, and use it to build
     7449          the stiffness matrix. */
     7450        if (!IsOnBed()) return NULL;
     7451
     7452        /*Depth Averaging B*/
     7453        this->InputDepthAverageAtBase(MaterialsRheologyBEnum,MaterialsRheologyBbarEnum,MaterialsEnum);
     7454
     7455        /*Call Tria function*/
     7456        Tria* tria=(Tria*)SpawnTria(0,1,2); //nodes 0, 1 and 2 make the new tria.
     7457        ElementMatrix* Ke=tria->CreateJacobianDiagnosticMacayeal();
     7458        delete tria->matice; delete tria;
     7459
     7460        /*Delete B averaged*/
     7461        this->matice->inputs->DeleteInput(MaterialsRheologyBbarEnum);
     7462
     7463        /*clean up and return*/
     7464        return Ke;
    74427465}
    74437466/*}}}*/
  • issm/trunk-jpl/src/c/objects/Elements/Penta.h

    r11338 r11340  
    236236                ElementMatrix* CreateKMatrixDiagnosticVertSurface(void);
    237237                ElementMatrix* CreateJacobianDiagnosticHoriz(void);
     238                ElementMatrix* CreateJacobianDiagnosticMacayeal2d(void);
    238239                ElementMatrix* CreateJacobianDiagnosticPattyn(void);
    239240                ElementMatrix* CreateJacobianDiagnosticStokes(void);
Note: See TracChangeset for help on using the changeset viewer.