PartScalars

class cee.usg.PartScalars()

Scalar results for one part in one state.

The results can be mapped to the mesh as per node, per elements or per element node results.

The PartScalars class is immutable.

Constructors

Methods


Constructors

constructor

cee.usg.PartScalars.constructor(resultMapping, valueArrray)

Create a scalar result for a part/mesh with the given mapping and values.

Arguments
  • resultMapping (cee.usg.ResultMapping) –

  • valueArrray (ArrayLike[number]) –

Return type

cee.usg.PartScalars

Note: There is some performance penalty for visualizing per element or per element node results, as the vertices needs to be duplicated in order to produce the WebGL based visualization. This will result in higher GPU and CPU memory usage.

Accessors

cee.usg.PartScalars.resultMapping

The result mapping of this object

cee.usg.PartScalars.valueArray

A readonly array with the scalar results

Methods

getValueRange

cee.usg.PartScalars.getValueRange()

The range (miin/max) if the valueArray

Return type

cee.Range