You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
3.0 KiB
C
94 lines
3.0 KiB
C
|
3 weeks ago
|
/*=========================================================================
|
||
|
|
|
||
|
|
Program: Visualization Toolkit
|
||
|
|
Module: vtkAMRInterpolatedVelocityField.h
|
||
|
|
|
||
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
||
|
|
All rights reserved.
|
||
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm 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.
|
||
|
|
|
||
|
|
=========================================================================*/
|
||
|
|
/**
|
||
|
|
* @class vtkAMRInterpolatedVelocityField
|
||
|
|
* @brief A concrete class for obtaining
|
||
|
|
* the interpolated velocity values at a point in AMR data.
|
||
|
|
*
|
||
|
|
*
|
||
|
|
*
|
||
|
|
* The main functionality supported here is the point location inside vtkOverlappingAMR data set.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef vtkAMRInterpolatedVelocityField_h
|
||
|
|
#define vtkAMRInterpolatedVelocityField_h
|
||
|
|
|
||
|
|
#include "vtkFiltersFlowPathsModule.h" // For export macro
|
||
|
|
|
||
|
|
#include "vtkAbstractInterpolatedVelocityField.h"
|
||
|
|
|
||
|
|
class vtkOverlappingAMR;
|
||
|
|
|
||
|
|
class VTKFILTERSFLOWPATHS_EXPORT vtkAMRInterpolatedVelocityField
|
||
|
|
: public vtkAbstractInterpolatedVelocityField
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
vtkTypeMacro( vtkAMRInterpolatedVelocityField,
|
||
|
|
vtkAbstractInterpolatedVelocityField );
|
||
|
|
|
||
|
|
static vtkAMRInterpolatedVelocityField * New();
|
||
|
|
|
||
|
|
vtkGetMacro(AmrDataSet,vtkOverlappingAMR*);
|
||
|
|
void SetAMRData(vtkOverlappingAMR* amr);
|
||
|
|
|
||
|
|
bool GetLastDataSetLocation(unsigned int& level, unsigned int& id);
|
||
|
|
|
||
|
|
bool SetLastDataSet(int level, int id);
|
||
|
|
|
||
|
|
virtual void SetLastCellId( vtkIdType c, int dataindex );
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Set the cell id cached by the last evaluation.
|
||
|
|
*/
|
||
|
|
virtual void SetLastCellId( vtkIdType c )
|
||
|
|
{ this->Superclass::SetLastCellId( c ); }
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Evaluate the velocity field f at point p.
|
||
|
|
* If it succeeds, then both the last data set (this->LastDataSet) and
|
||
|
|
* the last data set location (this->LastLevel, this->LastId) will be
|
||
|
|
* set according to where p is found. If it fails, either p is out of
|
||
|
|
* bound, in which case both the last data set and the last location
|
||
|
|
* will be invlaid or, in a multi-process setting, p is inbound but not
|
||
|
|
* on the processor. In the last case, the last data set location is
|
||
|
|
* still valid
|
||
|
|
*/
|
||
|
|
|
||
|
|
virtual int FunctionValues( double * x, double * f );
|
||
|
|
|
||
|
|
void PrintSelf( ostream & os, vtkIndent indent );
|
||
|
|
|
||
|
|
// Descriptino:
|
||
|
|
// Point location routine.
|
||
|
|
static bool FindGrid(double q[3],vtkOverlappingAMR *amrds, unsigned int& level, unsigned int& gridId);
|
||
|
|
|
||
|
|
protected:
|
||
|
|
vtkOverlappingAMR* AmrDataSet;
|
||
|
|
int LastLevel;
|
||
|
|
int LastId;
|
||
|
|
|
||
|
|
vtkAMRInterpolatedVelocityField();
|
||
|
|
~vtkAMRInterpolatedVelocityField();
|
||
|
|
virtual int FunctionValues( vtkDataSet * ds, double * x, double * f )
|
||
|
|
{ return this->Superclass::FunctionValues( ds, x, f ); }
|
||
|
|
|
||
|
|
private:
|
||
|
|
vtkAMRInterpolatedVelocityField(const vtkAMRInterpolatedVelocityField&) VTK_DELETE_FUNCTION;
|
||
|
|
void operator = ( const vtkAMRInterpolatedVelocityField& ) VTK_DELETE_FUNCTION;
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|