From 0aa3c68db9d9cbcd01e19b4797a7fd2226276011 Mon Sep 17 00:00:00 2001 From: "Edgar P. Burkhart" Date: Tue, 1 Feb 2022 15:59:13 +0100 Subject: [PATCH] Bibliography: day 1 --- biblio/cours.sty | 247 +++++++++++++++++++++++++++++++++++++++++++++ biblio/library.bib | 212 ++++++++++++++++++++++++++++++++++++++ biblio/main.tex | 44 ++++++++ 3 files changed, 503 insertions(+) create mode 100644 biblio/cours.sty create mode 100644 biblio/library.bib create mode 100644 biblio/main.tex diff --git a/biblio/cours.sty b/biblio/cours.sty new file mode 100644 index 0000000..a351a29 --- /dev/null +++ b/biblio/cours.sty @@ -0,0 +1,247 @@ +\ProvidesPackage{cours} +%%% XeLaTeX ONLY + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%% Packages +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\@ifclassloaded{beamer}{}{ +\RequirePackage[xetex]{geometry} +\RequirePackage[pdfusetitle]{hyperref} +\RequirePackage{enumitem} +} +\RequirePackage{fontspec} +\RequirePackage{polyglossia} +\RequirePackage{csquotes} +\RequirePackage{amsmath, amssymb, amsbsy} +%\RequirePackage{mathtools} +\RequirePackage{siunitx} +\RequirePackage{stmaryrd} +\RequirePackage{dsfont} +\RequirePackage{array} +\RequirePackage{esvect} +\RequirePackage{tikz} +\RequirePackage{pgfplots} +\RequirePackage{amsthm} +\RequirePackage{pgfpages} +\RequirePackage[version=4]{mhchem} +%\RequirePackage{breqn} +\RequirePackage{listings} +\RequirePackage{esint} +\RequirePackage{tabularx} +\RequirePackage{multirow} +\RequirePackage{booktabs} +%\RequirePackage{multicol} +\RequirePackage{setspace} +%\RequirePackage{ulem} +\RequirePackage{cancel} +\RequirePackage{xcolor} +\RequirePackage{unicode-math} +%\RequirePackage[backend=biber,sorting=ynt]{biblatex} +\RequirePackage[notransparent]{svg} +\@ifclassloaded{beamer}{}{ +\RequirePackage[list=true]{subcaption} +} + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%% Langue +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\setdefaultlanguage{french} +\MakeOuterQuote{"} + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%% Macros +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%% Dérivées / Intégrales +\renewcommand\d{\mathrm d} +\newcommand\dd{\mathop{}\,\mathrm d} +\newcommand\deriv[2]{\frac{\d#1}{\d#2}} +\newcommand\dderiv[2]{\frac{\d^2#1}{\d#2^2}} +\newcommand\der[2]{\frac{\d#1}{\d#2}} +\newcommand\dder[2]{\frac{\d^2#1}{\d#2^2}} +\newcommand\dpar[2]{\frac{\partial#1}{\partial#2}} +\newcommand\ddpar[2]{\frac{\partial^2#1}{\partial#2^2}} +\newcommand\derp[2]{\frac{\partial#1}{\partial#2}} +\newcommand\dderp[2]{\frac{\partial^2#1}{\partial#2^2}} +\newcommand\dint{\int\displaylimits} +\newcommand\doint{\oint\displaylimits} + +%%% Symboles +\newcommand\bOmega{\boldsymbol\Omega} +\newcommand\bepsilon{\boldsymbol\epsilon} +\newcommand\btheta{\boldsymbol\theta} +\newcommand\bsigma{\boldsymbol\sigma} +\renewcommand\epsilon{\varepsilon} +%\renewcommand\C{\coulomb} +\newcommand\e{\mathrm e} + +\newcommand\RR{\mathbb R} +\newcommand\CC{\mathbb C} +\newcommand\KK{\mathbb K} +\newcommand\NN{\mathbb N} +\newcommand\FF{\mathbb F} +\newcommand\EE{\mathbb E} +\newcommand\DD{\mathbb D} +\newcommand\fF{\mathcal F} +\newcommand\dD{\mathcal D} +\newcommand\lL{\mathcal L} +\newcommand\cC{\mathcal C} + +\newcommand\id{\mathbf 1} +\newcommand\Id{\mathrm Id} + +%%% Exposant / Indice à gauche +\newcommand\trans[1]{\vphantom{#1}^t#1} +\newcommand\eul[1]{\vphantom{#1}^E#1} +\newcommand\lag[1]{\vphantom{#1}^L#1} +\newcommand\indL[2]{\vphantom{#2}_{#1}#2} +\newcommand\expL[2]{\vphantom{#2}^{#1}#2} + +%%% Opérateurs mathématiques +\newcommand\abs[1]{\left|#1\right|} +\newcommand\nor[1]{\left\lVert#1\right\lVert} +\newcommand\peigne{\mathbin{\rotatebox[origin=c]{-90}{$\exists$}}} +\newcommand\moy[1]{\left<#1\right>} +\newcommand\tor[2]{\vphantom{\begin{array}c#2\end{array}}_{#1}\left|\begin{array}c#2\end{array}\right.} + +\DeclareMathOperator\grad{\u{grad}} +\DeclareMathOperator\ggrad{\uu{grad}} +\let\div\relax +\DeclareMathOperator\diverg{\u{div}} +\DeclareMathOperator\rot{\u{rot}} +\DeclareMathOperator\Ker{Ker} +\DeclareMathOperator\sign{sign} +\DeclareMathOperator\tr{tr} +\DeclareMathOperator\cotan{cotan} +\DeclareMathOperator\cond{cond} +\DeclareMathOperator\erf{erf} +\DeclareMathOperator\erfc{erfc} + +%%% Vecteurs et Matrices +\renewcommand\u[1]{\underline{#1}} +\newcommand\uu[1]{\underline{\underline{#1}}} +\newcommand\ov[1]{\overline{#1}} + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%% Paramétrage des packages +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%% Styles de théorèmes +\theoremstyle{remark} +\newtheorem{rem}{Remarque} +\newtheorem*{rem*}{Remarque} +\theoremstyle{definition} +\newtheorem*{defi}{Définition} +\newtheorem{ex}{Exemple} +\newtheorem*{theo}{Théorème} + +%%% Listings (code) +\lstset{numbers=left, + numberstyle=\tiny\color{gray}\ttfamily, + language=Python, + basicstyle=\linespread{1.2}\ttfamily, + columns = flexible, + keywordstyle=\color{blue}, + commentstyle=\itshape\color{gray}, + stringstyle=\color{ForestGreen}, + frame=single, + stepnumber=5, + showstringspaces=true, + backgroundcolor=\color{ultralightgray}, + morekeywords={>>>, np, array, zeros, shape}, + %breaklines=true, + %prebreak=\textbackslash, + alsoletter=> +} + +%%% Tikz / PGF +\usetikzlibrary{shapes} +\pgfplotsset{compat=1.14} + +%%% SIUnitX +\sisetup{ + mode = text, + %locale = FR, + %list-final-separator = {\text{~et~}}, + %list-pair-separator = {\text{~et~}}, + %range-phrase = {\text{~à~}}, + retain-explicit-plus, + forbid-literal-units, + sticky-per, + %inter-unit-product = {.}, + per-mode = power-positive-first, + uncertainty-mode = separate, +} +\SendSettingsToPgf +\DeclareSIUnit\met{met} +\DeclareSIUnit\gon{gon} +\DeclareSIUnit\bar{bar} +\DeclareSIUnit\psi{psi} +\DeclareSIUnit\deg{deg} + +%%% Arcs +\DeclareFontFamily{OMX}{yhex}{} +\DeclareFontShape{OMX}{yhex}{m}{n}{<->yhcmex10}{} +\DeclareSymbolFont{yhlargesymbols}{OMX}{yhex}{m}{n} +\DeclareMathAccent{\wideparen}{\mathord}{yhlargesymbols}{"F3} + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%% Mise en forme +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\@ifclassloaded{beamer}{}{ +\geometry{ + a4paper, + total={16cm, 24cm} +} +} + +\setmainfont{Inter} +\setsansfont{Inter} +\setmathfont[mathrm=sym]{Fira Math} +\setmonofont[Ligatures=TeX]{Fira Code} + +\definecolor{ENSblue}{RGB}{0,119,139} +\definecolor{ultralightgray}{gray}{.95} +\definecolor{customblue}{RGB}{0,102,204} + +%\@ifclassloaded{letter}{}{ +% \renewcommand\thesection{\Roman{section}} +% \renewcommand\thesubsection{\thesection.\arabic{subsection}} +% \renewcommand\thesubsubsection{\thesubsection.\arabic{subsubsection}} +%} + +\@ifclassloaded{beamer}{}{ + \hypersetup{ + citecolor=customblue, + filecolor=customblue, + colorlinks=true, + linkcolor=customblue, + urlcolor=customblue + } + + \setlist[itemize]{nosep} +} + +\setcounter{secnumdepth}{3} + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%% Fonctions pgfplots +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\makeatletter +\pgfmathdeclarefunction{erf}{1}{% + \begingroup + \pgfmathparse{#1 > 0 ? 1 : -1}% + \edef\sign{\pgfmathresult}% + \pgfmathparse{abs(#1)}% + \edef\x{\pgfmathresult}% + \pgfmathparse{1/(1+0.3275911*\x)}% + \edef\t{\pgfmathresult}% + \pgfmathparse{% + 1 - (((((1.061405429*\t -1.453152027)*\t) + 1.421413741)*\t + -0.284496736)*\t + 0.254829592)*\t*exp(-(\x*\x))}% + \edef\y{\pgfmathresult}% + \pgfmathparse{(\sign)*\y}% + \pgfmath@smuggleone\pgfmathresult% + \endgroup +} +\makeatother diff --git a/biblio/library.bib b/biblio/library.bib new file mode 100644 index 0000000..0e7b2e4 --- /dev/null +++ b/biblio/library.bib @@ -0,0 +1,212 @@ +@misc{olaFlow, + author={Higuera, P.}, + title={olaFlow: {CFD} for waves [{S}oftware].}, + year=2017, + doi={10.5281/zenodo.1297013}, + url={https://doi.org/10.5281/zenodo.1297013} +} + +@report{amir, + author={Amir Parvin}, + title={Processes allowing large block displacement under wave action}, + year={2020}, +} + +@article{cox2018extraordinary, + title={Extraordinary boulder transport by storm waves (west of Ireland, winter 2013--2014), and criteria for analysing coastal boulder deposits}, + author={Cox, R{\'o}nadh and Jahn, Kalle L and Watkins, Oona G and Cox, Peter}, + journal={Earth-Science Reviews}, + volume={177}, + pages={623--636}, + year={2018}, + publisher={Elsevier} +} + +@article{shah2013coastal, + title={Coastal boulders in Martigues, French Mediterranean: evidence for extreme storm waves during the Little Ice Age}, + author={Shah-Hosseini, M and Morhange, C and De Marco, A and Wante, J and Anthony, EJ and Sabatier, F and Mastronuzzi, G and Pignatelli, C and Piscitelli, A}, + journal={Zeitschrift f{\"u}r Geomorphologie}, + volume={57}, + number={Suppl 4}, + pages={181--199}, + year={2013} +} + +@conference{abadie, + title={Large concrete block displacement under extreme wave: analysis of the 2/28/2017 event}, + author={Amir Parvin and Volker Roeber and Pierre-Antoine Poncet and D. Sous and M. Mengaillou and Stéphane Abadie}, + booktitle={Seminaire technique EZPONDA}, + year={2019}, +} + +@phdthesis{poncet2021characterization, + title={Characterization of wave impact loading on structures at full scale: field experiment, statistical analysis and 3D advanced numerical modeling}, + author={Poncet, Pierre-Antoine}, + year={2021}, + school={Pau}, + chapter={4}, +} + +@article{nott2003waves, + title={Waves, coastal boulder deposits and the importance of the pre-transport setting}, + author={Nott, Jonathan}, + journal={Earth and Planetary Science Letters}, + volume={210}, + number={1-2}, + pages={269--276}, + year={2003}, + publisher={Elsevier} +} + +@article{zijlema2011swash, + title={SWASH: An operational public domain code for simulating wave fields and rapidly varied flows in coastal waters}, + author={Zijlema, Marcel and Stelling, Guus and Smit, Pieter}, + journal={Coastal Engineering}, + volume={58}, + number={10}, + pages={992--1012}, + year={2011}, + publisher={Elsevier} +} + +@incollection{mansard1980measurement, + title={The measurement of incident and reflected spectra using a least squares method}, + author={Mansard, Etienne PD and Funke, ER}, + booktitle={Coastal Engineering 1980}, + pages={154--172}, + year={1980} +} + +@article{suh2001separation, + title={Separation of incident and reflected waves in wave--current flumes}, + author={Suh, Kyung Doug and Park, Woo Sun and Park, Beom Seok}, + journal={Coastal Engineering}, + volume={43}, + number={3-4}, + pages={149--159}, + year={2001}, + publisher={Elsevier} +} + +@article{frigaard1995time, + title={A time-domain method for separating incident and reflected irregular waves}, + author={Frigaard, Peter and Brorsen, Michael}, + journal={Coastal engineering}, + volume={24}, + number={3-4}, + pages={205--215}, + year={1995}, + publisher={Elsevier} +} + +@article{baldock1999separation, + title={Separation of incident and reflected waves over sloping bathymetry}, + author={Baldock, TE and Simmonds, DJ}, + journal={Coastal Engineering}, + volume={38}, + number={3}, + pages={167--176}, + year={1999}, + publisher={Elsevier} +} + +@article{roge2019estimation, + title={Estimation of incident and reflected wave trains in highly nonlinear two-dimensional irregular waves}, + author={R{\o}ge Eldrup, Mads and Lykke Andersen, Thomas}, + journal={Journal of Waterway, Port, Coastal, and Ocean Engineering}, + volume={145}, + number={1}, + pages={04018038}, + year={2019}, + publisher={American Society of Civil Engineers} +} + +@article{andersen2017estimation, + title={Estimation of incident and reflected components in highly nonlinear regular waves}, + author={Andersen, Thomas Lykke and Eldrup, Mads R{\o}ge and Frigaard, Peter}, + journal={Coastal Engineering}, + volume={119}, + pages={51--64}, + year={2017}, + publisher={Elsevier} +} + +@article{inch2016accurate, + title={Accurate estimation of wave reflection on a high energy, dissipative beach}, + author={Inch, Kris and Davidson, Mark and Masselink, Gerd and Russell, Paul}, + journal={Journal of Coastal Research}, + number={75 (10075)}, + pages={877--881}, + year={2016}, + publisher={Allen Press} +} + +@incollection{pedersen2007resolving, + title={Resolving transformed wave directions near coastal structures}, + author={Pedersen, Torstein and Goldberg, Judah and Lohrmann, Atle and Siegel, Eric}, + booktitle={Coastal Engineering 2006: (In 5 Volumes)}, + pages={4362--4373}, + year={2007}, + publisher={World Scientific} +} + +@article{sobey1999locally, + title={A locally nonlinear interpretation of PUV measurements}, + author={Sobey, Rodney J and Hughes, Steven A}, + journal={Coastal engineering}, + volume={36}, + number={1}, + pages={17--36}, + year={1999}, + publisher={Elsevier} +} + +@article{davidson1996new, + title={A new non-dimensional number for the analysis of wave reflection from rubble mound breakwaters}, + author={Davidson, MA and Bird, PAD and Bullock, GN and Huntley, DA}, + journal={Coastal Engineering}, + volume={28}, + number={1-4}, + pages={93--120}, + year={1996}, + publisher={Elsevier} +} + +@article{poncet2020wave, + title={WAVE TRANSFORMATION OVER A STEEP COMPOSITE BREAKWATER, IN-SITU EXPERIMENT RESULTS}, + author={Poncet, PIerre-Antoine and Sous, Damien and Abadie, Stephane}, + journal={Coastal Engineering Proceedings}, + number={36v}, + pages={27--27}, + year={2020} +} + +@article{larroque2018situ, + title={In-situ measurements of wave impact pressure on a composite breakwater: preliminary results}, + author={Larroque, Benoit and Arnould, Philippe and Luthon, Franck and Poncet, Pierre-Antoine and Rahali, A and Abadie, St{\'e}phane}, + journal={Journal of Coastal Research}, + number={85 (10085)}, + pages={1086--1090}, + year={2018}, + publisher={Allen Press} +} + +@article{sheremet2002observations, + title={Observations of nearshore infragravity waves: Seaward and shoreward propagating components}, + author={Sheremet, A and Guza, RT and Elgar, Steve and Herbers, THC}, + journal={Journal of Geophysical Research: Oceans}, + volume={107}, + number={C8}, + pages={10--1}, + year={2002}, + publisher={Wiley Online Library} +} + +@incollection{guza1977resonant, + title={Resonant interactions for waves breaking on a beach}, + author={Guza, Robert T and Bowen, Anthony J}, + booktitle={Coastal Engineering 1976}, + pages={560--579}, + year={1977} +} + diff --git a/biblio/main.tex b/biblio/main.tex new file mode 100644 index 0000000..54f294d --- /dev/null +++ b/biblio/main.tex @@ -0,0 +1,44 @@ +\documentclass[english, a4paper, 12pt]{article} +\usepackage{cours} +\setmainlanguage{english} + +\usepackage[ + backend=biber, + sorting=ynt, + style=iso-authoryear +]{biblatex} +\bibliography{library} + +\title{M2 Internship\\\huge Bibliography review} +\author{Edgar P. Burkhart} + +\begin{document} +\maketitle + +\section{Research strategy} +\subsection{Extracting components from buoy data} +\paragraph{incident and reflected wave separation} +\cite{mansard1980measurement}: extract incident and reflected spectra from +spectrum measurements at three different points. +\cite{suh2001separation,frigaard1995time,baldock1999separation, +roge2019estimation,andersen2017estimation} + +\paragraph{incident and reflected wave separation single gauge} +\paragraph{incident and reflected wave separation puv method} +Probablement très intéressant: \cite{inch2016accurate}: +\cite{sheremet2002observations,guza1977resonant} + +\cite{pedersen2007resolving} +\paragraph{puv method} +\cite{sobey1999locally} +\paragraph{artha breakwater reflection} +\cite{poncet2020wave,larroque2018situ} + +\subsection{Reflection} +\paragraph{wave reflection analysis} +\cite{davidson1996new} + + +\nocite{*} +\printbibliography +\end{document}