Analyze Command: Difference between revisions
Jump to navigation
Jump to search
(New page: This command is used to perform the analysis. {| | style="background:yellow; color:black; width:800px" | '''analyze $numIncr <$dt> <$dtMin $dtMax $Jd>''' |} ---- {| | style="width:15...) |
No edit summary |
||
Line 25: | Line 25: | ||
'''<0''' if NOT successfull | '''<0''' if NOT successfull | ||
EXAMPLE: | EXAMPLE: | ||
Line 32: | Line 33: | ||
analyze 2000 0.01; # perform 2000 transient time steps at 0.01 increments | analyze 2000 0.01; # perform 2000 transient time steps at 0.01 increments | ||
node 2 0.0 120. 0.0; # x,y,z coordinates (0,120,0) of node 2 | node 2 0.0 120. 0.0; # x,y,z coordinates (0,120,0) of node 2 | ||
---- | ---- | ||
Code Developed by: <span style="color:blue"> fmk </span> | Code Developed by: <span style="color:blue"> fmk </span> |
Revision as of 19:11, 9 October 2009
This command is used to perform the analysis.
analyze $numIncr <$dt> <$dtMin $dtMax $Jd> |
$numIncr | number of analysis steps to perform. |
$dt | time-sep increment. Required ig transient or variable transient analysis |
$dtMin $dtMax | minimum and maximum time steps Required if a variable time step transient analysis was specified. |
$Jd | number of iterations user would like performed at each step. The vraibele transient analysis will change current time step if last analysis step took more or less iterations than this to converge.
Required if a variable time step transient analysis was specified. |
RETURNS:
0 if successfull
<0 if NOT successfull
EXAMPLE:
anlayze 10; # perform 10 static analysis steps
analyze 2000 0.01; # perform 2000 transient time steps at 0.01 increments node 2 0.0 120. 0.0; # x,y,z coordinates (0,120,0) of node 2
Code Developed by: fmk