Changeset 24120
- Timestamp:
- 08/23/19 17:04:24 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/MasstransportAnalysis.cpp
r24117 r24120 376 376 break; 377 377 case 2: 378 /*Streamline upwinding*/ 379 element->NodalFunctionsDerivatives(dbasis,xyz_list,gauss); 380 vxaverage_input->GetInputAverage(&vx); 378 381 if(dim==1){ 379 382 vel=fabs(vx)+1.e-8; 380 D[0]=h/(2*vel)*vx*vx;381 383 } 382 384 else{ 383 /*Streamline upwinding*/385 vyaverage_input->GetInputAverage(&vy); 384 386 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;389 387 } 388 tau=h/(2*vel); 390 389 break; 391 390 case 5: … … 403 402 _error_("Stabilization "<<stabilization<<" not supported yet"); 404 403 } 405 if(stabilization==1 || stabilization==2){ 404 if(stabilization==1){ 405 /*SSA*/ 406 406 if(dim==1) D[0]=D_scalar*D[0]; 407 407 else{ … … 416 416 Bprime,dim,numnodes,0, 417 417 &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 } 418 426 } 419 427 if(stabilization==5){/*{{{*/
Note:
See TracChangeset
for help on using the changeset viewer.