diff --git a/Contact/Tubes/README.md b/Contact/Tubes/README.md index 338a1527..9d2d1a29 100644 --- a/Contact/Tubes/README.md +++ b/Contact/Tubes/README.md @@ -1,16 +1,17 @@ # Telescoping Tubes Under Bending Load -Tested with CGX 2.13/CCX 2.12 +Tested with CGX 2.13 / CCX 2.13 + Telescopic structure of linear elastic tubes + Loaded in pure bending (no shear) + Surface-to-surface contact -| File | Contents | -| :------------- | :------------- | -| [pre.fbd](pre.fbd) | Pre-processing script for CGX | -| [post.fbd](post.fbd) | Post-processing script for cgx | -| [solve.inp](solve.inp) | CCX input | -| [moment.plt](moment.plt) | Gnuplot input for the moment-time-curve | +File | Contents +:------------- | :------------- +[pre.fbd](pre.fbd) | Pre-processing script for CGX +[post.fbd](post.fbd) | Post-processing script for cgx +[solve.inp](solve.inp) | CCX input +[moment.plt](moment.plt) | Gnuplot input for the moment-time-curve +[test.py](test.py) | Python script to run the full simulation ## Preprocessing diff --git a/Contact/Tubes/SE.png b/Contact/Tubes/SE.png index 89ac1581..d86763f8 100644 Binary files a/Contact/Tubes/SE.png and b/Contact/Tubes/SE.png differ diff --git a/Contact/Tubes/SE_zoom.png b/Contact/Tubes/SE_zoom.png index 4cd81c16..9eb2563d 100644 Binary files a/Contact/Tubes/SE_zoom.png and b/Contact/Tubes/SE_zoom.png differ diff --git a/Contact/Tubes/contact.png b/Contact/Tubes/contact.png index 6f58297e..6e1ee251 100644 Binary files a/Contact/Tubes/contact.png and b/Contact/Tubes/contact.png differ diff --git a/Contact/Tubes/cpress.png b/Contact/Tubes/cpress.png index 61429182..c5802fda 100644 Binary files a/Contact/Tubes/cpress.png and b/Contact/Tubes/cpress.png differ diff --git a/Contact/Tubes/cpress_rot.png b/Contact/Tubes/cpress_rot.png index bfcbd71b..80c58cd1 100644 Binary files a/Contact/Tubes/cpress_rot.png and b/Contact/Tubes/cpress_rot.png differ diff --git a/Contact/Tubes/sets.png b/Contact/Tubes/sets.png index 9bb7ef27..d6844c1f 100644 Binary files a/Contact/Tubes/sets.png and b/Contact/Tubes/sets.png differ diff --git a/Contact/Tubes/solve.png b/Contact/Tubes/solve.png index 31fa9401..26560388 100644 Binary files a/Contact/Tubes/solve.png and b/Contact/Tubes/solve.png differ diff --git a/Contact/Tubes/test.py b/Contact/Tubes/test.py new file mode 100755 index 00000000..033be7b9 --- /dev/null +++ b/Contact/Tubes/test.py @@ -0,0 +1,7 @@ +#!/usr/bin/python +import os + +os.system("cgx -b pre.fbd") +os.system("ccx solve") +os.system("monitor.py solve") +os.system("cgx -b post.fbd")