Here are the full steps of what I did:
- Add
PassArrays
to both A and B inputs and remove all the arrays except forvon Mises Stress
. This is optional, but made things a little easier later. - Add
RenameArrays
to both A and B pipelines to rename the fields toA von Mises Stress
andB von Mises Stress
, respectively. This makes it possible to differentiate the two arrays as we start combining the fields into one mesh. - Add the
Resample With Dataset
filter. Set theSource Data Arrays
input to the A pipeline and theDestination Mesh
to the B pipeline. I chose the B pipeline for the destination mesh because there are small parts of the A mesh outside of the B mesh, so the resample worked better to apply to the B mesh. - The result of
Resample With Dataset
now hasA von Mises Stress
on the B mesh. To get the B fields back, select both theResampleWithDataset
and theRenameArrays
for the B pipeline in the pipeline browser and add theAppend Attributes
filter. This will combine both fields into a single mesh, which is the whole point of this exercise. - Add the
Calculator
filter toAppendAttributes
. To get the max stress, set the expression tomax("A von Mises Stress", "B von Mises Stress")
. To get the sum, set the expression to"A von Mises Stress" + "B von Mises Stress"
.