forked from solids4foam/solids4foam
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Solution for solids4foam#150 point 3.
- Loading branch information
Showing
5 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
tutorials/fluidSolidInteraction/3dTube/displacement.gnuplot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
set terminal pdfcairo enhanced color solid | ||
|
||
# Axial displacement | ||
|
||
set output "axialDisplacement.pdf" | ||
set title "3dTube: Axial Displacement at Point A" | ||
set xlabel "Time, t [s]" | ||
set ylabel "Axial Displacement [mm]" | ||
set grid | ||
set key top right | ||
|
||
set yrange [-0.1:0.1] | ||
|
||
plot \ | ||
"postProcessing/0/solidPointDisplacement_displacement.dat" u 1:(1000*$4)\ | ||
w l lc "red" lw 0.5 lt 1 t "Axial displacement" | ||
|
||
# Radial displacement | ||
|
||
set output "radialDisplacement.pdf" | ||
set title "3dTube: Radial Displacement at Point A" | ||
set ylabel "Radial Displacement [mm]" | ||
set yrange [-0.1:0.15] | ||
|
||
plot \ | ||
"postProcessing/0/solidPointDisplacement_displacement.dat" u 1:(1000*$3)\ | ||
w l lc "red" lw 0.5 lt 1 t "Radial displacement" |
14 changes: 14 additions & 0 deletions
14
tutorials/fluidSolidInteraction/3dTube/fsiConvergence.gnuplot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
set terminal pdfcairo enhanced color solid | ||
|
||
set output "fsiConvergence.pdf" | ||
|
||
set title "3dTube: Number of FSI iterations" | ||
set xlabel "Time, t [s]" | ||
set ylabel "Number of FSI iterations" | ||
set grid | ||
set key top right | ||
|
||
set yrange [0:80] | ||
|
||
plot \ | ||
"postProcessing/0/fsiConvergenceData.dat" u 1:2 w lp ps 0.3 pt 5 lc "red" lw 0.5 lt 1 t "Number of iterations" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters