Changeset 24656


Ignore:
Timestamp:
03/12/20 06:19:37 (5 years ago)
Author:
bdef
Message:

BUG:issue with large times in transient input

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

Legend:

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

    r24615 r24656  
    21602160                        if(offset == numtimesteps-1){
    21612161                                dt = end_time - timesteps[offset];
     2162                                _assert_(dt>0.);
    21622163                        }
    21632164                        else{
    2164                                 dt = timesteps[offset+1] - timesteps[offset]; _assert_(dt>0.);
     2165                                dt = timesteps[offset+1] - timesteps[offset];
     2166                                _assert_(dt>0.);
    21652167                        }
    21662168                }
  • issm/trunk-jpl/src/c/classes/FemModel.cpp

    r24629 r24656  
    52605260                                int        *vertexlids = xNew<int>(numvertices);
    52615261                                element->GetInputListOnVertices(&values[0],input_enum[i]);   //this is the enum to stack
     5262
    52625263                                element->GetVerticesLidList(vertexlids);
    52635264
  • issm/trunk-jpl/src/c/classes/Inputs2/TransientInput2.cpp

    r24566 r24656  
    138138void TransientInput2::AddTriaTimeInput(IssmDouble time,int numindices,int* indices,IssmDouble* values_in,int interp_in){/*{{{*/
    139139
     140
    140141        /*Check whether this is the last time step that we have*/
    141142        if(this->numtimesteps){
    142                 if(this->timesteps[this->numtimesteps-1]>time-1.e-5 && this->timesteps[this->numtimesteps-1]<time+1.e-5){
     143                if(abs(this->timesteps[this->numtimesteps-1]-time)<1.0e-5){
    143144                        this->AddTriaTimeInput(this->numtimesteps-1,numindices,indices,values_in,interp_in);
    144145                        return;
  • issm/trunk-jpl/src/c/cores/smb_core.cpp

    r24565 r24656  
    6969
    7070                femmodel->InitTransientInputx(&transientinput[0],numaveragedinput);
     71                analysis = new SmbAnalysis();
    7172                while(substep<dtslices){ //loop on sub dts
    7273                        substep+=1;
     
    7576         if(VerboseSolution()) _printf0_("sub iteration " << substep << "/" << dtslices << "  time [yr]: " << setprecision(4) << subtime/yts << " (time step: " << subdt/yts << ")\n");
    7677         if(VerboseSolution()) _printf0_("   computing smb\n");
    77          analysis = new SmbAnalysis();
    7878                        if(VerboseSolution()) _printf0_("   Calling core\n");
    7979                        analysis->Core(femmodel);
    8080         /*If we have a sub-timestep we store the substep inputs in a transient input here*/
    8181         femmodel->StackTransientInputx(&substepinput[0],&transientinput[0],subtime,numaveragedinput);
    82                         delete analysis;
    8382                }
     83                delete analysis;
    8484      /*averaging the transient input*/
    8585                femmodel->AverageTransientInputx(&transientinput[0],&averagedinput[0],global_time-dt,subtime,numaveragedinput);
Note: See TracChangeset for help on using the changeset viewer.