*blocknodeupdate

Updates the finite difference nodes in a finite difference block.

Syntax

*blocknodeupdate name function type start end number factor

Type

HyperMesh Tcl Modify Command

Description

Updates the finite difference nodes in a finite difference block.

Inputs

name
The name of the block.
function
0 - add nodes to an index.
1 - remove nodes from an index.
2 - remove all nodes from an index.
type
The index. Not used, if function is 2.
0 - i
1 - j
2 - k
start
The starting position of the nodes to be added or removed. Not used, if function is 2.
end
The ending position of the nodes to be added or removed. Not used, if function is 2.
number
The number of nodes to add. Not used, if function is 1 or 2.
factor
The expansion factor. Not used, if function is 1 or 2.

Examples

To add 50 nodes uniformly in the k direction to an existing block named block1:
*blocknodeupdate(block1,0,2,-10.0,110.0,50,1.0)