Transform

The Transform Meshmodifier applies one of three linear transformations (TRANSLATE, ROTATE, or SCALE) to the entire mesh. Several independent modifiers may be executed in a specific order to perform more complex transformations. This class simply calls through to the methods in libMesh's MeshTools::Modification namespace.

Applies a linear transform to the entire mesh.

Input Parameters

  • transformThe type of transformation to perform (TRANSLATE, ROTATE, SCALE)

    C++ Type:MooseEnum

    Description:The type of transformation to perform (TRANSLATE, ROTATE, SCALE)

  • vector_valueThe value to use for the transformation. When using TRANSLATE or SCALE, the xyz coordinates are applied in each direction respectively. When using ROTATE, the values are interpreted as the Euler angles phi, theta and psi given in degrees.

    C++ Type:libMesh::VectorValue

    Description:The value to use for the transformation. When using TRANSLATE or SCALE, the xyz coordinates are applied in each direction respectively. When using ROTATE, the values are interpreted as the Euler angles phi, theta and psi given in degrees.

Required Parameters

  • force_prepareFalseNormally all MeshModifiers run before the mesh is prepared for use. This flag can be set on an individual modifier to force preperation between modifiers where they might be needed.

    Default:False

    C++ Type:bool

    Description:Normally all MeshModifiers run before the mesh is prepared for use. This flag can be set on an individual modifier to force preperation between modifiers where they might be needed.

  • depends_onThe MeshModifiers that this modifier relies upon (i.e. must execute before this one)

    C++ Type:std::vector

    Description:The MeshModifiers that this modifier relies upon (i.e. must execute before this one)

Optional Parameters

  • control_tagsAdds user-defined labels for accessing object parameters via control logic.

    C++ Type:std::vector

    Description:Adds user-defined labels for accessing object parameters via control logic.

  • enableTrueSet the enabled status of the MooseObject.

    Default:True

    C++ Type:bool

    Description:Set the enabled status of the MooseObject.

Advanced Parameters