commit 12a1a70ff75b36b01666cf9e967698e388bb9ed3
parent 80aca11f1c1d4af818de26a681d1d52ef18360c3
Author: Ivan Gankevich <igankevich@ya.ru>
Date: Mon, 24 Jun 2019 17:23:31 +0300
initial slides
Diffstat:
Makefile | | | 10 | +++++++++- |
slides.tex | | | 63 | +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
2 files changed, 72 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -8,7 +8,11 @@ FLAGS = \
-bibtex \
-shell-escape
-NAME = iccsa-19-vtestbed
+NAME = iccsa-19-vessel
+SLIDES = iccsa-19-vessel-slides
+
+all: build/$(NAME).pdf
+all: build/$(SLIDES).pdf
build/$(NAME).pdf: build
build/$(NAME).pdf: main.tex
@@ -19,6 +23,10 @@ build/$(NAME).pdf: build/micw.vsl.eps
build/$(NAME).pdf: build/aurora.vsl.eps
@-$(LATEXMK) $(FLAGS) -f main.tex
+build/$(SLIDES).pdf: slides.tex
+ @echo " LATEX $<"
+ @-$(LATEXMK) $(FLAGS) -xelatex -f $<
+
build/sections.svg: gnuplot/sections.dat gnuplot/sections.gnuplot
./gnuplot/sections.gnuplot
diff --git a/slides.tex b/slides.tex
@@ -0,0 +1,63 @@
+\documentclass[aspectratio=169]{beamer}
+\usepackage{polyglossia}
+\setdefaultlanguage{english}
+\usetheme{SaintPetersburg}
+
+\usepackage{booktabs}
+\usepackage{multicol}
+\usepackage{pgfgantt}
+\usepackage{tikz}
+\usetikzlibrary{arrows.meta}
+\setlength{\tabcolsep}{4pt}
+
+%\setbeamertemplate{footline}[frame number]
+
+\title{Vessel: Efficient plain text file format for ship hull geometry}
+\author{%
+A.\:Degtyarev \and
+I.\:Gankevich \and
+A.\:Gavrikov \and
+A.\:Grigorev \and
+V.\:Khramushin \and
+I.\:Petriakov%
+}
+\date{July 2019}
+
+\begin{document}
+
+\frame{\maketitle}
+
+\begin{frame}{Virtual testbed project}
+ Global goal: Decision support system that analyses data from ships in
+ sea, models the environment and predicts (and prevents) dangerous situations.
+ \vskip\baselineskip
+ Current goal: Real-time simulation environment for ships with visualisation.
+ \vskip\baselineskip
+ Key features:
+ \begin{itemize}
+ \item Real-time. We have 16--33 ms to compute everything.
+ \item Realistic marine objects. We load ships from electronic blueprints.
+ \item Arbitrary-amplitude ocean waves (work-in-progress).
+ \end{itemize}
+\end{frame}
+
+\begin{frame}
+ \frametitle{Motivation}
+ \begin{itemize}
+ \item Supercomputer facilities are scarce resource.
+ \item Model basins are also scarce.
+ \item Without real-time visualisation we can not validate physics.
+ \item Regular workstations with a GPU can be used instead.
+ \end{itemize}
+ \vfill
+ How much performance can be gained using GPUs?
+\end{frame}
+
+\begin{frame}
+ \centering
+ \Large
+ \vspace{1.5\baselineskip}
+ Thank you for attention!
+\end{frame}
+
+\end{document}