Changeset 23904


Ignore:
Timestamp:
05/02/19 21:51:44 (6 years ago)
Author:
Mathieu Morlighem
Message:

BUG: fixed extrusion from surface

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Elements/Tria.cpp

    r23903 r23904  
    43504350        if(!HasNodeOnSurface()) return;
    43514351
    4352         int extrusioninput;
    4353         int indices[2];
    4354         IssmDouble value;
     4352        int        extrusioninput;
     4353        IssmDouble value,isonsurface;
    43554354
    43564355        this->parameters->FindParam(&extrusioninput,InputToExtrudeEnum);
    43574356        Input* input = inputs->GetInput(extrusioninput); _assert_(input);
    4358         this->EdgeOnSurfaceIndices(&indices[0],&indices[1]);
     4357        Input* onsurf = inputs->GetInput(MeshVertexonsurfaceEnum); _assert_(onsurf);
    43594358
    43604359        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                }
    43654367        }
    43664368        delete gauss;
    4367 
    43684369}
    43694370/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.