1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
#include "vtkActor.h"
#include "vtkCamera.h"
#include "vtkCellData.h"
#include "vtkCompositeRenderManager.h"
#include "vtkDebugLeaks.h"
#include "vtkGeometryFilter.h"
#include "vtkLineSource.h"
#include "vtkLookupTable.h"
#include "vtkMPIController.h"
#include "vtkMultiBlockDataSet.h"
#include "vtkMultiBlockPLOT3DReader.h"
#include "vtkObjectFactory.h"
#include "vtkPStreamTracer.h"
#include "vtkPolyData.h"
#include "vtkPolyDataMapper.h"
#include "vtkProperty.h"
#include "vtkRegressionTestImage.h"
#include "vtkRenderWindow.h"
#include "vtkRenderWindowInteractor.h"
#include "vtkRenderer.h"
#include "vtkStructuredGrid.h"
#include "vtkStructuredGridOutlineFilter.h"
#include "vtkTestUtilities.h"
#include "vtkTrivialProducer.h"
struct PStreamArgs_tmp
{
int* retVal;
int argc;
char** argv;
};
// This will be called by all processes
void MyMain(vtkMultiProcessController* controller, void* arg)
{
PStreamArgs_tmp* args = reinterpret_cast<PStreamArgs_tmp*>(arg);
int myId = controller->GetLocalProcessId();
int numProcs = controller->GetNumberOfProcesses();
vtkRenderer* ren = vtkRenderer::New();
ren->SetBackground(0.33, 0.35, 0.43);
vtkRenderWindow* renWin = vtkRenderWindow::New();
renWin->AddRenderer(ren);
renWin->SetSize(400, 300);
renWin->SetPosition(0, 350 * myId);
// camera parameters
vtkCamera* camera = ren->GetActiveCamera();
camera->SetPosition(-5.86786, 49.2857, 51.597);
camera->SetFocalPoint(8.255, -3.17482e-16, 29.7631);
camera->SetViewUp(-0.112182, -0.42918, 0.896225);
camera->SetViewAngle(30);
camera->SetClippingRange(10.0, 80.6592);
camera->Dolly(1.5);
// Create the reader, the data file name might have
// to be changed depending on where the data files are.
char* fname1 = vtkTestUtilities::ExpandDataFileName(args->argc, args->argv, "Data/combxyz.bin");
char* fname2 = vtkTestUtilities::ExpandDataFileName(args->argc, args->argv, "Data/combq.bin");
vtkMultiBlockPLOT3DReader* Plot3D0 = vtkMultiBlockPLOT3DReader::New();
Plot3D0->SetFileName(fname1);
Plot3D0->SetQFileName(fname2);
Plot3D0->SetBinaryFile(1);
Plot3D0->SetMultiGrid(0);
Plot3D0->SetHasByteCount(0);
Plot3D0->SetIBlanking(0);
Plot3D0->SetTwoDimensionalGeometry(0);
Plot3D0->SetForceRead(0);
Plot3D0->SetByteOrder(0);
delete[] fname1;
delete[] fname2;
Plot3D0->Update();
vtkStructuredGrid* sg = vtkStructuredGrid::SafeDownCast(Plot3D0->GetOutput()->GetBlock(0));
vtkTrivialProducer* tv = vtkTrivialProducer::New();
tv->SetOutput(sg);
vtkStructuredGridOutlineFilter* Geometry5 = vtkStructuredGridOutlineFilter::New();
Geometry5->SetInputConnection(tv->GetOutputPort());
vtkPolyDataMapper* Mapper5 = vtkPolyDataMapper::New();
Mapper5->SetInputConnection(Geometry5->GetOutputPort());
Mapper5->UseLookupTableScalarRangeOn();
Mapper5->SetScalarVisibility(0);
Mapper5->SetScalarModeToDefault();
vtkActor* Actor5 = vtkActor::New();
Actor5->SetMapper(Mapper5);
vtkProperty* prop = Actor5->GetProperty();
prop->SetRepresentationToSurface();
prop->SetInterpolationToGouraud();
prop->SetAmbient(0.15);
prop->SetDiffuse(0.85);
prop->SetSpecular(0.1);
prop->SetSpecularPower(100);
prop->SetSpecularColor(1, 1, 1);
prop->SetColor(1, 1, 1);
ren->AddActor(Actor5);
// Make the seed source not available on every ranks on purpose :
// tests the `UseLocalSeedSource = false` property of the stream tracer
vtkNew<vtkPolyData> lineSource;
constexpr int LINE_SOURCE_RESOLUTION = 20;
if (myId == 0)
{
vtkNew<vtkLineSource> LineSourceWidget0;
LineSourceWidget0->SetPoint1(13.9548, -0.47371, 31.7642);
LineSourceWidget0->SetPoint2(6.3766, -0.5886, 26.6274);
LineSourceWidget0->SetResolution(LINE_SOURCE_RESOLUTION);
LineSourceWidget0->Update();
lineSource->ShallowCopy(LineSourceWidget0->GetOutput());
}
vtkPStreamTracer* Stream0 = vtkPStreamTracer::New();
Stream0->UseLocalSeedSourceOff();
Stream0->SetInputConnection(tv->GetOutputPort());
Stream0->SetSourceData(lineSource);
Stream0->SetIntegrationStepUnit(2);
Stream0->SetMaximumPropagation(5);
Stream0->SetInitialIntegrationStep(0.5);
Stream0->SetIntegrationDirectionToBoth();
Stream0->SetIntegratorType(0);
Stream0->SetMaximumNumberOfSteps(2000);
Stream0->SetTerminalSpeed(1e-12);
vtkGeometryFilter* Geometry6 = vtkGeometryFilter::New();
Geometry6->SetInputConnection(Stream0->GetOutputPort());
vtkLookupTable* LookupTable1 = vtkLookupTable::New();
LookupTable1->SetNumberOfTableValues(256);
LookupTable1->SetHueRange(0, 0.66667);
LookupTable1->SetSaturationRange(1, 1);
LookupTable1->SetValueRange(1, 1);
LookupTable1->SetTableRange(0.197813, 0.710419);
LookupTable1->SetVectorComponent(0);
LookupTable1->Build();
vtkPolyDataMapper* Mapper6 = vtkPolyDataMapper::New();
Mapper6->SetInputConnection(Geometry6->GetOutputPort());
Mapper6->UseLookupTableScalarRangeOn();
Mapper6->SetScalarVisibility(1);
Mapper6->SetScalarModeToUsePointFieldData();
Mapper6->SelectColorArray("Density");
Mapper6->SetLookupTable(LookupTable1);
vtkActor* Actor6 = vtkActor::New();
Actor6->SetMapper(Mapper6);
prop = Actor6->GetProperty();
prop->SetRepresentationToSurface();
prop->SetInterpolationToGouraud();
prop->SetAmbient(0.15);
prop->SetDiffuse(0.85);
prop->SetSpecular(0);
prop->SetSpecularPower(1);
prop->SetSpecularColor(1, 1, 1);
ren->AddActor(Actor6);
vtkRenderWindowInteractor* iren = vtkRenderWindowInteractor::New();
iren->SetRenderWindow(renWin);
vtkCompositeRenderManager* compManager = vtkCompositeRenderManager::New();
compManager->SetRenderWindow(renWin);
compManager->SetController(controller);
compManager->InitializePieces();
if (myId)
{
compManager->InitializeRMIs();
controller->ProcessRMIs();
controller->Receive(args->retVal, 1, 0, 33);
}
else
{
renWin->Render();
*(args->retVal) = vtkRegressionTester::Test(args->argc, args->argv, renWin, 10);
for (int i = 1; i < numProcs; i++)
{
controller->TriggerRMI(i, vtkMultiProcessController::BREAK_RMI_TAG);
controller->Send(args->retVal, 1, i, 33);
}
}
if (*(args->retVal) == vtkRegressionTester::DO_INTERACTOR)
{
compManager->StartInteractor();
}
// ensure that the stream tracer doesn't use different ids for backwards and
// forward streamlines. we can check that by ensure that the seed ids is less
// than the original seed points (i.e. < 20).
if (auto seedIds =
vtkIntArray::SafeDownCast(Stream0->GetOutput()->GetCellData()->GetArray("SeedIds")))
{
const auto numPts = LINE_SOURCE_RESOLUTION + 1;
for (vtkIdType cc = 0; cc < seedIds->GetNumberOfTuples(); ++cc)
{
auto id = seedIds->GetTypedComponent(cc, 0);
if (id >= numPts)
{
cerr << "ERROR: invalid seed id received: " << id << endl;
}
}
}
else
{
cerr << "ERROR: missing 'SeedIds' array!" << endl;
}
renWin->Delete();
ren->Delete();
iren->Delete();
compManager->Delete();
Plot3D0->Delete();
tv->Delete();
Stream0->Delete();
LookupTable1->Delete();
Geometry5->Delete();
Geometry6->Delete();
Actor5->Delete();
Actor6->Delete();
Mapper5->Delete();
Mapper6->Delete();
}
int TestPStream(int argc, char* argv[])
{
vtkMPIController* contr = vtkMPIController::New();
contr->Initialize(&argc, &argv);
contr->CreateOutputWindow();
// When using MPI, the number of processes is determined
// by the external program which launches this application.
// However, when using threads, we need to set it ourselves.
if (contr->IsA("vtkThreadedController"))
{
// Set the number of processes to 2 for this example.
contr->SetNumberOfProcesses(2);
}
// Added for regression test.
// ----------------------------------------------
int retVal;
PStreamArgs_tmp args;
args.retVal = &retVal;
args.argc = argc;
args.argv = argv;
// ----------------------------------------------
contr->SetSingleMethod(MyMain, &args);
contr->SingleMethodExecute();
contr->Finalize();
contr->Delete();
return !retVal;
}
|