Changeset 16657
- Timestamp:
- 11/07/13 09:52:26 (11 years ago)
- Location:
- issm/trunk-jpl/src/c/classes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r16648 r16657 2164 2164 } 2165 2165 /*}}}*/ 2166 /*FUNCTION Tria::HasNodeOnBed {{{*/ 2167 bool Tria::HasNodeOnBed(){ 2168 2169 IssmDouble values[NUMVERTICES]; 2170 IssmDouble sum; 2171 2172 /*Retrieve all inputs and parameters*/ 2173 GetInputListOnVertices(&values[0],MeshVertexonbedEnum); 2174 sum = values[0]+values[1]+values[2]; 2175 2176 return sum>0.; 2177 } 2178 /*}}}*/ 2166 2179 /*FUNCTION Tria::HasEdgeOnSurface {{{*/ 2167 2180 bool Tria::HasEdgeOnSurface(){ … … 2184 2197 return false; 2185 2198 } 2199 } 2200 /*}}}*/ 2201 /*FUNCTION Tria::HasNodeOnSurface {{{*/ 2202 bool Tria::HasNodeOnSurface(){ 2203 2204 IssmDouble values[NUMVERTICES]; 2205 IssmDouble sum; 2206 2207 /*Retrieve all inputs and parameters*/ 2208 GetInputListOnVertices(&values[0],MeshVertexonbedEnum); 2209 sum = values[0]+values[1]+values[2]; 2210 2211 return sum>0.; 2186 2212 } 2187 2213 /*}}}*/ … … 2805 2831 void Tria::UpdateConstraintsExtrudeFromBase(void){ 2806 2832 2807 if(!HasEdgeOnBed()) return; 2808 2809 int extrusioninput; 2810 int indices[2]; 2811 IssmDouble value; 2833 if(!HasNodeOnBed()) return; 2834 2835 int extrusioninput; 2836 IssmDouble value,isonbed; 2812 2837 2813 2838 this->parameters->FindParam(&extrusioninput,InputToExtrudeEnum); 2814 Input* input = inputs->GetInput(extrusioninput); _assert_(extrusioninput);2815 this->EdgeOnBedIndices(&indices[0],&indices[1]);2839 Input* input = inputs->GetInput(extrusioninput); _assert_(extrusioninput); 2840 Input* onbed = inputs->GetInput(MeshVertexonbedEnum); _assert_(onbed); 2816 2841 2817 2842 GaussTria* gauss=new GaussTria(); 2818 for(int i=0;i<2;i++){ 2819 gauss->GaussNode(P1Enum,indices[i]); 2820 input->GetInputValue(&value,gauss); 2821 this->nodes[indices[i]]->ApplyConstraint(1,value); 2843 for(int iv=0;iv<this->NumberofNodes();iv++){ 2844 gauss->GaussNode(this->element_type,iv); 2845 onbed->GetInputValue(&isonbed,gauss); 2846 if(isonbed==1.){ 2847 input->GetInputValue(&value,gauss); 2848 this->nodes[iv]->ApplyConstraint(1,value); 2849 } 2822 2850 } 2823 2851 delete gauss; -
issm/trunk-jpl/src/c/classes/Elements/Tria.h
r16612 r16657 86 86 bool IsOnBed(); 87 87 bool HasEdgeOnBed(); 88 bool HasNodeOnBed(); 88 89 bool HasEdgeOnSurface(); 90 bool HasNodeOnSurface(); 89 91 void EdgeOnSurfaceIndices(int* pindex1,int* pindex); 90 92 void EdgeOnBedIndices(int* pindex1,int* pindex); -
issm/trunk-jpl/src/c/classes/matrix/ElementMatrix.cpp
r16228 r16657 269 269 for(j=0;j<this->row_fsize;j++){ 270 270 *(localvalues+this->row_fsize*i+j)=*(this->values+this->ncols*this->row_flocaldoflist[i]+this->row_flocaldoflist[j]); 271 //if(this->row_fglobaldoflist[i]==0 && this->row_fglobaldoflist[j]==304) printf("rank = %i\n",IssmComm::GetRank()); 272 if(this->row_fglobaldoflist[i]==0 && *(this->values+this->ncols*this->row_flocaldoflist[i]+this->row_flocaldoflist[j])!=0.){ 273 //printf("[%i] dof = %i\n",IssmComm::GetRank(),this->row_fglobaldoflist[j]); 274 } 271 275 } 272 276 } 277 273 278 /*add local values into global matrix, using the fglobaldoflist: */ 274 279 Kff->SetValues(this->row_fsize,this->row_fglobaldoflist,this->row_fsize,this->row_fglobaldoflist,localvalues,ADD_VAL);
Note:
See TracChangeset
for help on using the changeset viewer.