Changeset 16657


Ignore:
Timestamp:
11/07/13 09:52:26 (11 years ago)
Author:
Mathieu Morlighem
Message:

BUG: constraints need to be applied even if node is clone

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  
    21642164}
    21652165/*}}}*/
     2166/*FUNCTION Tria::HasNodeOnBed {{{*/
     2167bool 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/*}}}*/
    21662179/*FUNCTION Tria::HasEdgeOnSurface {{{*/
    21672180bool Tria::HasEdgeOnSurface(){
     
    21842197                return false;
    21852198        }
     2199}
     2200/*}}}*/
     2201/*FUNCTION Tria::HasNodeOnSurface {{{*/
     2202bool 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.;
    21862212}
    21872213/*}}}*/
     
    28052831void  Tria::UpdateConstraintsExtrudeFromBase(void){
    28062832
    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;
    28122837
    28132838        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);
    28162841
    28172842        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                }
    28222850        }
    28232851        delete gauss;
  • issm/trunk-jpl/src/c/classes/Elements/Tria.h

    r16612 r16657  
    8686                bool        IsOnBed();
    8787                bool        HasEdgeOnBed();
     88                bool        HasNodeOnBed();
    8889                bool        HasEdgeOnSurface();
     90                bool        HasNodeOnSurface();
    8991                void        EdgeOnSurfaceIndices(int* pindex1,int* pindex);
    9092                void        EdgeOnBedIndices(int* pindex1,int* pindex);
  • issm/trunk-jpl/src/c/classes/matrix/ElementMatrix.cpp

    r16228 r16657  
    269269                                for(j=0;j<this->row_fsize;j++){
    270270                                        *(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                                        }
    271275                                }
    272276                        }
     277
    273278                        /*add local values into global  matrix, using the fglobaldoflist: */
    274279                        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.