Changeset 15862
- Timestamp:
- 08/21/13 16:04:34 (12 years ago)
- 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 101 101 void SpcTransient::ConstrainNode(Nodes* nodes,Parameters* parameters){ 102 102 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; 109 109 110 110 /*Chase through nodes and find the node to which this SpcTransient applys: */ … … 140 140 /*Apply or relax constraint: */ 141 141 if(xIsNan<IssmDouble>(value)){ 142 printf("-------------- file: SpcTransient.cpp line: %i\n",__LINE__); 142 143 node->RelaxConstraint(dof); 143 144 } -
issm/trunk-jpl/src/c/classes/Node.cpp
r15861 r15862 393 393 /*Dof should be added to the f-set, and taken out of the s-set:*/ 394 394 DofInFSet(dof-1); 395 this->indexing.svalues[dof-1]= NAN;395 this->indexing.svalues[dof-1]=0.; 396 396 } 397 397 /*}}}*/ … … 454 454 _assert_(dof<this->indexing.gsize); 455 455 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 } 458 461 } 459 462 /*}}}*/ … … 464 467 * to a fixed value during computations. */ 465 468 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 } 468 474 } 469 475 /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.