Reference Values

column quantity
1 time
5drag on beam
6lift on beam
7drag on cylinder
8lift on cylinder
11Ux (x-displacement of point A)
12Uy (y-displacement of point A)

Reference data

The listed files contain reference data. FSI2 and FSI3 are different parameter sets and Δt is the time step value.

FSI2
ref_fsi2.point
FSI3
ref_fsi3.point
CSM
csm3_l2.point
csm3_l2_0p01.point
csm3_l2_t0p005.point
csm3_l3.point
csm3_l3_0p01.point
csm3_l3_t0p005.point
csm3_l4.point
csm3_l4_0p01.point
csm3_l4_t0p005.point

To create the plots from the *.point files, use the following code in GnuPlot:

Drag

set key right box
set xlabel 'Time'
set ylabel 'drag'
plot "file.point" u ($1):($5+$7) w l  title 'fsi2'

Lift

set key right box
set xlabel 'time'
set ylabel 'lift'
plot "file.point" u ($1):($6+$8) w l  title 'fsi2'

X-displacement

set key right box
set xlabel 'time'
set ylabel 'x-displacement'
plot "file.point" u 1: 11 w l title 'fsi2'

Y-displacement

set key right box
set xlabel 'time'
set ylabel 'y-displacement'
plot "file.point" u 1: 12 w l title 'fsi2'

file.point is the file you want to plot. Use the same code for FSI3 by replacing fsi2 with fsi3.