Changeset 15862


Ignore:
Timestamp:
08/21/13 16:04:34 (12 years ago)
Author:
Mathieu Morlighem
Message:

BUG: indexingupdate needs to be turned to true if Node::DofInFSet or Node::DofInSSet is called

Location:
issm/trunk-jpl/src/c/classes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Constraints/SpcTransient.cpp

    r15104 r15862  
    101101void SpcTransient::ConstrainNode(Nodes* nodes,Parameters* parameters){
    102102
    103         Node* node=NULL;
    104         IssmDouble time=0;
    105         int    i;
    106         IssmDouble alpha=-1;
    107         IssmDouble value;
    108         bool   found=false;
     103        Node       *node  = NULL;
     104        IssmDouble  time  = 0.;
     105        int         i;
     106        IssmDouble  alpha = -1.;
     107        IssmDouble  value;
     108        bool        found = false;
    109109
    110110        /*Chase through nodes and find the node to which this SpcTransient applys: */
     
    140140                /*Apply or relax constraint: */
    141141                if(xIsNan<IssmDouble>(value)){
     142                        printf("-------------- file: SpcTransient.cpp line: %i\n",__LINE__);
    142143                        node->RelaxConstraint(dof);
    143144                }
  • issm/trunk-jpl/src/c/classes/Node.cpp

    r15861 r15862  
    393393        /*Dof should be added to the f-set, and taken out of the s-set:*/
    394394        DofInFSet(dof-1);
    395         this->indexing.svalues[dof-1]=NAN;
     395        this->indexing.svalues[dof-1]=0.;
    396396}
    397397/*}}}*/
     
    454454        _assert_(dof<this->indexing.gsize);
    455455
    456         this->indexing.f_set[dof]=0; //n splits into f (for which we solve) and s (single point constraints)
    457         this->indexing.s_set[dof]=1;
     456        if(this->indexing.f_set[dof] == 1){
     457                this->indexingupdate = true;
     458                this->indexing.f_set[dof]=0; //n splits into f (for which we solve) and s (single point constraints)
     459                this->indexing.s_set[dof]=1;
     460        }
    458461}
    459462/*}}}*/
     
    464467         * to a fixed value during computations. */
    465468
    466         this->indexing.f_set[dof]=1;
    467         this->indexing.s_set[dof]=0;
     469        if(this->indexing.f_set[dof] == 0){
     470                this->indexingupdate = true;
     471                this->indexing.f_set[dof]=1;
     472                this->indexing.s_set[dof]=0;
     473        }
    468474}
    469475/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.