Ignore:
Timestamp:
11/21/13 16:46:58 (11 years ago)
Author:
seroussi
Message:

CHG: added SSA friction KMatrix in analysis

File:
1 edited

Legend:

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

    r16866 r16872  
    974974        return Ke;
    975975}/*}}}*/
     976ElementMatrix* StressbalanceAnalysis::CreateKMatrixSSAFriction(Element* element){/*{{{*/
     977        /*Intermediaries*/
     978        bool       mainlyfloating;
     979        int        analysis_type,migration_style,point1;
     980        IssmDouble alpha2,Jdet,fraction1,fraction2;
     981        IssmDouble phi=1.0;
     982        IssmDouble D_scalar,gllevelset;
     983        IssmDouble *xyz_list = NULL;
     984        Friction   *friction = NULL;
     985        Gauss*     gauss     = NULL;
     986
     987        /*Return if element is inactive*/
     988        if(element->IsFloating()) return NULL;
     989
     990        /*Fetch number of nodes and dof for this finite element*/
     991        int numnodes = element->GetNumberOfNodes();
     992        int numdof   = numnodes*2;
     993
     994        /*Initialize Element matrix and vectors*/
     995        ElementMatrix* Ke     = element->NewElementMatrix(SSAApproximationEnum);
     996        IssmDouble*    B      = xNew<IssmDouble>(2*numdof);
     997        IssmDouble*    D      = xNewZeroInit<IssmDouble>(2*2);
     998
     999        /*Retrieve all inputs and parameters*/
     1000        element->GetVerticesCoordinates(&xyz_list);
     1001        element->FindParam(&migration_style,GroundinglineMigrationEnum);
     1002        Input* surface_input=element->GetInput(SurfaceEnum); _assert_(surface_input);
     1003        Input* vx_input=element->GetInput(VxEnum);           _assert_(vx_input);
     1004        Input* vy_input=element->GetInput(VyEnum);           _assert_(vy_input);
     1005        Input* gllevelset_input=NULL;
     1006        element->FindParam(&analysis_type,AnalysisTypeEnum);
     1007
     1008        /*build friction object, used later on: */
     1009        //friction=new Friction("2d",inputs,matpar,analysis_type);
     1010
     1011        /*Recover portion of element that is grounded*/
     1012        if(migration_style==SubelementMigrationEnum) phi=element->GetGroundedPortion(xyz_list);
     1013        if(migration_style==SubelementMigration2Enum){
     1014                gllevelset_input=element->GetInput(MaskGroundediceLevelsetEnum); _assert_(gllevelset_input);
     1015                element->GetGroundedPart(&point1,&fraction1,&fraction2,&mainlyfloating);
     1016           gauss = element->NewGauss(point1,fraction1,fraction2,mainlyfloating,2);
     1017        }
     1018        else{
     1019                gauss = element->NewGauss(2);
     1020        }
     1021
     1022        /* Start  looping on the number of gaussian points: */
     1023        for(int ig=gauss->begin();ig<gauss->end();ig++){
     1024
     1025                gauss->GaussPoint(ig);
     1026
     1027                //friction->GetAlpha2(&alpha2, gauss,VxEnum,VyEnum,VzEnum);
     1028                alpha2=1.0;
     1029                if(migration_style==SubelementMigrationEnum) alpha2=phi*alpha2;
     1030                if(migration_style==SubelementMigration2Enum){
     1031                        gllevelset_input->GetInputValue(&gllevelset, gauss);
     1032                        if(gllevelset<0) alpha2=0;
     1033                }
     1034
     1035                this->GetBSSAFriction(B, element, xyz_list, gauss);
     1036                element->JacobianDeterminant(&Jdet, xyz_list,gauss);
     1037                D_scalar=alpha2*gauss->weight*Jdet;
     1038                for(int i=0;i<2;i++) D[i*2+i]=D_scalar;
     1039
     1040                TripleMultiply(B,2,numdof,1,
     1041                                        D,2,2,0,
     1042                                        B,2,numdof,0,
     1043                                        &Ke->values[0],1);
     1044        }
     1045
     1046        /*Transform Coordinate System*/
     1047        element->TransformStiffnessMatrixCoord(Ke,XYEnum);
     1048
     1049        /*Clean up and return*/
     1050        delete gauss;
     1051        delete friction;
     1052        xDelete<IssmDouble>(xyz_list);
     1053        xDelete<IssmDouble>(D);
     1054        xDelete<IssmDouble>(B);
     1055        return Ke;
     1056}/*}}}*/
    9761057ElementMatrix* StressbalanceAnalysis::CreateKMatrixSSAViscous(Element* element){/*{{{*/
    9771058
     
    10341115        xDelete<IssmDouble>(B);
    10351116        return Ke;
    1036 }/*}}}*/
    1037 ElementMatrix* StressbalanceAnalysis::CreateKMatrixSSAFriction(Element* element){/*{{{*/
    1038         return NULL;
    10391117}/*}}}*/
    10401118ElementVector* StressbalanceAnalysis::CreatePVectorSSA(Element* element){/*{{{*/
     
    12071285        /*Clean-up*/
    12081286        xDelete<IssmDouble>(dbasis);
     1287}/*}}}*/
     1288void StressbalanceAnalysis::GetBSSAFriction(IssmDouble* B,Element* element,IssmDouble* xyz_list,Gauss* gauss){/*{{{*/
     1289        /*Compute B  matrix. B=[B1 B2 B3] where Bi is square and of size 2.
     1290         * For node i, Bi can be expressed in the actual coordinate system
     1291         * by:
     1292         *                 Bi=[ N   0 ]
     1293         *                    [ 0   N ]
     1294         * where N is the finiteelement function for node i.
     1295         *
     1296         * We assume B has been allocated already, of size: 2 x (numdof*numnodes)
     1297         */
     1298
     1299        /*Fetch number of nodes for this finite element*/
     1300        int numnodes = element->GetNumberOfNodes();
     1301
     1302        /*Get nodal functions derivatives*/
     1303        IssmDouble* basis=xNew<IssmDouble>(numnodes);
     1304        element->NodalFunctions(basis,gauss);
     1305
     1306        /*Build L: */
     1307        for(int i=0;i<numnodes;i++){
     1308                B[2*numnodes*0+2*i+0] = basis[i];
     1309                B[2*numnodes*0+2*i+1] = 0.;
     1310                B[2*numnodes*1+2*i+0] = 0.;
     1311                B[2*numnodes*1+2*i+1] = basis[i];
     1312        }
     1313
     1314        /*Clean-up*/
     1315        xDelete<IssmDouble>(basis);
    12091316}/*}}}*/
    12101317void StressbalanceAnalysis::GetBSSAprime(IssmDouble* Bprime,Element* element,IssmDouble* xyz_list,Gauss* gauss){/*{{{*/
Note: See TracChangeset for help on using the changeset viewer.