*attributeupdatedoublearrayelementmark

Updates one element of an attribute of type double array.

Syntax

*attributeupdatedoublearrayelementmark entity type mark identifier solver status behavior index value

Type

HyperMesh Tcl Modify Command

Description

Updates one element of an attribute of type double array.

Inputs

entity type
The type of entity that owns the attribute.
mark
The number of the mark.
identifier
The identifier of the attribute.
solver
The solver number of the attribute.
status
The status of the attribute.
behavior
The behavior of the attribute.
index
Index into the array (first index is zero).
value
The value of the array element.

Example

Update the first element (index 0) of some double array attributes to 10.5.The attributes are found on materials with IDs 7 and 8.
*createmark(materials,1) 7 8
*attributeupdatedoublearrayelementmark(materials,1,615,2,2,0 ,0,10.5)