Changeset 15872 for issm/trunk-jpl/src/c/classes/Elements/Penta.cpp
- Timestamp:
- 08/22/13 08:31:52 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Penta.cpp
r15870 r15872 5026 5026 5027 5027 /*Fetch indices of basal nodes for this finite element*/ 5028 BasalNodeIndices(&numindices,&indices,this-> VelocityInterpolation());5028 BasalNodeIndices(&numindices,&indices,this->element_type); 5029 5029 5030 5030 /*Get parameters and inputs: */ … … 5062 5062 /* Intermediaries */ 5063 5063 bool isenthalpy; 5064 int i,j,analysis_type ;5064 int i,j,analysis_type,numindices,numindicesup; 5065 5065 IssmDouble xyz_list[NUMVERTICES][3]; 5066 5066 IssmDouble xyz_list_tria[NUMVERTICES2D][3]; … … 5077 5077 IssmDouble vx,vy,vz; 5078 5078 IssmDouble dt; 5079 Friction *friction= NULL;5080 GaussPenta *gauss= NULL;5081 GaussPenta *gaussup= NULL;5079 int *indices = NULL; 5080 int *indicesup = NULL; 5081 Friction *friction = NULL; 5082 5082 5083 5083 /* Only compute melt rates at the base of grounded ice*/ … … 5104 5104 friction=new Friction("3d",inputs,matpar,analysis_type); 5105 5105 5106 /* Start looping on the number of gaussian points: */ 5107 gauss=new GaussPenta(0,1,2,2); 5108 gaussup=new GaussPenta(3,4,5,2); 5109 for(int ig=gauss->begin();ig<gauss->end();ig++){ 5110 gauss->GaussPoint(ig); 5111 gaussup->GaussPoint(ig); 5106 /*Fetch indices of basal and surface nodes for this finite element*/ 5107 BasalNodeIndices(&numindices,&indices,this->element_type); 5108 SurfaceNodeIndices(&numindicesup,&indicesup,this->element_type); 5109 _assert_(numindices==numindicesup); 5110 5111 /*Ok, we have vx and vy in values, fill in vx and vy arrays: */ 5112 GaussPenta* gauss=new GaussPenta(); 5113 GaussPenta* gaussup=new GaussPenta(); 5114 for(i=0;i<numindices;i++){ 5115 gauss->GaussNode(this->element_type,indices[i]); 5116 gaussup->GaussNode(this->element_type,indicesup[i]); 5112 5117 5113 5118 watercolumn_input->GetInputValue(&watercolumn, gauss); … … 5161 5166 // TODO: feed meltrate & watercolumn back to model 5162 5167 } 5168 5169 /*Clean up and return*/ 5170 xDelete<int>(indices); 5171 xDelete<int>(indicesup); 5172 delete gauss; 5173 delete gaussup; 5163 5174 } 5164 5175 /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.