Skip to content

Commit 741d41b

Browse files
committed
chart corrected
1 parent e23ac5b commit 741d41b

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

NonLinear/Sections/Plastic/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ To create a force-displacement-plot, type
6262
```
6363
Note that this script does not yet account for changes in the input file (maximum displacement is hard-wired).
6464

65-
<img src="df.png" title="Force-displacement-plot">
65+
<img src="df.png" title="Force-displacement-plot (full model)">

NonLinear/Sections/Plastic/df.gpl

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ set ylabel "Force in kN"
66
#set nokey
77
set key bottom right
88
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
9+
# force factor: half model, remove negative sign
10+
ff=-2
11+
plot "total force fx,fy,fz_NXLSQUARE.txt" using ($1*20):(ff*$4/1000) title "square" w l,\
12+
"total force fx,fy,fz_NXLCIRCLE.txt" using ($1*20):(ff*$4/1000) title "circle" w l, \
13+
"total force fx,fy,fz_NXLHCIRCLE.txt" using ($1*20):(ff*$4/1000) title "hcircle" w l, \
14+
"total force fx,fy,fz_NXLIPROFILE.txt" using ($1*20):(ff*$4/1000) title "Iprofile" w l
1315
set out #

NonLinear/Sections/Plastic/df.png

-254 Bytes
Loading

0 commit comments

Comments
 (0)