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.

78 lines
2.6 KiB
C++

#include "FITKCFDPostThreshold.h"
#include "FITKCFDPost3DManager.h"
#include "FITKCFDPostData.h"
#include "FITK_Kernel/FITKAppFramework/FITKAppFramework.h"
#include "FITK_Kernel/FITKAppFramework/FITKGlobalData.h"
#include <vtkThreshold.h>
#include <vtkDataSetMapper.h>
#include <vtkUnstructuredGrid.h>
namespace Interface
{
FITKCFDPostThreshold::FITKCFDPostThreshold(int parentID)
{
_CFDPostParentID = parentID;
Interface::FITKCFDPost3DManager* dataManger = FITKAPP->getGlobalData()->getPostData<Interface::FITKCFDPostData>()->getPostDataManager();
if (dataManger == nullptr)return;
Interface::FITKAbstractCFDPostData* parentData = dataManger->getDataByID(_CFDPostParentID);
if (parentData == nullptr)return;
_threshold = vtkThreshold::New();
_threshold->SetInputConnection(parentData->getOutputPort());
vtkDataSetMapper* mapper = vtkDataSetMapper::New();
mapper->SetInputConnection(_threshold->GetOutputPort());
_mappers.append(mapper);
}
FITKCFDPostThreshold::~FITKCFDPostThreshold()
{
if (_threshold) {
_threshold->Delete();
_threshold = nullptr;
}
}
FITKPostDataType FITKCFDPostThreshold::getPostDataType()
{
return FITKPostDataType::Post_Threshold;
}
vtkDataSet * FITKCFDPostThreshold::getOutput()
{
if (_threshold == nullptr)return nullptr;
return _threshold->GetOutput();
}
void FITKCFDPostThreshold::setValue(double lower, double upper, Interface::FITKPostFieldType fieldType, QString fieldName)
{
if (_threshold == nullptr)return;
_threshold->ThresholdBetween(lower, upper);
_fieldName = fieldName;
QByteArray bName = _fieldName.toLocal8Bit();
char* cName = bName.data();
_fieldType = fieldType;
switch (_fieldType){
case Interface::FITKPostFieldType::Post_Point: {
_threshold->SetInputArrayToProcess(0, 0, 0, vtkDataObject::FIELD_ASSOCIATION_POINTS, cName);
break;
}
case Interface::FITKPostFieldType::Post_Cell: {
_threshold->SetInputArrayToProcess(0, 0, 0, vtkDataObject::FIELD_ASSOCIATION_CELLS, cName);
break;
}
}
}
void FITKCFDPostThreshold::getValue(double& lower, double& upper, Interface::FITKPostFieldType& fieldType, QString& fieldName)
{
if (_threshold == nullptr)return;
lower = _threshold->GetLowerThreshold();
upper = _threshold->GetUpperThreshold();
fieldType = _fieldType;
fieldName = _fieldName;
}
}