Changeset 5849 for issm/trunk
- Timestamp:
- 09/16/10 14:26:44 (15 years ago)
- Location:
- issm/trunk/src/c
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Elements/Penta.cpp
r5848 r5849 2200 2200 break; 2201 2201 case PattynApproximationEnum: 2202 CreateKMatrixDiagnosticPattyn( Kgg); 2202 Ke=CreateKMatrixDiagnosticPattyn(); 2203 if(Ke) Ke->AddToGlobal(Kgg,NULL,NULL); 2204 delete Ke; 2203 2205 break; 2204 2206 case StokesApproximationEnum: … … 2211 2213 case MacAyealPattynApproximationEnum: 2212 2214 CreateKMatrixDiagnosticMacAyeal3d( Kgg); 2213 CreateKMatrixDiagnosticPattyn( Kgg); 2214 CreateKMatrixCouplingMacAyealPattyn( Kgg); 2215 Ke=CreateKMatrixDiagnosticPattyn(); 2216 if(Ke) Ke->AddToGlobal(Kgg,NULL,NULL); 2217 delete Ke; 2218 CreateKMatrixCouplingMacAyealPattyn(Kgg); 2215 2219 break; 2216 2220 case PattynStokesApproximationEnum: 2217 CreateKMatrixDiagnosticPattyn( Kgg); 2221 Ke=CreateKMatrixDiagnosticPattyn(); 2222 if(Ke) Ke->AddToGlobal(Kgg,NULL,NULL); 2223 delete Ke; 2218 2224 CreateKMatrixDiagnosticStokes( Kgg); 2219 2225 CreateKMatrixCouplingPattynStokes( Kgg); … … 2415 2421 /*}}}*/ 2416 2422 /*FUNCTION Penta::CreateKMatrixDiagnosticPattyn{{{1*/ 2417 void Penta::CreateKMatrixDiagnosticPattyn( Mat Kgg){ 2423 ElementMatrix* Penta::CreateKMatrixDiagnosticPattyn(void){ 2424 2425 /*compute all stiffness matrices for this element*/ 2426 ElementMatrix* Ke1=CreateKMatrixDiagnosticPattynViscous(); 2427 ElementMatrix* Ke2=CreateKMatrixDiagnosticPattynFriction(); 2428 ElementMatrix* Ke =new ElementMatrix(Ke1,Ke2); 2429 2430 /*clean-up and return*/ 2431 delete Ke1; 2432 delete Ke2; 2433 return Ke; 2434 } 2435 /*}}}*/ 2436 /*FUNCTION Penta::CreateKMatrixDiagnosticPattynViscous{{{1*/ 2437 ElementMatrix* Penta::CreateKMatrixDiagnosticPattynViscous(void){ 2418 2438 2419 2439 /* local declarations */ 2420 int i,j;2421 2422 /* node data: */2423 2440 const int numdof=2*NUMVERTICES; 2441 int i,j,ig; 2424 2442 double xyz_list[NUMVERTICES][3]; 2425 int* doflist=NULL;2426 2427 /* 3d gaussian points: */2428 int ig;2429 2443 GaussPenta *gauss=NULL; 2430 2431 /* material data: */2432 2444 double viscosity; //viscosity 2433 2445 double oldviscosity; //viscosity 2434 2446 double newviscosity; //viscosity 2435 2436 /* strain rate: */ 2447 double viscosity_overshoot; 2437 2448 double epsilon[5]; /* epsilon=[exx,eyy,exy,exz,eyz];*/ 2438 2449 double oldepsilon[5]; /* epsilon=[exx,eyy,exy,exz,eyz];*/ 2439 2440 /* matrices: */2441 2450 double B[5][numdof]; 2442 2451 double Bprime[5][numdof]; … … 2446 2455 double DL[2][2]={0.0}; //for basal drag 2447 2456 double DL_scalar; 2448 2449 /* local element matrices: */2450 2457 double Ke_gg[numdof][numdof]={0.0}; //local element stiffness matrix 2451 2458 double Ke_gg_gaussian[numdof][numdof]; //stiffness matrix evaluated at the gaussian point. 2452 2459 double Jdet; 2453 2454 /*slope: */2455 2460 double slope[2]={0.0}; 2456 2461 double slope_magnitude; 2457 2458 /*friction: */2459 2462 double alpha2_list[3]; 2460 2463 double alpha2; 2461 2462 2464 double MAXSLOPE=.06; // 6 % 2463 2465 double MOUNTAINKEXPONENT=10; 2464 2465 /*parameters: */2466 double viscosity_overshoot;2467 2468 /*Collapsed formulation: */2469 2466 Tria* tria=NULL; 2470 2467 2471 /*retrieve some parameters: */ 2468 /*Initialize Element matrix and return if necessary*/ 2469 if(IsOnWater()) return NULL; 2470 ElementMatrix* Ke=this->NewElementMatrix(PattynApproximationEnum); 2471 2472 /*Retrieve all inputs and parameters*/ 2473 GetVerticesCoordinates(&xyz_list[0][0], nodes, NUMVERTICES); 2472 2474 this->parameters->FindParam(&viscosity_overshoot,ViscosityOvershootEnum); 2473 2474 /*If on water, skip stiffness: */2475 if(IsOnWater())return;2476 2477 /*Implement standard penta element: */2478 2479 /* Get node coordinates and dof list: */2480 GetVerticesCoordinates(&xyz_list[0][0], nodes, NUMVERTICES);2481 GetDofList(&doflist,PattynApproximationEnum,GsetEnum);2482 2483 /*Retrieve all inputs we will be needing: */2484 2475 Input* vx_input=inputs->GetInput(VxEnum); ISSMASSERT(vx_input); 2485 2476 Input* vy_input=inputs->GetInput(VyEnum); ISSMASSERT(vy_input); … … 2493 2484 gauss->GaussPoint(ig); 2494 2485 2495 /*Get strain rate from velocity: */2496 2486 this->GetStrainRate3dPattyn(&epsilon[0],&xyz_list[0][0],gauss,vx_input,vy_input); 2497 2487 this->GetStrainRate3dPattyn(&oldepsilon[0],&xyz_list[0][0],gauss,vxold_input,vyold_input); 2498 2499 /*Get viscosity: */2500 2488 matice->GetViscosity3d(&viscosity, &epsilon[0]); 2501 2489 matice->GetViscosity3d(&oldviscosity, &oldepsilon[0]); 2502 2490 2503 /*Get B and Bprime matrices: */2504 2491 GetBPattyn(&B[0][0], &xyz_list[0][0], gauss); 2505 2492 GetBprimePattyn(&Bprime[0][0], &xyz_list[0][0], gauss); 2506 2493 2507 /* Get Jacobian determinant: */2508 2494 GetJacobianDeterminant(&Jdet, &xyz_list[0][0],gauss); 2509 2510 /*Build the D matrix: we plug the gaussian weight, the viscosity, and the jacobian determinant2511 onto this scalar matrix, so that we win some computational time: */2512 2495 2513 2496 newviscosity=viscosity+viscosity_overshoot*(viscosity-oldviscosity); … … 2515 2498 for (i=0;i<5;i++) D[i][i]=D_scalar; 2516 2499 2517 /* Do the triple product tB*D*Bprime: */2518 2500 TripleMultiply( &B[0][0],5,numdof,1, 2519 2501 &D[0][0],5,5,0, … … 2521 2503 &Ke_gg_gaussian[0][0],0); 2522 2504 2523 /* Add the Ke_gg_gaussian, and optionally Ke_gg_gaussian onto Ke_gg: */ 2524 for(i=0;i<numdof;i++) for(j=0;j<numdof;j++) Ke_gg[i][j]+=Ke_gg_gaussian[i][j]; 2525 } 2526 2527 2528 /*Add Ke_gg to global matrix Kgg: */ 2529 MatSetValues(Kgg,numdof,doflist,numdof,doflist,(const double*)Ke_gg,ADD_VALUES); 2530 2531 //Deal with 2d friction at the bedrock interface 2532 if(IsOnBed() && !IsOnShelf()){ 2533 /*Build a tria element using the 3 grids of the base of the penta. Then use 2534 * the tria functionality to build a friction stiffness matrix on these 3 2535 * grids: */ 2536 2537 tria=(Tria*)SpawnTria(0,1,2); //grids 0, 1 and 2 make the new tria. 2538 tria->CreateKMatrixDiagnosticPattynFriction(Kgg); 2539 delete tria->matice; delete tria; 2505 for(i=0;i<numdof;i++) for(j=0;j<numdof;j++) Ke->values[i*numdof+j]+=Ke_gg_gaussian[i][j]; 2540 2506 } 2541 2507 2542 2508 /*Clean up and return*/ 2543 2509 delete gauss; 2544 xfree((void**)&doflist); 2510 return Ke; 2511 } 2512 /*}}}*/ 2513 /*FUNCTION Penta::CreateKMatrixDiagnosticPattynFriction{{{1*/ 2514 ElementMatrix* Penta::CreateKMatrixDiagnosticPattynFriction(void){ 2515 2516 /*Initialize Element matrix and return if necessary*/ 2517 if(IsOnWater() || IsOnShelf() || !IsOnBed()) return NULL; 2518 2519 /*Build a tria element using the 3 grids of the base of the penta. Then use 2520 * the tria functionality to build a friction stiffness matrix on these 3 2521 * grids: */ 2522 Tria* tria=(Tria*)SpawnTria(0,1,2); //grids 0, 1 and 2 make the new tria. 2523 ElementMatrix* Ke=tria->CreateKMatrixDiagnosticPattynFriction(); 2524 delete tria->matice; delete tria; 2525 2526 /*clean-up and return*/ 2527 return Ke; 2545 2528 } 2546 2529 /*}}}*/ … … 4084 4067 /*First, figure out size of doflist: */ 4085 4068 numdof=0; 4086 for(i=0;i< 3;i++){4069 for(i=0;i<NUMVERTICES;i++){ 4087 4070 ndof_list[i]=nodes[i]->GetNumberOfDofs(approximation_enum,setenum); 4088 4071 numdof+=ndof_list[i]; … … 4095 4078 /*Populate: */ 4096 4079 count=0; 4097 for(i=0;i< 3;i++){4080 for(i=0;i<NUMVERTICES;i++){ 4098 4081 nodes[i]->GetDofList(&doflist[count],approximation_enum,setenum); 4099 4082 count+=ndof_list[i]; -
issm/trunk/src/c/objects/Elements/Penta.h
r5848 r5849 129 129 ElementMatrix* CreateKMatrixDiagnosticMacAyeal2d(void); 130 130 void CreateKMatrixDiagnosticMacAyeal3d(Mat Kgg); 131 void CreateKMatrixDiagnosticPattyn( Mat Kgg); 131 ElementMatrix* CreateKMatrixDiagnosticPattyn(void); 132 ElementMatrix* CreateKMatrixDiagnosticPattynViscous(void); 133 ElementMatrix* CreateKMatrixDiagnosticPattynFriction(void); 132 134 void CreateKMatrixDiagnosticStokes( Mat Kgg); 133 135 void CreateKMatrixDiagnosticVert( Mat Kgg); -
issm/trunk/src/c/objects/Elements/Tria.cpp
r5844 r5849 2978 2978 /*}}}*/ 2979 2979 /*FUNCTION Tria::CreateKMatrixDiagnosticPattynFriction {{{1*/ 2980 void Tria::CreateKMatrixDiagnosticPattynFriction(Mat Kgg){2981 2982 /* local declarations */2980 ElementMatrix* Tria::CreateKMatrixDiagnosticPattynFriction(void){ 2981 2982 const int numdof = NDOF2*NUMVERTICES; 2983 2983 int i,j; 2984 int ig; 2984 2985 int analysis_type; 2985 2986 /* node data: */2987 const int numdof = 2 *NUMVERTICES;2988 2986 double xyz_list[NUMVERTICES][3]; 2989 int* doflist=NULL;2990 2987 int numberofdofspernode=2; 2991 2992 /* gaussian points: */2993 int ig;2994 2988 GaussTria *gauss=NULL; 2995 2996 /* matrices: */2997 2989 double L[2][numdof]; 2998 2990 double DL[2][2]={{ 0,0 },{0,0}}; //for basal drag 2999 2991 double DL_scalar; 3000 3001 /* local element matrices: */3002 2992 double Ke_gg[numdof][numdof]={0.0}; 3003 2993 double Ke_gg_gaussian[numdof][numdof]; //stiffness matrix contribution from drag 3004 3005 2994 double Jdet; 3006 3007 /*slope: */3008 2995 double slope[2]={0.0,0.0}; 3009 2996 double slope_magnitude; 3010 3011 /*friction: */3012 2997 Friction *friction = NULL; 3013 2998 double alpha2; 3014 3015 2999 double MAXSLOPE=.06; // 6 % 3016 3000 double MOUNTAINKEXPONENT=10; 3017 3018 /*inputs: */3019 3001 int drag_type; 3020 3002 3021 /*retrive parameters: */ 3003 /*Initialize Element matrix and return if necessary*/ 3004 if(IsOnWater() || IsOnShelf()) return NULL; 3005 ElementMatrix* Ke=this->NewElementMatrix(PattynApproximationEnum); 3006 3007 /*Retrieve all inputs and parameters*/ 3008 GetVerticesCoordinates(&xyz_list[0][0], nodes, NUMVERTICES); 3022 3009 parameters->FindParam(&analysis_type,AnalysisTypeEnum); 3023 3024 /*retrieve inputs :*/3025 3010 inputs->GetParameterValue(&drag_type,DragTypeEnum); 3026 3011 Input* surface_input=inputs->GetInput(SurfaceEnum); ISSMASSERT(surface_input); … … 3028 3013 Input* vy_input=inputs->GetInput(VyEnum); ISSMASSERT(vy_input); 3029 3014 Input* vz_input=inputs->GetInput(VzEnum); ISSMASSERT(vz_input); 3030 3031 /* Get node coordinates and dof list: */3032 GetVerticesCoordinates(&xyz_list[0][0], nodes, NUMVERTICES);3033 GetDofList(&doflist,PattynApproximationEnum,GsetEnum);3034 3035 if (IsOnShelf()){3036 /*no friction, do nothing*/3037 return;3038 }3039 3015 3040 3016 /*build friction object, used later on: */ … … 3048 3024 gauss->GaussPoint(ig); 3049 3025 3050 /*Friction: */3051 3026 friction->GetAlpha2(&alpha2, gauss,VxEnum,VyEnum,VzEnum); // TO UNCOMMENT 3052 3027 … … 3060 3035 } 3061 3036 3062 /* Get Jacobian determinant: */3037 GetL(&L[0][0], &xyz_list[0][0], gauss,numberofdofspernode); 3063 3038 GetJacobianDeterminant2d(&Jdet, &xyz_list[0][0],gauss); 3064 3065 /*Get L matrix: */3066 GetL(&L[0][0], &xyz_list[0][0], gauss,numberofdofspernode);3067 3068 3039 3069 3040 DL_scalar=alpha2*gauss->weight*Jdet; 3070 for (i=0;i<2;i++){ 3071 DL[i][i]=DL_scalar; 3072 } 3041 for (i=0;i<2;i++) DL[i][i]=DL_scalar; 3073 3042 3074 /* Do the triple producte tL*D*L: */3075 3043 TripleMultiply( &L[0][0],2,numdof,1, 3076 3044 &DL[0][0],2,2,0, … … 3078 3046 &Ke_gg_gaussian[0][0],0); 3079 3047 3080 for( i=0; i<numdof; i++) for(j=0;j<numdof;j++) Ke_gg[i][j]+=Ke_gg_gaussian[i][j]; 3081 3082 } 3083 3084 /*Add Ke_gg to global matrix Kgg: */ 3085 MatSetValues(Kgg,numdof,doflist,numdof,doflist,(const double*)Ke_gg,ADD_VALUES); 3048 for(i=0;i<numdof;i++) for(j=0;j<numdof;j++) Ke->values[i*numdof+j]+=Ke_gg_gaussian[i][j]; 3049 } 3086 3050 3087 3051 /*Clean up and return*/ 3088 3052 delete gauss; 3089 3053 delete friction; 3090 xfree((void**)&doflist);3054 return Ke; 3091 3055 } 3092 3056 /*}}}*/ … … 5118 5082 /*First, figure out size of doflist: */ 5119 5083 numdof=0; 5120 for(i=0;i< 3;i++){5084 for(i=0;i<NUMVERTICES;i++){ 5121 5085 ndof_list[i]=nodes[i]->GetNumberOfDofs(approximation_enum,setenum); 5122 5086 numdof+=ndof_list[i]; … … 5129 5093 /*Populate: */ 5130 5094 count=0; 5131 for(i=0;i< 3;i++){5095 for(i=0;i<NUMVERTICES;i++){ 5132 5096 nodes[i]->GetDofList(&doflist[count],approximation_enum,setenum); 5133 5097 count+=ndof_list[i]; -
issm/trunk/src/c/objects/Elements/Tria.h
r5843 r5849 130 130 void CreateKMatrixDiagnosticMacAyealFriction(Mat Kgg,Mat Kff, Mat Kfs); 131 131 void CreateKMatrixCouplingMacAyealPattynFriction(Mat Kgg); 132 void CreateKMatrixDiagnosticPattynFriction(Mat Kgg);132 ElementMatrix* CreateKMatrixDiagnosticPattynFriction(void); 133 133 ElementMatrix* CreateKMatrixDiagnosticHutter(void); 134 134 void CreateKMatrixDiagnosticSurfaceVert(Mat Kgg); -
issm/trunk/src/c/shared/Elements/Paterson.cpp
r3332 r5849 32 32 B=pow((double)10,(double)8)*(-0.000292866376675*pow(T+50,3)+ 0.011672640664130*pow(T+50,2) -0.325004442485481*(T+50)+ 6.524779401948101); 33 33 } 34 if((T>=-45.0) && (T<=-40.0)){34 else if((T>=-45.0) && (T<=-40.0)){ 35 35 B=pow((double)10,(double)8)*(-0.000292866376675*pow(T+45,3)+ 0.007279645014004*pow(T+45,2) -0.230243014094813*(T+45)+ 5.154964909039554); 36 36 } 37 if((T>=-40.0) && (T<=-35.0)){37 else if((T>=-40.0) && (T<=-35.0)){ 38 38 B=pow((double)10,(double)8)*(0.000072737147457*pow(T+40,3)+ 0.002886649363879*pow(T+40,2) -0.179411542205399*(T+40)+ 4.149132666831214); 39 39 } 40 if((T>=-35.0) && (T<=-30.0)){40 else if((T>=-35.0) && (T<=-30.0)){ 41 41 B=pow((double)10,(double)8)*(-0.000086144770023*pow(T+35,3)+ 0.003977706575736*pow(T+35,2) -0.145089762507325*(T+35)+ 3.333333333333331); 42 42 } 43 if((T>=-30.0) && (T<=-25.0)){43 else if((T>=-30.0) && (T<=-25.0)){ 44 44 B=pow((double)10,(double)8)*(-0.000043984685769*pow(T+30,3)+ 0.002685535025386*pow(T+30,2) -0.111773554501713*(T+30)+ 2.696559088937191); 45 45 } 46 if((T>=-25.0) && (T<=-20.0)){46 else if((T>=-25.0) && (T<=-20.0)){ 47 47 B=pow((double)10,(double)8)*(-0.000029799523463*pow(T+25,3)+ 0.002025764738854*pow(T+25,2) -0.088217055680511*(T+25)+ 2.199331606342181); 48 48 } 49 if((T>=-20.0) && (T<=-15.0)){49 else if((T>=-20.0) && (T<=-15.0)){ 50 50 B=pow((double)10,(double)8)*(0.000136920904777*pow(T+20,3)+ 0.001578771886910*pow(T+20,2) -0.070194372551690*(T+20)+ 1.805165505978111); 51 51 } 52 if((T>=-15.0) && (T<=-10.0)){52 else if((T>=-15.0) && (T<=-10.0)){ 53 53 B=pow((double)10,(double)8)*(-0.000899763781026*pow(T+15,3)+ 0.003632585458564*pow(T+15,2) -0.044137585824322*(T+15)+ 1.510778053489523); 54 54 } 55 if((T>=-10.0) && (T<=-5.0)){55 else if((T>=-10.0) && (T<=-5.0)){ 56 56 B=pow((double)10,(double)8)*(0.001676964325070*pow(T+10,3)- 0.009863871256831*pow(T+10,2) -0.075294014815659*(T+10)+ 1.268434288203714); 57 57 } 58 if((T>=-5.0) && (T<=-2.0)){58 else if((T>=-5.0) && (T<=-2.0)){ 59 59 B=pow((double)10,(double)8)*(-0.003748937622487*pow(T+5,3)+0.015290593619213*pow(T+5,2) -0.048160403003748*(T+5)+ 0.854987973338348); 60 60 } 61 if(T>=-2.0){61 else if(T>=-2.0){ 62 62 B=pow((double)10,(double)8)*(-0.003748937622488*pow(T+2,3)-0.018449844983174*pow(T+2,2) -0.057638157095631*(T+2)+ 0.746900791092860); 63 63 }
Note:
See TracChangeset
for help on using the changeset viewer.