File tree 9 files changed +15
-7
lines changed 9 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Telescoping Tubes Under Bending Load
2
- Tested with CGX 2.13/ CCX 2.12
2
+ Tested with CGX 2.13 / CCX 2.13
3
3
4
4
+ Telescopic structure of linear elastic tubes
5
5
+ Loaded in pure bending (no shear)
6
6
+ Surface-to-surface contact
7
7
8
- | File | Contents |
9
- | :------------- | :------------- |
10
- | [ pre.fbd] ( pre.fbd ) | Pre-processing script for CGX |
11
- | [ post.fbd] ( post.fbd ) | Post-processing script for cgx |
12
- | [ solve.inp] ( solve.inp ) | CCX input |
13
- | [ moment.plt] ( moment.plt ) | Gnuplot input for the moment-time-curve |
8
+ File | Contents
9
+ :------------- | :-------------
10
+ [ pre.fbd] ( pre.fbd ) | Pre-processing script for CGX
11
+ [ post.fbd] ( post.fbd ) | Post-processing script for cgx
12
+ [ solve.inp] ( solve.inp ) | CCX input
13
+ [ moment.plt] ( moment.plt ) | Gnuplot input for the moment-time-curve
14
+ [ test.py] ( test.py ) | Python script to run the full simulation
14
15
15
16
## Preprocessing
16
17
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/python
2
+ import os
3
+
4
+ os .system ("cgx -b pre.fbd" )
5
+ os .system ("ccx solve" )
6
+ os .system ("monitor.py solve" )
7
+ os .system ("cgx -b post.fbd" )
You can’t perform that action at this time.
0 commit comments