ValueMapToNode
Maps values from a source model to nodes on a destination model.
Inputs
- src
 - A value table.
 - src_coord
 - Coordinate table associated with src elements.
 - dest_coord
 - Coordinate table associated with destination nodes.
 - elems
 - Element entity table in from model.
 - radius
 - Search radius around the destination node (default = ”auto”).
 - ctol
 - Coincident tolerance (default = 0.00001).
 - srcTransformIDList
 - Three space separated node IDs to transform from source model space (default = null – no transform).
 - destTransformIDList
 - Three space separated node IDs to transform to destination model space (default = null – no transform).
 - aggregate
 - An aggregation mode (avg, sum, min, max, extreme).
 - max_depth
 - Spatialization depth (default = ”7”, maximum = ”12”)
 
Outputs
- answer
 - A nodal value table.
 
Comments
- src and answer must be of the same format.
 - If src is a vector or tensor, it should be relative to the global system.
 - If one or more elements are within the coincident tolerance, only those elements will be processed (elements within the mapping radius, but outside the coincident tolerance will be ignored).
 - Elements that are inside the mapping radius to the destination node will be processed based upon the aggregation mode.
 - The aggregation rules for mapping are the same as those in the binding change operators (see Binding Change Operators).
 
Syntax
N/A
XML Example
<call name="ValueMapToNode" src_coord="src_coords" 
dest_coord="dest_coords" elems="from_elems" 
radius="1" src="global_stress" 
aggregate="avg" scale="auto" answer="answer" />