Changeset 23904
- Timestamp:
- 05/02/19 21:51:44 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r23903 r23904 4350 4350 if(!HasNodeOnSurface()) return; 4351 4351 4352 int extrusioninput; 4353 int indices[2]; 4354 IssmDouble value; 4352 int extrusioninput; 4353 IssmDouble value,isonsurface; 4355 4354 4356 4355 this->parameters->FindParam(&extrusioninput,InputToExtrudeEnum); 4357 4356 Input* input = inputs->GetInput(extrusioninput); _assert_(input); 4358 this->EdgeOnSurfaceIndices(&indices[0],&indices[1]);4357 Input* onsurf = inputs->GetInput(MeshVertexonsurfaceEnum); _assert_(onsurf); 4359 4358 4360 4359 GaussTria* gauss=new GaussTria(); 4361 for(int i=0;i<2;i++){ 4362 gauss->GaussNode(P1Enum,indices[i]); 4363 input->GetInputValue(&value,gauss); 4364 this->nodes[indices[i]]->ApplyConstraint(0,value); 4360 for(int iv=0;iv<this->NumberofNodes(this->element_type);iv++){ 4361 gauss->GaussNode(this->element_type,iv); 4362 onsurf->GetInputValue(&isonsurface,gauss); 4363 if(isonsurface==1.){ 4364 input->GetInputValue(&value,gauss); 4365 this->nodes[iv]->ApplyConstraint(0,value); 4366 } 4365 4367 } 4366 4368 delete gauss; 4367 4368 4369 } 4369 4370 /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.