Changeset 17816


Ignore:
Timestamp:
04/22/14 15:41:01 (11 years ago)
Author:
Mathieu Morlighem
Message:

BUG: sime bug fixing

Location:
issm/trunk-jpl/src/c
Files:
3 edited

Legend:

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

    r17812 r17816  
    150150void  Tria::ComputeSigmaNN(){
    151151
    152         if(~IsOnBase()){
     152        if(!IsOnBase()){
    153153                IssmDouble sigma_nn=0;
    154154                this->inputs->AddInput(new TriaInput(SigmaNNEnum,&sigma_nn,P0Enum));
  • issm/trunk-jpl/src/c/shared/Elements/Arrhenius.cpp

    r15843 r17816  
    3434        /*convert temperature to absolute temperature*/
    3535        _assert_(depth>0);
     36        printf("temperature = %g beta = %g depth = %g\n",temperature,beta,depth);
    3637        Tstar=temperature-beta*depth;
    3738        _assert_(Tstar>0);
  • issm/trunk-jpl/src/c/solutionsequences/solutionsequence_newton.cpp

    r17055 r17816  
    6868
    6969                /*Prepare next iteration using Newton's method*/
    70                 SystemMatricesx(&Kff,&Kfs,&pf,&df,NULL,femmodel);delete df;
     70                SystemMatricesx(&Kff,&Kfs,&pf,&df,&kmax,femmodel);delete df;
    7171                CreateNodalConstraintsx(&ys,femmodel->nodes,configuration_type);
    7272                Reduceloadx(pf,Kfs,ys);delete Kfs;
Note: See TracChangeset for help on using the changeset viewer.