Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations JStephen on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to determine how many DOF a FE model has? 2

Status
Not open for further replies.

Taz99

Aerospace
Joined
May 18, 2011
Messages
21
Location
US
Often you will see in articles the author stating that a FE model has xxx DOF to indicate how long it may take to run or to convey approximately how big the model is.
Could someone explain how I can get the number of DOF from either Patran or from Nastran output files?
Thanks :)
 
dof = degrees of freedom ... = sum(n*d)
where n is a node, and d is the number of degrees of freedom at the node.

dof at a node can be fixed by the code (NASTRAN applied 6 dof at every node, those that aren't used are autospc'd)
or the code can assign dof depending on the element (a rod or a solid would have 3, a plate would have 6, a spring would have 1).

run statistics should tell you for a specific model.
 
got it now - thanks!
 
To find DOF in MSC Nastran, I use the "estimate.exe" tool in C:\MSC.Software\MD_Nastran\20111\md20111\win64. I use the command prompt to run "estimate.exe" then I include the .bdf or .dat I wish to find the predicted resource requirements.

For example in the command prompt.

"estimate.exe model.bdf"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top