*Scale() – Tensor and Vector panels
Indicates the scale size setting for a vector or tensor plot.
Syntax
*Scale (mode, value)
Application
HyperView
Inputs
- mode
- 
            - By Magnitude
- Uses the magnitude value of the vector.
- Normalize
- Normalizes the value of the vector.
 
- value
- The value to which the results should be scaled.
Context
*BeginTensor()
*BeginVector()
Example
*BeginTensor()
    *ResultType("Plastic strain", "Major Mid Minor")
      *BeginSelection(Element, SelectVisible)
          *Add("Brick id 1-7680")
      *EndSelection()
    *Layer("Z2/Curvature")
    *ResolvedInSystem(0)
    *Format("Principal")
    *ColorMode(Legend)
    *Scale(normalize, 1)
*EndTensor()
OR
*BeginVector()
     *ResultType("Displacement", "x y z")
     *BeginSelection(Part, SelectVisible)
            *Add("Part id 2-4")
            *Add("Part id 6-8")
    *EndSelection()
    *ResolvedInSystem(-1)
    *ColorMode(Legend)
    *Scale(uniform, 1)
    *DrawComponents(Yes)
    *BeginLegend()
         *LegendType(static)
         *NumCols(9)
         ----
         ----
    *EndLegend()
*EndVector()