PFEM Analysis: Difference between revisions

From OpenSeesWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:




'''analysis'''('' 'PFEM'[, dtmax, dtmin, gravity[, ratio]]'') <span id="pyPFEMAnalysis"> ¶</span>
'''analysis'''('' 'PFEM', dtmax, dtmin, gravity[, ratio]'') <span id="pyPFEMAnalysis"> ¶</span>


<blockquote>construct the PFEM Analysis object.</blockquote>
<blockquote>construct the PFEM Analysis object.</blockquote>
Line 9: Line 9:
{| class="wikitable"
{| class="wikitable"
|-
|-
! rowspan="10"| Parameters:
! rowspan="4"| Parameters:
|* '''regTag''' (''int'') -  a predefined or new region tag.
|* '''dtmax''' (''float'') -  maximum time step
|-
|-
|* ''''-ele', e1, e2, ...''' (''int'') –  the region is defined by elements e1, e2, .... If no tag is given, then all elements are added.
|* '''dtmin''' (''float'') –  minimum time step
|-
|-
|* ''''-eleRange', e1, e2, ...''' (''int'') –  the region is defined by elements in the range [e1, e2].
|* '''gravity''' (''float'') –  the gravity acceleration for fly-out nodes, up is positive.
|-
|-
|* ''''-node', nd1, nd2, ...''' (''int'') – the region is defined by nodes nd1, nd2, .... If no tag is given, then all nodes are added.
|* '''ratio''' (''float'') – the ratio for automatic reducing time step size.  
|-
|* ''''-nodeRange', nd1, nd2, ...''' (''int'') – the region is defined by nodes in the range [nd1 nd2].
|-
|* ''''-rayleigh', alphaM, betaK, betaKinit, betaKcomm ''' (''float'') – arguments as in [[rayleigh]] command.
|-
|* ''''-getNodeTags'''' (''str'') –  return all node tags in the region.
|-
|* ''''-getConnectedEleTags'''' (''str'') –  return all elements that connect to all nodes in the region.
|-
|* ''''-getEleTags'''' (''str'') –  return all elements that are added by mesh/remesh commands.
|-
|* '''''-mass', m1, m2, ...'''' (''float'') –  set the nodal mass for all nodes in the region.
|-
|-
! |Returns:
! |Returns:
| a list of node or element tags if ‘-getNodeTags’, ‘-getConnectedEleTags’, ‘-getEleTags’ are specified, otherwise, returns None.
|  
|-
|-
! |Return Type:
! |Return Type:
|
|
list(int) or None
None
|}
|}

Revision as of 22:00, 30 June 2017

< Back


analysis( 'PFEM', dtmax, dtmin, gravity[, ratio])

construct the PFEM Analysis object.


Parameters: * dtmax (float) - maximum time step
* dtmin (float) – minimum time step
* gravity (float) – the gravity acceleration for fly-out nodes, up is positive.
* ratio (float) – the ratio for automatic reducing time step size.
Returns:
Return Type:

None