Skip to content
Snippets Groups Projects
Commit 628d2e7b authored by tanguy.cavagna's avatar tanguy.cavagna :desktop:
Browse files

Added latex doc

parent 5650c5d1
No related branches found
No related tags found
No related merge requests found
Showing
with 135 additions and 0 deletions
File added
File added
File added
File added
File added
File added
File added
File added
File added
doc/layout/hepia/logo-black.png

38.4 KiB

doc/layout/hepia/logo-red.png

38.4 KiB

doc/layout/hepia/logo-white.png

38.4 KiB

\chapter{Théorie}
\label{chapter:theory}
%\chapter{Title}
%\label{chapter:title}
\chapter{Conclusion}
\label{chapter:conclusion}
\emph{A conclusion...}
\chapter{Introduction}
\label{chapter:introduction}
Dans le cadre du cours de physique appliquée à l'ingénerie 1 (ISC 123) donné par M. Malaspinas Orestis,
nous devions réaliser une simulation élémentaire de lignes de champs électrostatique de particules.
Cette simulation se base sur les notions vues et pratiquée en cours, et est réalisée en C avec un
répertoire git \cite{git-repo} obligatoire.
Le rendu graphique devait être fait en utilisant la librarie SDL2. Cependant, ne la trouvant pas optimale,
j'ai opté pour une version utilisant OpenGL, branche \verb|opengl|. Vous trouvez en outre la version
SDL2 sur la branche \verb|master|.
La simulation de lignes de champs permet d'avoir une représentation graphique claire de
l'impact électrostatique inter-particules dans un univers discret. À plus grande echelle, il serait possible
de montrer l'impact de différents objets ou matériaux chargé dans un environement. Par exemple dans le cas
de la conception d'une batterie.
Ce rapport va porter sur la théorie utilisée, ainsi que l'implémentation en C permettant de générer
les représentations graphique.
Je commencerai par présenter les différentes formules utilisées, puis je me pencherai sur le code et les
expériences faites pour arriver au résultat voulu, et je finirai par une conclusion.
\ No newline at end of file
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% Examples of common entries %%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@online{git-repo,
author = {Cavagna Tanguy},
title = {Gitedu},
url = {https://gitedu.hesge.ch/repos.tanguy.cavagna/physics/electric-field},
urldate = {2022-04-24}
}
@article{example-article,
author = {I. Surname and I. Surname and I. Surname},
title = {The Title of the Article},
journal = {The Title of the Journal},
volume = {1},
number = {2},
pages = {123-456},
year = {2000},
note = {}
}
@book{example-book,
author = {I. Surname and I. Surname and I. Surname},
title = {The Title of the Book},
publisher = {Publisher},
year = {2000},
edition = {8th ed.},
address = {City, State or Country},
note = {}
}
@online{example-website,
author = {{Website Name} <OR> I. Surname and I. Surname and I. Surname},
title = {Title of the Website},
url = {https://example.com},
urldate = {2020-12-24},
year = {2000}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% Start of bibliography %%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass{layout/hepia-report}
%% Setting up the bibliography
\usepackage{biblatex}
\addbibresource{report.bib}
%% Additional packages and commands
\setlist{itemsep=-2pt} % Reducing white space in lists slightly
\renewcommand{\deg}{\si{\degree}\xspace} % Use \deg easily, everywhere
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% Begin of document %%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
%% Roman page numbering
\frontmatter
%% Defining the main parameters
\title{Simulation de lignes de champ}
\subtitle{Implémentation graphique de simulation de\\lignes de champs électrostatique de particules}
\author{Tanguy Cavagna}
\subject{Physique: Électrostatique}
\coverimage{figures/cover-field.png} % Aspect ratio of 2:3 (portrait) recommended
\definecolor{title}{HTML}{FF0000} % Color for title
\makecover
\input{frontmatter/title-report}
\tableofcontents
%\listoffigures
%\listoftables
%% Arabic page numbering
\mainmatter
\input{mainmatter/introduction}
\input{mainmatter/chapter-2}
\input{mainmatter/chapter-3}
%\input{mainmatter/chapter-4} % Create file to add
\input{mainmatter/conclusion}
%% Prevent urls running into margins in bibliography
\setcounter{biburlnumpenalty}{7000}
\setcounter{biburllcpenalty}{7000}
\setcounter{biburlucpenalty}{7000}
%% Add bibliography
\printbibliography[heading=bibintoc,title=References]
%% Letters for chapters
\appendix
\input{appendix/appendix-a}
%\input{appendix/appendix-c} % Create file to add
\end{document}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment