Difference between revisions of "Plate buckling"
Jump to navigation
Jump to search
Tag: Reverted |
|||
Line 5: | Line 5: | ||
The basic MARCO commands are as follows: | The basic MARCO commands are as follows: | ||
<pre> | <pre> | ||
feap * * Buckling of cantilever plate with a in-plane compression * * | feap * * Buckling of cantilever plate with a in-plane compression * * | ||
Line 27: | Line 16: | ||
e = 436.4*10^6 ! Young's modulus | e = 436.4*10^6 ! Young's modulus | ||
nu = 0.3 ! Poisson's ratio | nu = 0.3 ! Poisson's ratio | ||
w = 0.1375 ! side length | |||
MATErial | MATErial | ||
Line 36: | Line 26: | ||
BLOCk | BLOCk | ||
CART 8 8 | CART 8 8 | ||
1 0 | 1 0 0 0 | ||
2 0 | 2 w 0 0 | ||
3 | 3 w w 0 | ||
4 0 | 4 0 w 0 | ||
CSURface ! Uniform force unit length on edge | CSURface ! Uniform force unit length on edge | ||
LINEar | LINEar | ||
1 | 1 w 0 0.0 -1.0d-3 | ||
2 | 2 w w 0.0 -1.0d-3 | ||
EBOUndary ! Clamped edge | EBOUndary ! Clamped edge | ||
1 0 1 1 1 1 1 1 | 1 0 1 1 1 1 1 1 | ||
END | END | ||
Revision as of 03:07, 25 May 2022
Eigenvalue methods for computing buckling loads
Plate and shell buckling loads are classically computed by solving the eigenvalue problem where is the shell's/plate's stiffness and is its geometric stiffness, dependent on the in-plane (membrane) "stresses", and is the proportional load factor.
To compute the buckling load in FEAP, one first solves for the membrane stresses and shell stiffness, then one forms the geometric stiffness, and finally one uses an eigensolver to determine the buckling load(s).
The basic MARCO commands are as follows:
feap * * Buckling of cantilever plate with a in-plane compression * * ndm = 3 ! 3 spatial dimensions ndf = 6 ! 6 dofs per node nen = 4 ! 4 nodes per element PARAmeters h = 0.001375 ! Thickness e = 436.4*10^6 ! Young's modulus nu = 0.3 ! Poisson's ratio w = 0.1375 ! side length MATErial SHELl ELAStic isotropic e nu THICk plate h 1 ! Shear factor set to 1 penalty drill e*1e-6 ! drill stiffness used for flat shells BLOCk CART 8 8 1 0 0 0 2 w 0 0 3 w w 0 4 0 w 0 CSURface ! Uniform force unit length on edge LINEar 1 w 0 0.0 -1.0d-3 2 w w 0.0 -1.0d-3 EBOUndary ! Clamped edge 1 0 1 1 1 1 1 1 END BATCH TANGent,,1 ! Linear problem no need to iterate GEOM ! Form geomteric tangent once stress-state is known SUBSpace,,5 ! Compute eigenvalues PLOT PERSpective PLOT HIDE PLOT MESH ! Show the mesh PLOT LOAD 1 ! Plot load with arrow head at node PLOT DEFOrmed,,,1e-5,1 ! Plot eigvecs with 1e-5 scaling and no re-scale to ref. config PLOT EIGVector,1,,3 ! Plot EigVec 1 with contours of 3-displacement END INTEractive STOP