iccsa-20-waves

Virtual Testbed: Simulation of Ocean Wave Reflection from the Ship Hull
git clone https://git.igankevich.com/iccsa-20-waves.git
Log | Files | Refs

surface-with-ship.gnuplot (1020B)


      1 set terminal svg size 1920/3,1080/3 dynamic font 'Liberation Sans, 10'
      2 #set hidden3d back offset 0 trianglepattern 3 undefined 1 altdiagonal bentover
      3 set view equal xyz
      4 #set view ,,4
      5 set view map
      6 set xrange [-100:100]
      7 set yrange [-100:100]
      8 set cbrange [-2:2]
      9 set cbtics -2,0.5,2
     10 set palette defined (0 '#404040', 1 '#fffff0', 2 '#0040f0')
     11 unset key
     12 set xtics nomirror out offset 0,0.5
     13 set ytics nomirror out offset 0.5,0
     14 unset x2tics
     15 unset y2tics
     16 unset ztics
     17 set border
     18 set xlabel 'x, m' offset 0,1
     19 set ylabel 'y, m' offset 1,0
     20 set cblabel 'Wave amplitude, m' offset -1,0
     21 set pm3d  
     22 set style data pm3d
     23 set dgrid3d 200,200 exp
     24 set output 'build/gnuplot/surface-with-ship.svg'
     25 set multiplot
     26 splot 'data/surface-diffraction-aurora.dat' with pm3d
     27 unset dgrid3d
     28 set palette defined (0 '#404040', 1 '#404040')
     29 unset colorbox
     30 unset border
     31 unset xtics
     32 unset ytics
     33 unset ztics
     34 unset grid
     35 unset xzeroaxis
     36 unset yzeroaxis
     37 unset zzeroaxis
     38 unset xlabel
     39 unset ylabel
     40 unset zlabel
     41 splot 'ships/aurora.gnuplot' using ($1-123.8/2):2:3
     42