poIContourCtrl SetMultiplier

Sets a multiplication factor for the current contoured data type.

Syntax

contour_handle SetMultiplier mult_factor

Application

HyperView Tcl Modify

Description

This command sets a multiplier for the applied contour plot (for example: Stress, Velocity, etc.). The multiplication factor should be a positive value. The original contour value will be multiplied with the specified multiplication factor. The legend will reflect the new contour values.
Note: Setting a multiplication factor of 2 for 3 times will not scale the original value by 6. The multiplication factor always uses the original value for scaling, rather than the previously multiplied value.

Inputs

mult_factor
Multiplication factor to be used.

Example

To set the multiplication factor for the data type “Effective plastic strain” in a contour plot:
hwi OpenStack
hwi GetSessionHandle session_handle
session_handle GetProjectHandle project_handle
project_handle GetPageHandle page_handle [project_handle GetActivePage]
page_handle GetWindowHandle window_handle [page_handle GetActiveWindow]
window_handle GetClientHandle client_handle
client_handle GetModelHandle model_handle [client_handle GetActiveModel]
model_handle GetResultCtrlHandle result_handle
result_handle GetContourCtrlHandle contour_handle
contour_handle SetDataType ”Effective plastic strain”
contour_handle SetMultiplier 2.75
hwi CloseStack

Errors

None.