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 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
#include "vtkLagrangianBasicIntegrationModel.h"
#include "vtkBilinearQuadIntersection.h"
#include "vtkCellData.h"
#include "vtkDataArray.h"
#include "vtkDataObjectTypes.h"
#include "vtkDataSet.h"
#include "vtkDoubleArray.h"
#include "vtkFieldData.h"
#include "vtkGenericCell.h"
#include "vtkIntArray.h"
#include "vtkLagrangianParticle.h"
#include "vtkLagrangianParticleTracker.h"
#include "vtkLagrangianThreadedData.h"
#include "vtkLongLongArray.h"
#include "vtkMath.h"
#include "vtkNew.h"
#include "vtkPointData.h"
#include "vtkPoints.h"
#include "vtkQuad.h"
#include "vtkSetGet.h"
#include "vtkSmartPointer.h"
#include "vtkStaticCellLocator.h"
#include "vtkStringArray.h"
#include "vtkUnsignedCharArray.h"
#include "vtkVector.h"
#include <cassert>
#include <mutex>
#include <set>
#include <sstream>
#include <vector>
#define USER_SURFACE_TYPE 100 // Minimal value for user defined surface type
//------------------------------------------------------------------------------
typedef std::vector<vtkSmartPointer<vtkAbstractCellLocator>> LocatorsTypeBase;
VTK_ABI_NAMESPACE_BEGIN
class vtkLocatorsType : public LocatorsTypeBase
{
};
typedef std::vector<vtkSmartPointer<vtkDataSet>> DataSetsTypeBase;
class vtkDataSetsType : public DataSetsTypeBase
{
};
typedef std::pair<unsigned int, vtkSmartPointer<vtkDataSet>> SurfaceItem;
typedef std::vector<SurfaceItem> SurfaceTypeBase;
class vtkSurfaceType : public SurfaceTypeBase
{
};
typedef std::pair<unsigned int, double> PassThroughItem;
typedef std::set<PassThroughItem> PassThroughSetType;
//------------------------------------------------------------------------------
vtkLagrangianBasicIntegrationModel::vtkLagrangianBasicIntegrationModel()
: Locator(nullptr)
, Tolerance(1.0e-8)
, NonPlanarQuadSupport(false)
, UseInitialIntegrationTime(false)
, Tracker(nullptr)
{
SurfaceArrayDescription surfaceTypeDescription;
surfaceTypeDescription.nComp = 1;
surfaceTypeDescription.type = VTK_INT;
surfaceTypeDescription.enumValues.emplace_back(SURFACE_TYPE_MODEL, "ModelDefined");
surfaceTypeDescription.enumValues.emplace_back(SURFACE_TYPE_TERM, "Terminate");
surfaceTypeDescription.enumValues.emplace_back(SURFACE_TYPE_BOUNCE, "Bounce");
surfaceTypeDescription.enumValues.emplace_back(SURFACE_TYPE_BREAK, "BreakUp");
surfaceTypeDescription.enumValues.emplace_back(SURFACE_TYPE_PASS, "PassThrough");
this->SurfaceArrayDescriptions["SurfaceType"] = surfaceTypeDescription;
this->SeedArrayNames->InsertNextValue("ParticleInitialVelocity");
this->SeedArrayComps->InsertNextValue(3);
this->SeedArrayTypes->InsertNextValue(VTK_DOUBLE);
this->SeedArrayNames->InsertNextValue("ParticleInitialIntegrationTime");
this->SeedArrayComps->InsertNextValue(1);
this->SeedArrayTypes->InsertNextValue(VTK_DOUBLE);
this->Locators = new vtkLocatorsType;
this->DataSets = new vtkDataSetsType;
this->Surfaces = new vtkSurfaceType;
this->SurfaceLocators = new vtkLocatorsType;
// Using a vtkStaticCellLocator by default
vtkNew<vtkStaticCellLocator> locator;
this->SetLocator(locator);
this->LocatorsBuilt = false;
}
//------------------------------------------------------------------------------
vtkLagrangianBasicIntegrationModel::~vtkLagrangianBasicIntegrationModel()
{
this->ClearDataSets();
this->ClearDataSets(true);
this->SetLocator(nullptr);
delete this->Locators;
delete this->DataSets;
delete this->Surfaces;
delete this->SurfaceLocators;
}
//------------------------------------------------------------------------------
void vtkLagrangianBasicIntegrationModel::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
if (this->Locator)
{
os << indent << "Locator: " << endl;
this->Locator->PrintSelf(os, indent.GetNextIndent());
}
else
{
os << indent << "Locator: " << this->Locator << endl;
}
os << indent << "WeightsSize: " << this->WeightsSize << endl;
os << indent << "Tolerance: " << this->Tolerance << endl;
}
//------------------------------------------------------------------------------
void vtkLagrangianBasicIntegrationModel::SetTracker(vtkLagrangianParticleTracker* tracker)
{
this->Tracker = tracker;
}
//------------------------------------------------------------------------------
void vtkLagrangianBasicIntegrationModel::AddDataSet(
vtkDataSet* dataset, bool surface, unsigned int surfaceFlatIndex)
{
// Sanity check
if (!dataset || dataset->GetNumberOfPoints() == 0 || dataset->GetNumberOfCells() == 0)
{
vtkErrorMacro(<< "Dataset is null or empty");
return;
}
if (!this->Locator)
{
vtkErrorMacro(<< "Locator is null");
return;
}
// There seems to be some kind of problem with the garbage collector
// and the referencing of datasets and locators.
// In order to avoid leaks we shallow copy the dataset.
// This could be removed once this problem is fixed.
vtkSmartPointer<vtkDataObject> dob;
dob.TakeReference(vtkDataObjectTypes::NewDataObject(dataset->GetDataObjectType()));
vtkDataSet* datasetCpy = vtkDataSet::SafeDownCast(dob);
datasetCpy->ShallowCopy(dataset);
// insert the dataset into DataSet vector
if (surface)
{
this->Surfaces->push_back(std::make_pair(surfaceFlatIndex, datasetCpy));
}
else
{
this->DataSets->push_back(datasetCpy);
}
// insert a locator into Locators vector, non-null only for vtkPointSet
vtkSmartPointer<vtkAbstractCellLocator> locator = nullptr;
if (dataset->IsA("vtkPointSet"))
{
if (surface)
{
locator.TakeReference(vtkStaticCellLocator::New());
}
else
{
locator.TakeReference(this->Locator->NewInstance());
}
locator->SetTolerance(this->LocatorTolerance);
locator->SetDataSet(datasetCpy);
locator->CacheCellBoundsOn();
locator->AutomaticOn();
locator->BuildLocator();
}
else
{
// for non-vtkPointSet vtkDataSet, we are using their internal locator
// It is required to do a findCell call before the threaded code
// so the locator is built first.
double x[3];
dataset->GetPoint(0, x);
vtkNew<vtkGenericCell> cell;
dataset->GetCell(0, cell);
int subId;
double pcoords[3];
std::vector<double> weights(dataset->GetMaxCellSize());
dataset->FindCell(x, nullptr, cell, 0, 0, subId, pcoords, weights.data());
}
// Add locator
if (surface)
{
this->SurfaceLocators->push_back(locator);
}
else
{
this->Locators->push_back(locator);
this->WeightsSize = std::max(this->WeightsSize, dataset->GetMaxCellSize());
}
}
//------------------------------------------------------------------------------
void vtkLagrangianBasicIntegrationModel::ClearDataSets(bool surface)
{
if (surface)
{
this->Surfaces->clear();
this->SurfaceLocators->clear();
}
else
{
this->DataSets->clear();
this->Locators->clear();
this->WeightsSize = 0;
}
}
//------------------------------------------------------------------------------
int vtkLagrangianBasicIntegrationModel::FunctionValues(double* x, double* f, void* userData)
{
// Sanity check
if (this->DataSets->empty())
{
vtkErrorMacro(<< "Please add a dataset to the integration model before integrating.");
return 0;
}
vtkLagrangianParticle* particle = static_cast<vtkLagrangianParticle*>(userData);
if (!particle)
{
vtkErrorMacro(<< "Could not recover vtkLagrangianParticle");
return 0;
}
vtkAbstractCellLocator* loc;
vtkDataSet* ds;
vtkIdType cellId;
double* weights;
if (this->FindInLocators(x, particle, ds, cellId, loc, weights))
{
// Evaluate integration model velocity field with the found cell
return this->FunctionValues(particle, ds, cellId, weights, x, f);
}
// Can't evaluate
return 0;
}
//------------------------------------------------------------------------------
void vtkLagrangianBasicIntegrationModel::SetLocator(vtkAbstractCellLocator* locator)
{
if (this->Locator != locator)
{
vtkAbstractCellLocator* temp = this->Locator;
this->Locator = locator;
if (this->Locator)
{
this->Locator->Register(this);
}
if (temp)
{
temp->UnRegister(this);
}
this->Modified();
this->LocatorsBuilt = false;
}
}
//------------------------------------------------------------------------------
vtkLagrangianParticle* vtkLagrangianBasicIntegrationModel::ComputeSurfaceInteraction(
vtkLagrangianParticle* particle, std::queue<vtkLagrangianParticle*>& particles,
unsigned int& surfaceFlatIndex, PassThroughParticlesType& passThroughParticles)
{
vtkDataSet* surface = nullptr;
double interFactor = 1.0;
vtkIdType cellId = -1;
int surfaceType = -1;
PassThroughSetType passThroughInterSet;
bool perforation;
do
{
passThroughInterSet.clear();
perforation = false;
for (size_t iDs = 0; iDs < this->Surfaces->size(); iDs++)
{
vtkAbstractCellLocator* loc = (*this->SurfaceLocators)[iDs];
vtkDataSet* tmpSurface = (*this->Surfaces)[iDs].second;
vtkGenericCell* cell = particle->GetThreadedData()->GenericCell;
vtkIdList* cellList = particle->GetThreadedData()->IdList;
cellList->Reset();
loc->FindCellsAlongLine(
particle->GetPosition(), particle->GetNextPosition(), this->Tolerance, cellList);
for (vtkIdType i = 0; i < cellList->GetNumberOfIds(); i++)
{
double tmpFactor;
double tmpPoint[3];
vtkIdType tmpCellId = cellList->GetId(i);
tmpSurface->GetCell(tmpCellId, cell);
if (this->IntersectWithLine(particle, cell->GetRepresentativeCell(),
particle->GetPosition(), particle->GetNextPosition(), this->Tolerance, tmpFactor,
tmpPoint) == 0)
{
// FindCellAlongsLines sometimes get false positives
continue;
}
if (tmpFactor < interFactor)
{
// Recover surface type for this cell
double surfaceTypeDbl;
// "SurfaceType" is at index 2
int surfaceIndex = 2;
vtkIdType surfaceTupleId = tmpCellId;
// When using field data surface type, tuple index is 0
int ret = this->GetFlowOrSurfaceDataFieldAssociation(surfaceIndex);
if (ret == -1)
{
vtkErrorMacro(<< "Surface Type is not correctly set in surface dataset");
return nullptr;
}
if (ret == vtkDataObject::FIELD_ASSOCIATION_NONE)
{
surfaceTupleId = 0;
}
if (!this->GetFlowOrSurfaceData(
particle, surfaceIndex, tmpSurface, surfaceTupleId, nullptr, &surfaceTypeDbl))
{
vtkErrorMacro(
<< "Surface Type is not set in surface dataset or"
" have incorrect number of components, cannot use surface interaction");
return nullptr;
}
int tmpSurfaceType = static_cast<int>(surfaceTypeDbl);
if (tmpSurfaceType == vtkLagrangianBasicIntegrationModel::SURFACE_TYPE_PASS)
{
// Pass Through Surface, store for later
passThroughInterSet.insert(std::make_pair((*this->Surfaces)[iDs].first, tmpFactor));
}
else
{
if (tmpSurface == particle->GetLastSurfaceDataSet() &&
tmpCellId == particle->GetLastSurfaceCellId())
{
perforation = this->CheckSurfacePerforation(particle, tmpSurface, tmpCellId);
if (perforation)
{
break;
}
continue;
}
// Interacting surface
interFactor = tmpFactor;
surface = tmpSurface;
surfaceFlatIndex = (*this->Surfaces)[iDs].first;
surfaceType = tmpSurfaceType;
cellId = tmpCellId;
}
}
}
}
} while (perforation);
PassThroughSetType::iterator it;
for (it = passThroughInterSet.begin(); it != passThroughInterSet.end(); ++it)
{
PassThroughItem item = *it;
// As one cas see in the test above, if a pass through surface intersects at the exact
// same location than the point computed using the intersection factor,
// we do not store the intersection.
// pass through are considered non priority, and do not intersects
// when at the exact the same place as the main intersection
if (item.second < interFactor)
{
vtkLagrangianParticle* clone = particle->CloneParticle();
clone->SetInteraction(vtkLagrangianParticle::SURFACE_INTERACTION_PASS);
this->InterpolateNextParticleVariables(clone, item.second);
passThroughParticles.emplace(item.first, clone);
}
}
// Store surface cache (even nullptr one)
particle->SetLastSurfaceCell(surface, cellId);
bool recordInteraction = false;
vtkLagrangianParticle* interactionParticle = nullptr;
if (cellId != -1)
{
// There is an actual interaction
// Position next point onto surface
this->InterpolateNextParticleVariables(particle, interFactor, true);
interactionParticle = particle->CloneParticle();
switch (surfaceType)
{
case vtkLagrangianBasicIntegrationModel::SURFACE_TYPE_TERM:
recordInteraction = this->TerminateParticle(particle);
break;
case vtkLagrangianBasicIntegrationModel::SURFACE_TYPE_BOUNCE:
recordInteraction = this->BounceParticle(particle, surface, cellId);
break;
case vtkLagrangianBasicIntegrationModel::SURFACE_TYPE_BREAK:
recordInteraction = this->BreakParticle(particle, surface, cellId, particles);
break;
case vtkLagrangianBasicIntegrationModel::SURFACE_TYPE_PASS:
vtkErrorMacro(<< "Something went wrong with pass-through surface, "
"next results will be invalid.");
return nullptr;
default:
if (surfaceType != SURFACE_TYPE_MODEL && surfaceType < USER_SURFACE_TYPE)
{
vtkWarningMacro("Please do not use user defined surface type under "
<< USER_SURFACE_TYPE
<< " as they may be used in the future by the Lagrangian Particle Tracker");
}
recordInteraction =
this->InteractWithSurface(surfaceType, particle, surface, cellId, particles);
break;
}
interactionParticle->SetInteraction(particle->GetInteraction());
}
if (!recordInteraction)
{
delete interactionParticle;
interactionParticle = nullptr;
}
return interactionParticle;
}
//------------------------------------------------------------------------------
bool vtkLagrangianBasicIntegrationModel::TerminateParticle(vtkLagrangianParticle* particle)
{
particle->SetTermination(vtkLagrangianParticle::PARTICLE_TERMINATION_SURF_TERMINATED);
particle->SetInteraction(vtkLagrangianParticle::SURFACE_INTERACTION_TERMINATED);
return true;
}
//------------------------------------------------------------------------------
bool vtkLagrangianBasicIntegrationModel::BounceParticle(
vtkLagrangianParticle* particle, vtkDataSet* surface, vtkIdType cellId)
{
particle->SetInteraction(vtkLagrangianParticle::SURFACE_INTERACTION_BOUNCE);
// Recover surface normal
// Surface should have been computed already
assert(surface->GetCellData()->GetNormals() != nullptr);
double normal[3];
surface->GetCellData()->GetNormals()->GetTuple(cellId, normal);
// Change velocity for bouncing and set interaction point
double* nextVel = particle->GetNextVelocity();
double dot = vtkMath::Dot(normal, nextVel);
for (int i = 0; i < 3; i++)
{
nextVel[i] = nextVel[i] - 2 * dot * normal[i];
}
return true;
}
//------------------------------------------------------------------------------
bool vtkLagrangianBasicIntegrationModel::BreakParticle(vtkLagrangianParticle* particle,
vtkDataSet* surface, vtkIdType cellId, std::queue<vtkLagrangianParticle*>& particles)
{
// Terminate particle
particle->SetTermination(vtkLagrangianParticle::PARTICLE_TERMINATION_SURF_BREAK);
particle->SetInteraction(vtkLagrangianParticle::SURFACE_INTERACTION_BREAK);
// Recover surface normal
// Surface should have been computed already
assert(surface->GetCellData()->GetNormals() != nullptr);
double normal[3];
surface->GetCellData()->GetNormals()->GetTuple(cellId, normal);
// Create new particles
vtkLagrangianParticle* particle1 = particle->NewParticle(this->Tracker->GetNewParticleId());
vtkLagrangianParticle* particle2 = particle->NewParticle(this->Tracker->GetNewParticleId());
// Compute bounce for each new particle
double* nextVel = particle->GetNextVelocity();
double* part1Vel = particle1->GetVelocity();
double* part2Vel = particle2->GetVelocity();
double dot = vtkMath::Dot(normal, nextVel);
double cross[3];
vtkMath::Cross(normal, nextVel, cross);
double bounceNorm = vtkMath::Norm(nextVel);
for (int i = 0; i < 3; i++)
{
part1Vel[i] = nextVel[i] - 2 * dot * normal[i] + cross[i];
part2Vel[i] = nextVel[i] - 2 * dot * normal[i] - cross[i];
}
double part1Norm = vtkMath::Norm(part1Vel);
double part2Norm = vtkMath::Norm(part2Vel);
for (int i = 0; i < 3; i++)
{
if (part1Norm != 0.0)
{
part1Vel[i] = part1Vel[i] / part1Norm * bounceNorm;
}
if (part2Norm != 0.0)
{
part2Vel[i] = part2Vel[i] / part2Norm * bounceNorm;
}
}
// push new particle in queue
// Mutex Locked Area
std::lock_guard<std::mutex> guard(this->ParticleQueueMutex);
particles.push(particle1);
particles.push(particle2);
return true;
}
//------------------------------------------------------------------------------
bool vtkLagrangianBasicIntegrationModel::InteractWithSurface(int vtkNotUsed(surfaceType),
vtkLagrangianParticle* particle, vtkDataSet* vtkNotUsed(surface), vtkIdType vtkNotUsed(cellId),
std::queue<vtkLagrangianParticle*>& vtkNotUsed(particles))
{
return this->TerminateParticle(particle);
}
//------------------------------------------------------------------------------
bool vtkLagrangianBasicIntegrationModel::IntersectWithLine(vtkLagrangianParticle* particle,
vtkCell* cell, double p1[3], double p2[3], double tol, double& t, double x[3])
{
// Non planar quad support
if (this->NonPlanarQuadSupport)
{
vtkQuad* quad = vtkQuad::SafeDownCast(cell);
if (quad)
{
if (p1[0] == p2[0] && p1[1] == p2[1] && p1[2] == p2[2])
{
// the 2 points are the same, no intersection
return false;
}
// create 4 points and fill the bqi
vtkPoints* points = quad->GetPoints();
vtkBilinearQuadIntersection* bqi = particle->GetThreadedData()->BilinearQuadIntersection;
points->GetPoint(0, bqi->GetP00Data());
points->GetPoint(3, bqi->GetP01Data());
points->GetPoint(1, bqi->GetP10Data());
points->GetPoint(2, bqi->GetP11Data());
// Create the ray
vtkVector3d r(p1[0], p1[1], p1[2]); // origin of the ray
vtkVector3d q(p2[0] - p1[0], p2[1] - p1[1], p2[2] - p1[2]); // a ray direction
// the original t before q is normalised
double tOrig = q.Norm();
q.Normalize();
vtkVector3d uv; // variables returned
if (bqi->RayIntersection(r, q, uv)) // run intersection test
{
// we have an intersection
t = uv.GetZ() / tOrig;
if (t >= 0.0 && t <= 1.0)
{
// Recover intersection between p1 and p2
vtkVector3d intersec = bqi->ComputeCartesianCoordinates(uv.GetX(), uv.GetY());
x[0] = intersec.GetX();
x[1] = intersec.GetY();
x[2] = intersec.GetZ();
return true;
}
else
{
// intersection outside of p1p2
return false;
}
}
else
{
// no intersection
return false;
}
}
}
// Standard cell intersection
double pcoords[3];
int subId;
int ret = cell->IntersectWithLine(p1, p2, tol, t, x, pcoords, subId);
return ret != 0;
}
//------------------------------------------------------------------------------
void vtkLagrangianBasicIntegrationModel::InterpolateNextParticleVariables(
vtkLagrangianParticle* particle, double interpolationFactor, bool forceInside)
{
if (forceInside)
{
// Reducing interpolationFactor to ensure we stay in domain
double magnitude = particle->GetPositionVectorMagnitude();
interpolationFactor *= (magnitude - this->Tolerance / interpolationFactor) / magnitude;
}
double* current = particle->GetEquationVariables();
double* next = particle->GetNextEquationVariables();
for (int i = 0; i < particle->GetNumberOfVariables(); i++)
{
next[i] = current[i] + (next[i] - current[i]) * interpolationFactor;
}
double& stepTime = particle->GetStepTimeRef();
stepTime *= interpolationFactor;
}
//------------------------------------------------------------------------------
bool vtkLagrangianBasicIntegrationModel::CheckSurfacePerforation(
vtkLagrangianParticle* particle, vtkDataSet* surface, vtkIdType cellId)
{
// Recover surface normal
// Surface should have been computed already
assert(surface->GetCellData()->GetNormals() != nullptr);
double normal[3];
surface->GetCellData()->GetNormals()->GetTuple(cellId, normal);
// Recover particle vector
double prevToCurr[3];
double currToNext[3];
for (int i = 0; i < 3; i++)
{
prevToCurr[i] = particle->GetPosition()[i] - particle->GetPrevPosition()[i];
currToNext[i] = particle->GetNextPosition()[i] - particle->GetPosition()[i];
}
// Check directions
double dot = vtkMath::Dot(normal, currToNext);
double prevDot = vtkMath::Dot(normal, prevToCurr);
double* nextVel = particle->GetNextVelocity();
double velDot = vtkMath::Dot(normal, nextVel);
if (dot == 0 || prevDot == 0 || prevDot * dot > 0)
{
// vector does not project on the same directions, perforation !
for (int i = 0; i < 3; i++)
{
// Simple perforation management via symmetry
currToNext[i] = currToNext[i] - 2 * dot * normal[i];
particle->GetNextPosition()[i] = particle->GetPosition()[i] + currToNext[i];
nextVel[i] = nextVel[i] - 2 * velDot * normal[i];
}
return true;
}
return false;
}
//------------------------------------------------------------------------------
void vtkLagrangianBasicIntegrationModel::SetInputArrayToProcess(
int idx, int port, int connection, int fieldAssociation, const char* name)
{
// Store the array metadata
vtkLagrangianBasicIntegrationModel::ArrayVal vals;
vals.val[0] = port;
vals.val[1] = connection;
vals.val[2] = fieldAssociation;
ArrayMapVal array = ArrayMapVal(vals, name);
this->InputArrays[idx] = array;
this->Modified();
}
//------------------------------------------------------------------------------
bool vtkLagrangianBasicIntegrationModel::FindInLocators(double* x, vtkLagrangianParticle* particle)
{
vtkIdType cellId;
vtkDataSet* dataset;
vtkAbstractCellLocator* loc;
double* weights;
return this->FindInLocators(x, particle, dataset, cellId, loc, weights);
}
//------------------------------------------------------------------------------
bool vtkLagrangianBasicIntegrationModel::FindInLocators(
double* x, vtkLagrangianParticle* particle, vtkDataSet*& dataset, vtkIdType& cellId)
{
vtkAbstractCellLocator* loc;
double* weights;
return this->FindInLocators(x, particle, dataset, cellId, loc, weights);
}
//------------------------------------------------------------------------------
bool vtkLagrangianBasicIntegrationModel::FindInLocators(double* x, vtkLagrangianParticle* particle,
vtkDataSet*& dataset, vtkIdType& cellId, vtkAbstractCellLocator*& loc, double*& weights)
{
// Sanity check
if (this->DataSets->empty())
{
return false;
}
vtkLagrangianThreadedData* data = particle->GetThreadedData();
vtkGenericCell* cell = data->GenericCell;
cellId = data->LastCellId;
double* lastPosition = data->LastCellPosition;
weights = data->LastWeights.data();
if (data->LastDataSetIndex != -1)
{
loc = (*this->Locators)[data->LastDataSetIndex];
dataset = (*this->DataSets)[data->LastDataSetIndex];
// Check the last cell
if (cellId != -1)
{
// Check if previous call was the same
if (lastPosition[0] == x[0] && lastPosition[1] == x[1] && lastPosition[2] == x[2])
{
return true;
}
// If not, check if new position is in the same cell
double pcoords[3];
int subId;
double dist2;
dataset->GetCell(cellId, cell);
if (cell->EvaluatePosition(x, nullptr, subId, pcoords, dist2, weights) == 1)
{
std::copy(x, x + 3, data->LastCellPosition);
return true;
}
}
// Not in provided cell cache, try the whole dataset
cellId = this->FindInLocator(dataset, loc, x, cell, weights);
if (cellId != -1)
{
data->LastCellId = cellId;
std::copy(x, x + 3, data->LastCellPosition);
return true;
}
}
// No cache or Cache miss, try other datasets
for (size_t iDs = 0; iDs < this->DataSets->size(); iDs++)
{
loc = (*this->Locators)[iDs];
dataset = (*this->DataSets)[iDs];
if (static_cast<int>(iDs) != data->LastDataSetIndex)
{
cellId = this->FindInLocator(dataset, loc, x, cell, weights);
if (cellId != -1)
{
// Store the found cell for caching purpose
data->LastDataSetIndex = static_cast<int>(iDs);
data->LastCellId = cellId;
std::copy(x, x + 3, data->LastCellPosition);
return true;
}
}
}
data->LastCellId = -1;
loc = nullptr;
dataset = nullptr;
return false;
}
//------------------------------------------------------------------------------
vtkIdType vtkLagrangianBasicIntegrationModel::FindInLocator(vtkDataSet* dataSet,
vtkAbstractCellLocator* loc, double* x, vtkGenericCell* cell, double* weights)
{
double pcoords[3];
vtkIdType cellId;
if (loc)
{
// Use locator to find the cell containing x
cellId = loc->FindCell(x, this->Tolerance, cell, pcoords, weights);
}
else
{
// No locator, dataSet is vtkImageData or vtkRectilinearGrid,
// which does not require any cellToUse when calling FindCell.
int subId;
cellId = dataSet->FindCell(x, nullptr, cell, 0, this->Tolerance, subId, pcoords, weights);
}
// Ignore Ghost cells
if (cellId != -1 && dataSet->GetCellGhostArray() &&
dataSet->GetCellGhostArray()->GetValue(cellId) & vtkDataSetAttributes::DUPLICATECELL)
{
return -1;
}
return cellId;
}
//------------------------------------------------------------------------------
vtkAbstractArray* vtkLagrangianBasicIntegrationModel::GetSeedArray(
int idx, vtkLagrangianParticle* particle)
{
return this->GetSeedArray(idx, particle->GetSeedData());
}
//------------------------------------------------------------------------------
vtkAbstractArray* vtkLagrangianBasicIntegrationModel::GetSeedArray(int idx, vtkPointData* pointData)
{
// Check the provided index
if (this->InputArrays.count(idx) == 0)
{
vtkErrorMacro(<< "No arrays at index:" << idx);
return nullptr;
}
ArrayMapVal arrayIndexes = this->InputArrays[idx];
// Check port, should be 1 for Source
if (arrayIndexes.first.val[0] != 1)
{
vtkErrorMacro(<< "This input array at idx " << idx << " named " << arrayIndexes.second
<< " is not a particle data array");
return nullptr;
}
// Check connection, should be 0, no multiple connection
if (arrayIndexes.first.val[1] != 0)
{
vtkErrorMacro(<< "This filter does not support multiple connections by port");
return nullptr;
}
// Check field association
switch (arrayIndexes.first.val[2])
{
case vtkDataObject::FIELD_ASSOCIATION_POINTS:
{
// Recover array
vtkAbstractArray* array = pointData->GetAbstractArray(arrayIndexes.second.c_str());
if (!array)
{
vtkErrorMacro(<< "This input array at idx " << idx << " named " << arrayIndexes.second
<< " cannot be found, please check arrays.");
}
return array;
}
default:
vtkErrorMacro(<< "Only FIELD_ASSOCIATION_POINTS are supported in particle data input");
}
return nullptr;
}
//------------------------------------------------------------------------------
int vtkLagrangianBasicIntegrationModel::GetFlowOrSurfaceDataNumberOfComponents(
int idx, vtkDataSet* dataSet)
{
// Check index
if (this->InputArrays.count(idx) == 0)
{
vtkErrorMacro(<< "No arrays at index:" << idx);
return -1;
}
ArrayMapVal arrayIndexes = this->InputArrays[idx];
// Check port, should be 0 for Input or 2 for Surface
if (arrayIndexes.first.val[0] != 0 && arrayIndexes.first.val[0] != 2)
{
vtkErrorMacro(<< "This input array at idx " << idx << " named " << arrayIndexes.second
<< " is not a flow or surface data array");
return -1;
}
// Check connection, should be 0, no multiple connection supported
if (arrayIndexes.first.val[1] != 0)
{
vtkErrorMacro(<< "This filter does not support multiple connections by port");
return -1;
}
// Check dataset is present
if (!dataSet)
{
vtkErrorMacro(<< "Please provide a dataSet when calling this method "
"for input arrays coming from the flow or surface");
return -1;
}
// Check fieldAssociation
switch (arrayIndexes.first.val[2])
{
// Point needs interpolation
case vtkDataObject::FIELD_ASSOCIATION_POINTS:
{
vtkDataArray* array = dataSet->GetPointData()->GetArray(arrayIndexes.second.c_str());
if (!array)
{
vtkErrorMacro(<< "This input array at idx " << idx << " named " << arrayIndexes.second
<< " cannot be found, please check arrays.");
return -1;
}
return array->GetNumberOfComponents();
}
case vtkDataObject::FIELD_ASSOCIATION_CELLS:
{
vtkDataArray* array = dataSet->GetCellData()->GetArray(arrayIndexes.second.c_str());
if (!array)
{
vtkErrorMacro(<< "This input array at idx " << idx << " named " << arrayIndexes.second
<< " cannot be found, please check arrays.");
return -1;
}
return array->GetNumberOfComponents();
}
case vtkDataObject::FIELD_ASSOCIATION_NONE:
{
vtkDataArray* array = dataSet->GetFieldData()->GetArray(arrayIndexes.second.c_str());
if (!array)
{
vtkErrorMacro(<< "This input array at idx " << idx << " named " << arrayIndexes.second
<< " cannot be found, please check arrays.");
return false;
}
return array->GetNumberOfComponents();
}
default:
vtkErrorMacro(<< "Only FIELD_ASSOCIATION_POINTS and FIELD_ASSOCIATION_CELLS "
<< "are supported in this method");
}
return -1;
}
//------------------------------------------------------------------------------
bool vtkLagrangianBasicIntegrationModel::GetFlowOrSurfaceData(vtkLagrangianParticle* particle,
int idx, vtkDataSet* dataSet, vtkIdType tupleId, double* weights, double* data)
{
// Check index
if (this->InputArrays.count(idx) == 0)
{
vtkErrorMacro(<< "No arrays at index:" << idx);
return false;
}
ArrayMapVal arrayIndexes = this->InputArrays[idx];
// Check port, should be 0 for Input or 2 for Surface
if (arrayIndexes.first.val[0] != 0 && arrayIndexes.first.val[0] != 2)
{
vtkErrorMacro(<< "This input array at idx " << idx << " named " << arrayIndexes.second
<< " is not a flow or surface data array");
return false;
}
// Check connection, should be 0, no multiple connection supported
if (arrayIndexes.first.val[1] != 0)
{
vtkErrorMacro(<< "This filter does not support multiple connections by port");
return false;
}
// Check dataset is present
if (!dataSet)
{
vtkErrorMacro(<< "Please provide a dataSet when calling this method "
"for input arrays coming from the flow or surface");
return false;
}
// Check fieldAssociation
switch (arrayIndexes.first.val[2])
{
// Point needs interpolation
case vtkDataObject::FIELD_ASSOCIATION_POINTS:
{
if (!weights)
{
vtkErrorMacro(<< "This input array at idx " << idx << " named " << arrayIndexes.second
<< " is a PointData, yet no weights have been provided");
return false;
}
vtkDataArray* array = dataSet->GetPointData()->GetArray(arrayIndexes.second.c_str());
if (!array)
{
vtkErrorMacro(<< "This input array at idx " << idx << " named " << arrayIndexes.second
<< " cannot be found, please check arrays.");
return false;
}
if (tupleId >= dataSet->GetNumberOfCells())
{
vtkErrorMacro(<< "This input array at idx " << idx << " named " << arrayIndexes.second
<< " does not contain cellId :" << tupleId << " . Please check arrays.");
return false;
}
// Manual interpolation of data at particle location
vtkIdList* idList = particle->GetThreadedData()->IdList;
dataSet->GetCellPoints(tupleId, idList);
for (int j = 0; j < array->GetNumberOfComponents(); j++)
{
data[j] = 0;
for (int i = 0; i < idList->GetNumberOfIds(); i++)
{
data[j] += weights[i] * array->GetComponent(idList->GetId(i), j);
}
}
return true;
}
case vtkDataObject::FIELD_ASSOCIATION_CELLS:
{
if (tupleId >= dataSet->GetNumberOfCells())
{
vtkErrorMacro(<< "This input array at idx " << idx << " named " << arrayIndexes.second
<< " does not contain cellId :" << tupleId << " . Please check arrays.");
return false;
}
vtkDataArray* array = dataSet->GetCellData()->GetArray(arrayIndexes.second.c_str());
if (!array)
{
vtkErrorMacro(<< "This input array at idx " << idx << " named " << arrayIndexes.second
<< " cannot be found, please check arrays.");
return false;
}
array->GetTuple(tupleId, data);
return true;
}
case vtkDataObject::FIELD_ASSOCIATION_NONE:
{
vtkDataArray* array = dataSet->GetFieldData()->GetArray(arrayIndexes.second.c_str());
if (!array || tupleId >= array->GetNumberOfTuples())
{
vtkErrorMacro(<< "This input array at idx " << idx << " named " << arrayIndexes.second
<< " cannot be found in FieldData or does not contain"
"tuple index: "
<< tupleId << " , please check arrays.");
return false;
}
array->GetTuple(tupleId, data);
return true;
}
default:
vtkErrorMacro(<< "Only FIELD_ASSOCIATION_POINTS and FIELD_ASSOCIATION_CELLS "
<< "are supported in this method");
}
return false;
}
//------------------------------------------------------------------------------
int vtkLagrangianBasicIntegrationModel::GetFlowOrSurfaceDataFieldAssociation(int idx)
{
// Check index
if (this->InputArrays.count(idx) == 0)
{
vtkErrorMacro(<< "No arrays at index:" << idx);
return -1;
}
ArrayMapVal arrayIndexes = this->InputArrays[idx];
// Check port, should be 0 for Input
if (arrayIndexes.first.val[0] != 0 && arrayIndexes.first.val[0] != 2)
{
vtkErrorMacro(<< "This input array at idx " << idx << " named " << arrayIndexes.second
<< " is not a flow or surface data array");
return -1;
}
// Check connection, should be 0, no multiple connection supported
if (arrayIndexes.first.val[1] != 0)
{
vtkErrorMacro(<< "This filter does not support multiple connections by port");
return -1;
}
return arrayIndexes.first.val[2];
}
//------------------------------------------------------------------------------
vtkStringArray* vtkLagrangianBasicIntegrationModel::GetSeedArrayNames()
{
return this->SeedArrayNames;
}
//------------------------------------------------------------------------------
vtkIntArray* vtkLagrangianBasicIntegrationModel::GetSeedArrayComps()
{
return this->SeedArrayComps;
}
//------------------------------------------------------------------------------
vtkIntArray* vtkLagrangianBasicIntegrationModel::GetSeedArrayTypes()
{
return this->SeedArrayTypes;
}
//------------------------------------------------------------------------------
vtkStringArray* vtkLagrangianBasicIntegrationModel::GetSurfaceArrayNames()
{
this->SurfaceArrayNames->SetNumberOfValues(0);
for (auto it = this->SurfaceArrayDescriptions.begin(); it != this->SurfaceArrayDescriptions.end();
++it)
{
this->SurfaceArrayNames->InsertNextValue(it->first.c_str());
}
return this->SurfaceArrayNames;
}
//------------------------------------------------------------------------------
vtkIntArray* vtkLagrangianBasicIntegrationModel::GetSurfaceArrayComps()
{
this->SurfaceArrayComps->SetNumberOfValues(0);
std::map<std::string, SurfaceArrayDescription>::const_iterator it;
for (it = this->SurfaceArrayDescriptions.begin(); it != this->SurfaceArrayDescriptions.end();
++it)
{
this->SurfaceArrayComps->InsertNextValue(it->second.nComp);
}
return this->SurfaceArrayComps;
}
//------------------------------------------------------------------------------
int vtkLagrangianBasicIntegrationModel::GetWeightsSize()
{
return this->WeightsSize;
}
//------------------------------------------------------------------------------
vtkStringArray* vtkLagrangianBasicIntegrationModel::GetSurfaceArrayEnumValues()
{
this->SurfaceArrayEnumValues->SetNumberOfValues(0);
std::map<std::string, SurfaceArrayDescription>::const_iterator it;
for (it = this->SurfaceArrayDescriptions.begin(); it != this->SurfaceArrayDescriptions.end();
++it)
{
this->SurfaceArrayEnumValues->InsertVariantValue(
this->SurfaceArrayEnumValues->GetNumberOfValues(), it->second.enumValues.size());
for (size_t i = 0; i < it->second.enumValues.size(); i++)
{
this->SurfaceArrayEnumValues->InsertVariantValue(
this->SurfaceArrayEnumValues->GetNumberOfValues(), it->second.enumValues[i].first);
this->SurfaceArrayEnumValues->InsertNextValue(it->second.enumValues[i].second.c_str());
}
}
return this->SurfaceArrayEnumValues;
}
//------------------------------------------------------------------------------
vtkDoubleArray* vtkLagrangianBasicIntegrationModel::GetSurfaceArrayDefaultValues()
{
this->SurfaceArrayDefaultValues->SetNumberOfValues(0);
std::map<std::string, SurfaceArrayDescription>::const_iterator it;
for (it = this->SurfaceArrayDescriptions.begin(); it != this->SurfaceArrayDescriptions.end();
++it)
{
std::vector<double> defaultValues(it->second.nComp);
for (size_t iDs = 0; iDs < this->Surfaces->size(); iDs++)
{
this->ComputeSurfaceDefaultValues(
it->first.c_str(), (*this->Surfaces)[iDs].second, it->second.nComp, defaultValues.data());
this->SurfaceArrayDefaultValues->InsertNextTuple(defaultValues.data());
}
}
return this->SurfaceArrayDefaultValues;
}
//------------------------------------------------------------------------------
vtkIntArray* vtkLagrangianBasicIntegrationModel::GetSurfaceArrayTypes()
{
this->SurfaceArrayTypes->SetNumberOfValues(0);
std::map<std::string, SurfaceArrayDescription>::const_iterator it;
for (it = this->SurfaceArrayDescriptions.begin(); it != this->SurfaceArrayDescriptions.end();
++it)
{
this->SurfaceArrayTypes->InsertNextValue(it->second.type);
}
return this->SurfaceArrayTypes;
}
//------------------------------------------------------------------------------
bool vtkLagrangianBasicIntegrationModel::ManualIntegration(
vtkInitialValueProblemSolver* vtkNotUsed(integrator), double* vtkNotUsed(xcur),
double* vtkNotUsed(xnext), double vtkNotUsed(t), double& vtkNotUsed(delT),
double& vtkNotUsed(delTActual), double vtkNotUsed(minStep), double vtkNotUsed(maxStep),
double vtkNotUsed(maxError), double vtkNotUsed(cellLength), double& vtkNotUsed(error),
int& vtkNotUsed(integrationResult), vtkLagrangianParticle* vtkNotUsed(particle))
{
return false;
}
//------------------------------------------------------------------------------
void vtkLagrangianBasicIntegrationModel::ComputeSurfaceDefaultValues(
const char* arrayName, vtkDataSet* vtkNotUsed(dataset), int nComponents, double* defaultValues)
{
double defVal =
(strcmp(arrayName, "SurfaceType") == 0) ? static_cast<double>(SURFACE_TYPE_TERM) : 0.0;
std::fill(defaultValues, defaultValues + nComponents, defVal);
}
//------------------------------------------------------------------------------
vtkLagrangianThreadedData* vtkLagrangianBasicIntegrationModel::InitializeThreadedData()
{
vtkLagrangianThreadedData* data = new vtkLagrangianThreadedData();
data->LastWeights.resize(this->GetWeightsSize());
return data;
}
//------------------------------------------------------------------------------
void vtkLagrangianBasicIntegrationModel::FinalizeThreadedData(vtkLagrangianThreadedData*& data)
{
delete data;
data = nullptr;
}
//------------------------------------------------------------------------------
void vtkLagrangianBasicIntegrationModel::InitializeParticleData(
vtkFieldData* particleData, int maxTuple)
{
vtkNew<vtkIntArray> particleStepNumArray;
particleStepNumArray->SetName("StepNumber");
particleStepNumArray->SetNumberOfComponents(1);
particleStepNumArray->Allocate(maxTuple);
particleData->AddArray(particleStepNumArray);
vtkNew<vtkDoubleArray> particleVelArray;
particleVelArray->SetName("ParticleVelocity");
particleVelArray->SetNumberOfComponents(3);
particleVelArray->Allocate(maxTuple * 3);
particleData->AddArray(particleVelArray);
vtkNew<vtkDoubleArray> particleIntegrationTimeArray;
particleIntegrationTimeArray->SetName("IntegrationTime");
particleIntegrationTimeArray->SetNumberOfComponents(1);
particleIntegrationTimeArray->Allocate(maxTuple);
particleData->AddArray(particleIntegrationTimeArray);
}
//------------------------------------------------------------------------------
void vtkLagrangianBasicIntegrationModel::InitializePathData(vtkFieldData* data)
{
vtkNew<vtkLongLongArray> particleIdArray;
particleIdArray->SetName("Id");
particleIdArray->SetNumberOfComponents(1);
data->AddArray(particleIdArray);
vtkNew<vtkLongLongArray> particleParentIdArray;
particleParentIdArray->SetName("ParentId");
particleParentIdArray->SetNumberOfComponents(1);
data->AddArray(particleParentIdArray);
vtkNew<vtkLongLongArray> particleSeedIdArray;
particleSeedIdArray->SetName("SeedId");
particleSeedIdArray->SetNumberOfComponents(1);
data->AddArray(particleSeedIdArray);
vtkNew<vtkIntArray> particleTerminationArray;
particleTerminationArray->SetName("Termination");
particleTerminationArray->SetNumberOfComponents(1);
data->AddArray(particleTerminationArray);
}
//------------------------------------------------------------------------------
void vtkLagrangianBasicIntegrationModel::InitializeInteractionData(vtkFieldData* data)
{
vtkNew<vtkIntArray> interactionArray;
interactionArray->SetName("Interaction");
interactionArray->SetNumberOfComponents(1);
data->AddArray(interactionArray);
}
//------------------------------------------------------------------------------
void vtkLagrangianBasicIntegrationModel::InsertParticleSeedData(
vtkLagrangianParticle* particle, vtkFieldData* data)
{
// Check for max number of tuples in arrays
vtkIdType maxTuples = 0;
for (int i = 0; i < data->GetNumberOfArrays(); i++)
{
maxTuples = std::max(data->GetArray(i)->GetNumberOfTuples(), maxTuples);
}
// Copy seed data in not yet written array only
// ie not yet at maxTuple
vtkPointData* seedData = particle->GetSeedData();
for (int i = 0; i < seedData->GetNumberOfArrays(); i++)
{
const char* name = seedData->GetArrayName(i);
vtkDataArray* arr = data->GetArray(name);
if (arr->GetNumberOfTuples() < maxTuples)
{
arr->InsertNextTuple(particle->GetSeedArrayTupleIndex(), seedData->GetArray(i));
}
}
}
//------------------------------------------------------------------------------
void vtkLagrangianBasicIntegrationModel::InsertPathData(
vtkLagrangianParticle* particle, vtkFieldData* data)
{
vtkLongLongArray::SafeDownCast(data->GetArray("Id"))->InsertNextValue(particle->GetId());
vtkLongLongArray::SafeDownCast(data->GetArray("ParentId"))
->InsertNextValue(particle->GetParentId());
vtkLongLongArray::SafeDownCast(data->GetArray("SeedId"))->InsertNextValue(particle->GetSeedId());
vtkIntArray::SafeDownCast(data->GetArray("Termination"))
->InsertNextValue(particle->GetTermination());
}
//------------------------------------------------------------------------------
void vtkLagrangianBasicIntegrationModel::InsertInteractionData(
vtkLagrangianParticle* particle, vtkFieldData* data)
{
vtkIntArray::SafeDownCast(data->GetArray("Interaction"))
->InsertNextValue(particle->GetInteraction());
}
//------------------------------------------------------------------------------
void vtkLagrangianBasicIntegrationModel::InsertParticleData(
vtkLagrangianParticle* particle, vtkFieldData* data, int stepEnum)
{
switch (stepEnum)
{
case vtkLagrangianBasicIntegrationModel::VARIABLE_STEP_PREV:
vtkIntArray::SafeDownCast(data->GetArray("StepNumber"))
->InsertNextValue(particle->GetNumberOfSteps() - 1);
data->GetArray("ParticleVelocity")->InsertNextTuple(particle->GetPrevVelocity());
data->GetArray("IntegrationTime")->InsertNextTuple1(particle->GetPrevIntegrationTime());
break;
case vtkLagrangianBasicIntegrationModel::VARIABLE_STEP_CURRENT:
vtkIntArray::SafeDownCast(data->GetArray("StepNumber"))
->InsertNextValue(particle->GetNumberOfSteps());
data->GetArray("ParticleVelocity")->InsertNextTuple(particle->GetVelocity());
data->GetArray("IntegrationTime")->InsertNextTuple1(particle->GetIntegrationTime());
break;
case vtkLagrangianBasicIntegrationModel::VARIABLE_STEP_NEXT:
vtkIntArray::SafeDownCast(data->GetArray("StepNumber"))
->InsertNextValue(particle->GetNumberOfSteps() + 1);
data->GetArray("ParticleVelocity")->InsertNextTuple(particle->GetNextVelocity());
data->GetArray("IntegrationTime")
->InsertNextTuple1(particle->GetIntegrationTime() + particle->GetStepTimeRef());
break;
default:
break;
}
}
VTK_ABI_NAMESPACE_END
|