Skip to content

Commit c3dfeca

Browse files
committed
force-displacement chart added
1 parent 71afa29 commit c3dfeca

File tree

4 files changed

+17
-1
lines changed

4 files changed

+17
-1
lines changed

NonLinear/Sections/Plastic/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ Tested with CGX/CCX 2.10
77
+ Elasto-plastic material without hardening (ideal plastic)
88
+ Objective:
99
+ Evolution of the plastic zone
10-
+ Force-displacement curves (TBD)
10+
+ Force-displacement curves
1111
+ Ultimate bending load - plastic section modulus (TBD)
1212

1313

1414
File | Contents
1515
:------------- | :-------------
1616
[par.pre.fbl](par.pre.fbl) | CGX script, pre-processing, parametrized with param.py
1717
[movie.fbl](movie.fbl) | CGX script, movie generation
18+
[chart.fbl](chart.fbl) | CGX script, chart generation
1819
[Biegung.inp](Biegung.inp) | CCX input
1920

2021

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
sys dat2txt.py
2+
sys gnuplot df.gpl

NonLinear/Sections/Plastic/df.gpl

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
set term png
2+
set grid
3+
set xlabel "Displacement in mm"
4+
set ylabel "Force in kN"
5+
#set yrange [-100:100]
6+
#set nokey
7+
set key bottom right
8+
set out "df.png"
9+
plot "total force fx,fy,fz_NXLSQUARE.txt" using ($1*20):(-1*$4/1000) title "square" w l,\
10+
"total force fx,fy,fz_NXLCIRCLE.txt" using ($1*20):(-1*$4/1000) title "circle" w l, \
11+
"total force fx,fy,fz_NXLHCIRCLE.txt" using ($1*20):(-1*$4/1000) title "hcircle" w l, \
12+
"total force fx,fy,fz_NXLIPROFILE.txt" using ($1*20):(-1*$4/1000) title "Iprofile" w l
13+
set out #

NonLinear/Sections/Plastic/df.png

6.56 KB
Loading

0 commit comments

Comments
 (0)