iccsa-20-wind

git clone https://git.igankevich.com/iccsa-20-wind.git
Log | Files | Refs

commit a6b5392aaf59a3f6542b668859fbf35636ef58c4
parent 4de4c0eea0933830036bb80094c57cd74396d3d3
Author: KapiWow <gavrikovantonkapi@gmail.com>
Date:   Sat, 14 Mar 2020 18:46:24 +0300

add roll and velocity graphics

Diffstat:
Makefile | 4++--
gnuplot/roll | 6++++++
gnuplot/velocity | 6++++++
gnuplot/velocity.gnuplot | 9+++++++++
guix/manifest.scm | 2+-
5 files changed, 24 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -26,11 +26,11 @@ build/$(SLIDES).pdf: slides.tex @-$(LATEXMK) $(FLAGS) -xelatex -f $< build/%.eps: build/%.svg - inkscape -z --export-eps=$@ $< + inkscape -z --export-type=eps --export-file=$@ $< build/inkscape/%.eps: graphics/inkscape/%.svg @mkdir -p build/inkscape - inkscape -z --export-eps=$@ $< + inkscape -z --export-type=eps --export-file=$@ $< build/gnuplot/%.svg: gnuplot/%.gnuplot @mkdir -p build/gnuplot diff --git a/gnuplot/roll b/gnuplot/roll @@ -0,0 +1,6 @@ +5, 0.246736 +10, 0.246744 +20, 0.251822 +30, 0.278555 +40, 0.362693 +50, 0.410339 diff --git a/gnuplot/velocity b/gnuplot/velocity @@ -0,0 +1,6 @@ +5, 0.078010 +10, 0.088081 +20, 0.121901 +30, 0.225737 +40, 0.446216 +50, 0.587744 diff --git a/gnuplot/velocity.gnuplot b/gnuplot/velocity.gnuplot @@ -0,0 +1,9 @@ +set terminal svg dynamic size 1080/4*1.9, 1080/4 round enhanced font 'Liberation Serif, 12' +set output 'build/gnuplot/velocity.svg' +s = 180.0/3.14 +static_roll = -0.247885 + +#set border 1+2 +#set multiplot layout 1,2 + +plot 'gnuplot/velocity' using 1:2 with lines diff --git a/guix/manifest.scm b/guix/manifest.scm @@ -3,4 +3,4 @@ (use-modules (stables packages texlive)) (packages->manifest - (list gnuplot texlive texlive-spbu texlive-beamertheme-saintpetersburg)) + (list texlive texlive-beamertheme-saintpetersburg))