print#
- print <-file $fileName> [-node|-ele] <-flag $flag > {*}$tags
fileName (optional) name of file to which data will be sent. overwrites existing file. default is to print to stderr) flag integer flag to be sent to the print() method, depending on the node and element type (optional) tags (optional) integer tags of nodes or elements to be printed. default is to print all.
Examples#
print -ele; # print all elements
print -node 1 2 3; # print data for nodes 1,2 & 3
model.print(ele=True) # print all elements
model.print(node=(1, 2, 3)) # print data for nodes 1,2 & 3