ModelSpec

class cee.ug.ModelSpec()

Specification of what to show in the 3D viewer.

The ModelSpec controls what to show in the 3D Viewer. You specify which state(s)/time step(s) to show and which results to show. You can also specify a mode-shape animation.

The ModelDirectory contains the list of available results and states that can be set in the ModelSpec. When calling changing state or result properties in this class it is checked against the ModelDirectory and an exception is thrown if any of the ids are invalid.

Example: Show the last state with a scalar result as filled contours.

// Get the model and the model directory from the RemoteModel
var modelDir = myModel.modelDirectory;
var modelSpec = myModel.modelSpec;

// Show the last state in the analysis
modelSpec.stateIdArray = [modelDir.stateInfoArray[modelDir.stateInfoArray.length - 1].id];

// Show the first scalar as filled contours (if any)
if (modelDir.scalarResultArray.length > 0) {
    modelSpec.fringesResultId = modelDir.scalarResultArray[0].id;
}

Accessors

  • displacementResultId

  • fringesResultId

  • modeShapeAnimationType

  • modeShapeFrameCount

  • modeShapeInterpolateScalars

  • showComplementOfVisibleSets

  • stateIdArray

  • useTransformationResult

  • vectorResultIdArray

  • visibleSetIdArray


Accessors

cee.ug.displacementResultId()

The id of the displacement result to use. A displacement result is a per node result that displaces the nodes in the model in every time step without redefining the elements.

Use the DisplacementSettings object to control the scaling of the displacements.

Set to -1 to show no displacements in the model.

Return type:

number

cee.ug.displacementResultId(resultId)
Arguments:
  • resultId (number) – None

Return type:

void

cee.ug.fringesResultId()

The id of the scalar result to show as textured fringes (filled contours) on the model. Use the ScalarSettings object to control how the scalar will be shown (range, color scheme, number of levels)

Set to -1 (default) to show no scalars on the model.

Note: The scalar fringes result Id can be overridden per part with the setOverridePartFringesResultId() method.

Return type:

number

cee.ug.fringesResultId(resultId)
Arguments:
  • resultId (number) – None

Return type:

void

cee.ug.modeShapeAnimationType()

The type of mode shape animation to create: Quarter, Half or Full (default).

Return type:

ModeShapeAnimationType

cee.ug.modeShapeAnimationType(animType)
Arguments:
  • animType (ModeShapeAnimationType) – None

Return type:

void

cee.ug.modeShapeFrameCount()

The number of frames to use for a mode shape animation.

A mode shape animation is an animation where the displacements of each node is interpolated between the undisplaced and the displaced positions. To setup a mode shape animation you need to have a displacement result specified in displacementResultId and exactly one state specified in stateIdArray.

Set to 0 (default) to not use mode shape animation.

Return type:

number

cee.ug.modeShapeFrameCount(frameCount)
Arguments:
  • frameCount (number) – None

Return type:

void

cee.ug.modeShapeInterpolateScalars()

Specifies if the scalars should be interpolated during a mode-shape animation or not.

Return type:

boolean

cee.ug.modeShapeInterpolateScalars(interpolate)
Arguments:
  • interpolate (boolean) – None

Return type:

void

cee.ug.showComplementOfVisibleSets()

Specifies that the complement of the current visible sets will be shown.

If this option is enabled, only the elements that are NOT present in any of the visible sets will be shown.

Return type:

boolean

cee.ug.showComplementOfVisibleSets(showComplement)
Arguments:
  • showComplement (boolean) – None

Return type:

void

cee.ug.stateIdArray()

The Ids of the states to show. An animation will be created if there is more than one item in the array.

At least one state id must be specified in order to show the model.

Return type:

unknown

cee.ug.stateIdArray(stateIdsArr)
Arguments:
  • stateIdsArr (unknown) – None

Return type:

void

cee.ug.useTransformationResult()

Whether the rigid body transformation result should be used (if present).

Default is true.

Return type:

boolean

cee.ug.useTransformationResult(useTransformationResult)
Arguments:
  • useTransformationResult (boolean) – None

Return type:

void

cee.ug.vectorResultIdArray()

The array of vector result ids to show as vector arrows on the model surface. Use the VectorSettings object to control how the vectors will be shown (color, scaling, filtering, clamping)

Set to [] (default) to show no vectors on the model. [-1] is interpreted as [] for convenience.

Return type:

unknown

cee.ug.vectorResultIdArray(resultIdArray)
Arguments:
  • resultIdArray (unknown) – None

Return type:

void

cee.ug.visibleSetIdArray()

If the array is not empty, the given set ids will be used to define which elements are visible. The union of the elements in the specified visible sets will be considered visible.

You can show the complement of the visible set by setting the showComplementOfVisibleSets property to true.

Set to [] (default) to disable set filtering on the model. [-1] is interpreted as [] for convenience.

Return type:

unknown

cee.ug.visibleSetIdArray(setIdArray)
Arguments:
  • setIdArray (unknown) – None

Return type:

void

Methods

getAsProperties

ModelSpec.getAsProperties()

Gets the settings for this model spec as a Plain Old JavaScript Object (POJO).

Return type:

ModelSpecProperties

getEffectiveFringesResultId

ModelSpec.getEffectiveFringesResultId(geometryIndex, partId)
Arguments:
  • geometryIndex (number) – None

  • partId (number) – None

Returns the id of the scalar result shown on the given part. Will return fringesResultId if no override result was specified for the given part.

Return type:

number

getOverridePartFringesResultId

ModelSpec.getOverridePartFringesResultId(geometryIndex, partId)
Arguments:
  • geometryIndex (number) – None

  • partId (number) – None

Returns the result id that is specified to override any global setting on the given part. If no override is provided, it will return -1.

Return type:

number

removeAllOverridePartFringesResultIds

ModelSpec.removeAllOverridePartFringesResultIds()

Remove any overridden scalar fringes result ids for any parts.

All parts will after this follow the global setting (ModelSpec.fringesResultId)

Return type:

void

setFromProperties

ModelSpec.setFromProperties(props)
Arguments:

Applies the settings in the given properties object to this model spec.

Return type:

void

setOverridePartFringesResultId

ModelSpec.setOverridePartFringesResultId(geometryIndex, partId, fringesId)
Arguments:
  • geometryIndex (number) – None

  • partId (number) – None

  • fringesId (number) – None

Specify to show the given scalar result on the given part as scalar fringes.

This overrides any global fringes setting for the given part.

Return type:

void