Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor clean-up to DataProbes and the inactiveSelector interface (#480)
* No longer require inactive node from data probes given Real::get_inactive_selector(): stk::mesh::Selector otherInactiveSelector = ( metaData_->universal_part() & !(stk::mesh::selectUnion(interiorPartVec_)) & !(stk::mesh::selectUnion(bcPartVec_))); The above filters all nodes that are not of interest. The Overset aspect is not shown above.. Notes: a) Data probes created in previous simulations prevail in subsequent even if the data probe in the new run is not created. For example, in a previous run, a data probe was created: For probe name: los_one Node Identifiers: 562 563 564 565 In the subsequent run, these nodes still show up in the universal part: BEGIN universal selector output: 562 563 564 565 etc... END universal selector output: However, are selected out: BEGIN inactive selector output: 562 563 564 565 END inactive selector output: All is well with these extra nodes not killing the linear system setup. See below... b) I am trying to clean up this in a separate project to allow for clean restarts with changing around data probe order/definitons.
- Loading branch information