Command Element |
|||||||||||||||||||||||||
Description |
|||||||||||||||||||||||||
Defines an H3D output command. |
|||||||||||||||||||||||||
Example |
|||||||||||||||||||||||||
<H3DOutput switch_on = "TRUE | FALSE" increment = "integer " format_option = "MODAL | NODAL | AUTO" stress_option = "NONE | TENSOR" strain_option = "NONE | TENSOR" start_time = "real" end_time = "real" elemforce_1d = "TRUE | FALSE" nodal_velocity = "TRUE | FALSE" nodal_acceleration = "TRUE | FALSE" linear_animation = "TRUE | FALSE" /> |
|||||||||||||||||||||||||
Attributes |
|||||||||||||||||||||||||
switch_on |
TRUE creates H3D file, FALSE does not. |
||||||||||||||||||||||||
increment |
Controls how often data is written to the H3D file. For example, "2" means data is written at every second step. |
||||||||||||||||||||||||
format_option |
Select from MODAL, NODAL and AUTO (Default = AUTO). |
||||||||||||||||||||||||
stress_option |
Select from NONE and TENSOR (Default = TENSOR). |
||||||||||||||||||||||||
strain_option |
Select from NONE and TENSOR (Default = TENSOR). |
||||||||||||||||||||||||
start_time |
Specifies the start time for writing the H3D. start_time >= 0.0 start_time < simulation end time start_time <= end_time |
||||||||||||||||||||||||
end_time |
Specifies the end time for writing the H3D. end_time <= simulation end time start_time <= end_time |
||||||||||||||||||||||||
elemforce_1d |
Select TRUE or FALSE to enable or disable 1D element force export to the H3D file. |
||||||||||||||||||||||||
nodal_velocity |
Select TRUE or FALSE to enable or disable nodal velocity output to the H3D file. |
||||||||||||||||||||||||
nodal_acceleration |
Select TRUE or FALSE to enable or disable nodal acceleration output to the H3D file. |
||||||||||||||||||||||||
linear_animation |
Select TRUE or FALSE to enable or disable linear analysis mode shapes to be output to the H3D file. |
||||||||||||||||||||||||
Comments |
|||||||||||||||||||||||||
|
Command Element |
|
Description |
|
Defines an H3D output command. |
|
Declaration |
|
def H3DOUTPUT(TYPE="", INC=0, START=0.0, END=0.0, FORMAT="", STRESS="", STRAIN=""): |
|
Attributes |
|
TYPE |
ON creates the H3D file, OFF does not. |
INC |
Controls how often data is written to the H3D file. For example, "2" means data is written at every second step. |
START |
Specifies the start time for writing the H3D file. |
END |
Specifies the end time for writing the H3D file. |
FORMAT |
Select from MODAL, NODAL, and AUTO (Default = AUTO). |
STRESS |
Select from NONE and TENSOR (Default = TENSOR). |
STRAIN |
Select from NONE and TENSOR (Default = TENSOR). |
CommentsSee H3DOutput |
|
ExampleThe example below demonstrates how an H3DOUTPUT command may be defined. H3DOUTPUT(TYPE="ON", INC=1, START=.2, END=1.3, FORMAT="AUTO", STRESS="TENSOR", STRAIN="TENSOR") |