Using DPF to retrieve the deformation on a model. The operator returns a fields container with 3 components (UX, UY, UZ). How can I select the component to be plotted, in case I want to plot only UX for example ?
Use the component_selector operator:
component_selector
deformation_component = dpf.operators.logic.component_selector() deformation_component .inputs.field.Connect(deformation) deformation_component .inputs.component_number.Connect(0)