|
| 1 | +# Buckling and modal analysis with preload |
| 2 | +Tested with CGX/CCX 2.10 |
| 3 | + |
| 4 | ++ Modal analysis with preload |
| 5 | ++ Eigenvalue buckling analysis |
| 6 | ++ Shell edge load |
| 7 | + |
| 8 | +File | Contents |
| 9 | + :------------- | :------------- |
| 10 | + [pre.fbl](pre.fbl) | Preprocessing script for CGX |
| 11 | + [modal.inp](modal.inp) | CCX input |
| 12 | + [shapes.fbl](shapes.fbl) | CGX script for postprocessing (mode shape movies) |
| 13 | + |
| 14 | + |
| 15 | + |
| 16 | +## Model Description |
| 17 | +The model is a flat L-shaped plate. |
| 18 | + |
| 19 | +<img src="mesh.png" width="400" title="mesh"> |
| 20 | + |
| 21 | +Boundary conditions |
| 22 | ++ UY=0, UZ=0 at the upper edge (red) |
| 23 | ++ UX=0, UZ=0 at the left edge (green) |
| 24 | ++ UZ=0 at the lower (blue) and right (magenta) edges |
| 25 | ++ Line load in y-direction (1 N/mm) |
| 26 | + |
| 27 | +<img src="RFv.png" width="400" title="Reactions and loads"> |
| 28 | +<img src="PS3.png" width="400" title="Minimum principal stress"> |
| 29 | + |
| 30 | +Set the appropriate values for the parameters in `par.run.fbd` and run the simulation using |
| 31 | +``` |
| 32 | +> param.py par.run.fbd |
| 33 | +> cgx -b run.fbl |
| 34 | +``` |
| 35 | +## Solution |
| 36 | + |
| 37 | +If you want to run the analysis separately: |
| 38 | +``` |
| 39 | +> ccx solve.inp |
| 40 | +``` |
| 41 | +The analysis consists of 3 steps: |
| 42 | ++ Static step, application of preload for the modal analysis |
| 43 | ++ Frequency step, modal analysis with preload |
| 44 | ++ Buckle step. |
| 45 | + |
| 46 | +## Postprocessing |
| 47 | + |
| 48 | +### Vibration mode shapes |
| 49 | +These are displayed using `ds <n> a` to get a sinusoidal animation |
| 50 | +``` |
| 51 | +> cgx -b vmodes.fbd |
| 52 | +``` |
| 53 | +<img src="v1.gif" width="400"><img src="v2.gif" width="400"> |
| 54 | + |
| 55 | +### Buckling mode shapes: |
| 56 | +These are displayed with |
| 57 | +``` |
| 58 | +anim real |
| 59 | +scal d 200 |
| 60 | +ds <n> a |
| 61 | +``` |
| 62 | +to get a single-sided animation: |
| 63 | +``` |
| 64 | +> cgx -b bmodes.fbd |
| 65 | +``` |
| 66 | +<img src="b1.gif" width="400"><img src="b2.gif" width="400"> |
0 commit comments