Changeset 24566
- Timestamp:
- 02/14/20 08:34:57 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Inputs2/TransientInput2.cpp
r24565 r24566 387 387 void TransientInput2::SetAverageAsCurrentTimeInput(IssmDouble start_time,IssmDouble end_time){/*{{{*/ 388 388 389 IssmDouble dt;390 Issm Double eps=1.0e-6;391 IssmDouble dtsum=0;392 int found,start_offset,end_offset;393 int averaging_method = 0;389 IssmDouble dt; 390 IssmPDouble eps=1.0e-6; 391 IssmDouble dtsum=0; 392 int found,start_offset,end_offset; 393 int averaging_method = 0; 394 394 395 395 /*go through the timesteps, and grab offset for start and end*/ 396 found=binary_search(&start_offset,start_time-eps,this->timesteps,this->numtimesteps); 396 IssmDouble temp = start_time-eps; 397 found=binary_search(&start_offset,temp,this->timesteps,this->numtimesteps); 397 398 if(!found) _error_("Input not found (is TransientInput sorted ?)"); 398 found=binary_search(&end_offset,end_time+eps,this->timesteps,this->numtimesteps); 399 temp = end_time+eps; 400 found=binary_search(&end_offset,temp,this->timesteps,this->numtimesteps); 399 401 if(!found) _error_("Input not found (is TransientInput sorted ?)"); 400 402
Note:
See TracChangeset
for help on using the changeset viewer.