I studied planar 10-bar Cantilever truss ( buckling analysis), but I didn't understand the results of the ANSYS apdl software well:
/TITLE, Planar 10-Bar Cantilever Truss
/FILENAME,tenbar/UNITS,SI ! unites en systeme international
/PREP7 ! entree en mode pre-traitement!*
!**************scalar parameters*******************!
E=68.95E9 ! module d'Young en N/m2
Poisson=0.334 ! Coefficient de Poisson du materiau
A1=0.0129032 ! Section du materiau en m2
A2=0.0129032
A3=0.0129032
ET,1,LINK1 ! element fini de type LINK1
R,1,A1 ! constantes reelles du materiau 1:
R,2,A2
R,3,A3
MP,EX,1,E ! module d'elasticite
MP,PRXY,1,Poisson ! coefficient de Poisson
MP,DENS,1,2768 ! Aluminum density, kg/m3
! Geometrie du 10-Bars: numero et coordonnees des noeuds
N,1,18.28,9.14,0
N,2,18.28,0,0
N,3,9.14,9.14,0
N,4,9.14,0,0
N,5,0,9.14,0
N,6,0,0,0
! Creation des elements constitutifs du structure
real ,1
EN,2,1,3
EN,5,3,4
EN,6,1,2
EN,10,1,4
real ,2
EN,4,2,4
EN,8,3,6
EN,9,2,3
real ,3
EN,1,3,5
EN,7,4,5
EN,3,4,6
! Conditions aux limites en deplacement
D,5,ALL,0
D,6,ALL,0! Forces appliquees au treillis
F,2,FY,-444800 ! application de la composante de F suivant y sur le noeud 2
F,4,FY,-444800 ! application de la composante de F suivant y sur le noeud 4
!acel,0,9.8,0
FINISH ! fin du mode pre-traitement
!************DEFINING ARRAYS FOR OUTPUT*****************!
*GET,BL,ACTIVE,0,SET,FREQ
*DIM,NDISPX ,ARRAY,NCOUNT,1
*GET,NCOUNT,NODE,,COUNT
*DIM,NDISPX ,ARRAY,NCOUNT,1
*DIM,NDISPY ,ARRAY,NCOUNT,1
*cfopen,results10bars1b,txt
!***************SOLUTION PHASE**************************!
/SOLU ! mode solution
ANTYPE,STATIC ! analyse statique
PSTRES,ON
SOLVE ! demarrage de la resolution
SAVE ! sauvegarde de la base de donnees
FINISH
/SOLU
ANTYPE,BUCKLE
BUCOPT,SUBSP
OUTPR,ALL,ALL
SAVESOLVE
FINISH
/SOLU
EXPASS,ON
MXPAND, 1
OUTRES,ALL,ALL
SOLVE
FINISH
!*************POST PROCESSING PHASE*********************!
/POST1 ! entree en mode post-traitement
*GET,BL,ACTIVE,0,SET,FREQ
/OUTPUT,tenbarBuckling,txt,C:\Users\pc\ANSYS
*VWRITE,BL(F24.5)
/OUTPUT,,,
FINISH
What exactly represents the value of the LOAD MULTIPLIER = -572.72670
and VECTOR DOFS in this analysis?
Is Ansys code correct?