Changeset 24120


Ignore:
Timestamp:
08/23/19 17:04:24 (6 years ago)
Author:
tsantos
Message:

BUG: fixed matrix computation for Streamline Upwind stabilization scheme

File:
1 edited

Legend:

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

    r24117 r24120  
    376376                                break;
    377377                        case 2:
     378                                /*Streamline upwinding*/
     379                                element->NodalFunctionsDerivatives(dbasis,xyz_list,gauss);
     380                                vxaverage_input->GetInputAverage(&vx);
    378381                                if(dim==1){
    379382                                        vel=fabs(vx)+1.e-8;
    380                                         D[0]=h/(2*vel)*vx*vx;
    381383                                }
    382384                                else{
    383                                         /*Streamline upwinding*/
     385                                        vyaverage_input->GetInputAverage(&vy);
    384386                                        vel=sqrt(vx*vx+vy*vy)+1.e-8;
    385                                         D[0*dim+0]=h/(2*vel)*vx*vx;
    386                                         D[1*dim+0]=h/(2*vel)*vy*vx;
    387                                         D[0*dim+1]=h/(2*vel)*vx*vy;
    388                                         D[1*dim+1]=h/(2*vel)*vy*vy;
    389387                                }
     388                                tau=h/(2*vel);
    390389                                break;
    391390                        case 5:
     
    403402                                _error_("Stabilization "<<stabilization<<" not supported yet");
    404403                }
    405                 if(stabilization==1 || stabilization==2){
     404                if(stabilization==1){
     405                        /*SSA*/
    406406                        if(dim==1) D[0]=D_scalar*D[0];
    407407                        else{
     
    416416                                                Bprime,dim,numnodes,0,
    417417                                                &Ke->values[0],1);
     418                }
     419                if(stabilization==2){
     420                        /*Streamline upwind*/
     421                        for(int i=0;i<numnodes;i++){
     422                                for(int j=0;j<numnodes;j++){
     423                                        Ke->values[i*numnodes+j]+=dt*gauss->weight*Jdet*tau*(vx*dbasis[0*numnodes+i]+vy*dbasis[1*numnodes+i])*(vx*dbasis[0*numnodes+j]+vy*dbasis[1*numnodes+j]);
     424                                }
     425                        }
    418426                }
    419427                if(stabilization==5){/*{{{*/
Note: See TracChangeset for help on using the changeset viewer.