Changeset 24656
- Timestamp:
- 03/12/20 06:19:37 (5 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r24615 r24656 2160 2160 if(offset == numtimesteps-1){ 2161 2161 dt = end_time - timesteps[offset]; 2162 _assert_(dt>0.); 2162 2163 } 2163 2164 else{ 2164 dt = timesteps[offset+1] - timesteps[offset]; _assert_(dt>0.); 2165 dt = timesteps[offset+1] - timesteps[offset]; 2166 _assert_(dt>0.); 2165 2167 } 2166 2168 } -
issm/trunk-jpl/src/c/classes/FemModel.cpp
r24629 r24656 5260 5260 int *vertexlids = xNew<int>(numvertices); 5261 5261 element->GetInputListOnVertices(&values[0],input_enum[i]); //this is the enum to stack 5262 5262 5263 element->GetVerticesLidList(vertexlids); 5263 5264 -
issm/trunk-jpl/src/c/classes/Inputs2/TransientInput2.cpp
r24566 r24656 138 138 void TransientInput2::AddTriaTimeInput(IssmDouble time,int numindices,int* indices,IssmDouble* values_in,int interp_in){/*{{{*/ 139 139 140 140 141 /*Check whether this is the last time step that we have*/ 141 142 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){ 143 144 this->AddTriaTimeInput(this->numtimesteps-1,numindices,indices,values_in,interp_in); 144 145 return; -
issm/trunk-jpl/src/c/cores/smb_core.cpp
r24565 r24656 69 69 70 70 femmodel->InitTransientInputx(&transientinput[0],numaveragedinput); 71 analysis = new SmbAnalysis(); 71 72 while(substep<dtslices){ //loop on sub dts 72 73 substep+=1; … … 75 76 if(VerboseSolution()) _printf0_("sub iteration " << substep << "/" << dtslices << " time [yr]: " << setprecision(4) << subtime/yts << " (time step: " << subdt/yts << ")\n"); 76 77 if(VerboseSolution()) _printf0_(" computing smb\n"); 77 analysis = new SmbAnalysis();78 78 if(VerboseSolution()) _printf0_(" Calling core\n"); 79 79 analysis->Core(femmodel); 80 80 /*If we have a sub-timestep we store the substep inputs in a transient input here*/ 81 81 femmodel->StackTransientInputx(&substepinput[0],&transientinput[0],subtime,numaveragedinput); 82 delete analysis;83 82 } 83 delete analysis; 84 84 /*averaging the transient input*/ 85 85 femmodel->AverageTransientInputx(&transientinput[0],&averagedinput[0],global_time-dt,subtime,numaveragedinput);
Note:
See TracChangeset
for help on using the changeset viewer.