vtk-m/vtkm/worklet/particleadvection/Stepper.h
2021-09-01 17:22:51 -07:00

202 lines
6.5 KiB
C++

//=============================================================================
//
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
//
// This software is distributed WITHOUT ANY WARRANTY; without even
// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURPOSE. See the above copyright notice for more information.
//
//=============================================================================
#ifndef vtk_m_worklet_particleadvection_Stepper_h
#define vtk_m_worklet_particleadvection_Stepper_h
#include <limits>
#include <vtkm/Bitset.h>
#include <vtkm/TypeTraits.h>
#include <vtkm/Types.h>
#include <vtkm/VectorAnalysis.h>
#include <vtkm/cont/DataSet.h>
#include <vtkm/worklet/particleadvection/GridEvaluators.h>
#include <vtkm/worklet/particleadvection/IntegratorStatus.h>
#include <vtkm/worklet/particleadvection/Particles.h>
namespace vtkm
{
namespace worklet
{
namespace particleadvection
{
template <typename ExecIntegratorType, typename ExecEvaluatorType>
class StepperImpl
{
private:
ExecIntegratorType Integrator;
ExecEvaluatorType Evaluator;
vtkm::FloatDefault DeltaT;
vtkm::FloatDefault Tolerance;
public:
VTKM_EXEC_CONT
StepperImpl(const ExecIntegratorType& integrator,
const ExecEvaluatorType& evaluator,
const vtkm::FloatDefault deltaT,
const vtkm::FloatDefault tolerance)
: Integrator(integrator)
, Evaluator(evaluator)
, DeltaT(deltaT)
, Tolerance(tolerance)
{
}
template <typename Particle>
VTKM_EXEC IntegratorStatus Step(Particle& particle,
vtkm::FloatDefault& time,
vtkm::Vec3f& outpos) const
{
vtkm::Vec3f velocity(0, 0, 0);
auto status = this->Integrator.CheckStep(particle, this->DeltaT, velocity);
if (status.CheckOk())
{
outpos = particle.Pos + this->DeltaT * velocity;
time += this->DeltaT;
}
else
outpos = particle.Pos;
return status;
}
template <typename Particle>
VTKM_EXEC IntegratorStatus SmallStep(Particle& particle,
vtkm::FloatDefault& time,
vtkm::Vec3f& outpos) const
{
//Stepping by this->DeltaT goes beyond the bounds of the dataset.
//We need to take an Euler step that goes outside of the dataset.
//Use a binary search to find the largest step INSIDE the dataset.
//Binary search uses a shrinking bracket of inside / outside, so when
//we terminate, the outside value is the stepsize that will nudge
//the particle outside the dataset.
//The binary search will be between {0, this->DeltaT}
vtkm::FloatDefault stepRange[2] = { 0, this->DeltaT };
vtkm::Vec3f currPos(particle.GetEvaluationPosition(this->DeltaT));
vtkm::Vec3f currVelocity(0, 0, 0);
vtkm::VecVariable<vtkm::Vec3f, 2> currValue, tmp;
auto evalStatus = this->Evaluator.Evaluate(currPos, particle.Time, currValue);
if (evalStatus.CheckFail())
return IntegratorStatus(evalStatus);
const vtkm::FloatDefault eps = vtkm::Epsilon<vtkm::FloatDefault>() * 10;
vtkm::FloatDefault div = 1;
while ((stepRange[1] - stepRange[0]) > eps)
{
//Try a step midway between stepRange[0] and stepRange[1]
div *= 2;
vtkm::FloatDefault currStep = stepRange[0] + (this->DeltaT / div);
//See if we can step by currStep
IntegratorStatus status = this->Integrator.CheckStep(particle, currStep, currVelocity);
if (status.CheckOk()) //Integration step succedded.
{
//See if this point is in/out.
auto newPos = particle.Pos + currStep * currVelocity;
evalStatus = this->Evaluator.Evaluate(newPos, particle.Time + currStep, tmp);
if (evalStatus.CheckOk())
{
//Point still in. Update currPos and set range to {currStep, stepRange[1]}
currPos = newPos;
stepRange[0] = currStep;
}
else
{
//The step succedded, but the next point is outside.
//Step too long. Set range to: {stepRange[0], currStep} and continue.
stepRange[1] = currStep;
}
}
else
{
//Step too long. Set range to: {stepRange[0], stepCurr} and continue.
stepRange[1] = currStep;
}
}
evalStatus = this->Evaluator.Evaluate(currPos, particle.Time + stepRange[0], currValue);
// The eval at Time + stepRange[0] better be *inside*
VTKM_ASSERT(evalStatus.CheckOk() && !evalStatus.CheckSpatialBounds());
if (evalStatus.CheckFail() || evalStatus.CheckSpatialBounds())
return IntegratorStatus(evalStatus);
// Update the position and time.
outpos = currPos + stepRange[1] * particle.Velocity(currValue, stepRange[1]);
time += stepRange[1];
// Get the evaluation status for the point that is moved by the euler step.
evalStatus = this->Evaluator.Evaluate(outpos, time, currValue);
IntegratorStatus status(evalStatus);
status.SetOk(); //status is ok.
return status;
}
};
template <typename IntegratorType, typename EvaluatorType>
class Stepper : public vtkm::cont::ExecutionObjectBase
{
private:
IntegratorType Integrator;
EvaluatorType Evaluator;
vtkm::FloatDefault DeltaT;
vtkm::FloatDefault Tolerance =
std::numeric_limits<vtkm::FloatDefault>::epsilon() * static_cast<vtkm::FloatDefault>(100.0f);
public:
VTKM_CONT
Stepper() = default;
VTKM_CONT
Stepper(const EvaluatorType& evaluator, const vtkm::FloatDefault deltaT)
: Integrator(IntegratorType(evaluator))
, Evaluator(evaluator)
, DeltaT(deltaT)
{
}
VTKM_CONT
void SetTolerance(vtkm::FloatDefault tolerance) { this->Tolerance = tolerance; }
public:
/// Return the StepperImpl object
/// Prepares the execution object of Stepper
VTKM_CONT auto PrepareForExecution(vtkm::cont::DeviceAdapterId device,
vtkm::cont::Token& token) const
-> StepperImpl<decltype(this->Integrator.PrepareForExecution(device, token)),
decltype(this->Evaluator.PrepareForExecution(device, token))>
{
auto integrator = this->Integrator.PrepareForExecution(device, token);
auto evaluator = this->Evaluator.PrepareForExecution(device, token);
using ExecIntegratorType = decltype(integrator);
using ExecEvaluatorType = decltype(evaluator);
return StepperImpl<ExecIntegratorType, ExecEvaluatorType>(
integrator, evaluator, this->DeltaT, this->Tolerance);
}
};
} //namespace particleadvection
} //namespace worklet
} //namespace vtkm
#endif // vtk_m_worklet_particleadvection_Stepper_h