Skip to content
This repository was archived by the owner on Jan 5, 2026. It is now read-only.

Commit c53f565

Browse files
committed
Merge branch 'release/1.0.3' into latest
2 parents f13df9e + 83e8d46 commit c53f565

42 files changed

Lines changed: 2734 additions & 10 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Presentation/.gitignore

Lines changed: 428 additions & 0 deletions
Large diffs are not rendered by default.
61.1 KB
Loading
515 KB
Loading

Presentation/Figs/allegory.jpeg

73.1 KB
Loading
60.3 KB
Loading
682 KB
Loading
1.16 MB
Loading
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
\documentclass[compress,11pt,aspectratio=169,t]{beamer}
2+
3+
% language and encodings
4+
\usepackage[ngerman]{babel}
5+
\usepackage[utf8]{inputenc}
6+
\usepackage[T1]{fontenc}
7+
8+
% TikZ
9+
\usepackage{tikz}
10+
11+
% Beamer theme - options:
12+
% - navigationDotsLocation: specify location of the dots in the headline
13+
% - near: display the dots near the section names (default)
14+
% - below: display the dots below the section names
15+
% - titlePageSpacing: vertical spacing between items on title page (default: 1.5em)
16+
% - titlePageNumberOfAuthors: influence size and location of authors on title page
17+
% - few (default): use larger font size, display authors on the left
18+
% - many: use smaller font size, display authors on the right
19+
% - thanksPageBigGraphicsScale: scale for the big graphics on the thanks page (default: 1)
20+
% - titlePageUniversityLogo: location of university logo file on the title page
21+
% (default: ../gfx/logos/logo_us_white)
22+
% - titlePageInstituteLogo: location of institute logo file on the title page - if empty, nothing is displayed
23+
% (default: empty)
24+
% - titlePageDepartmentLogo: location of department logo file on the title page - if empty, nothing is displayed
25+
% (default: empty)
26+
% - titlePageBigLogo: location of big logo file on the title page - if empty, nothing is displayed
27+
% (default: empty)
28+
% - thanksPageBigGraphics: location of the big graphics on the thanks page
29+
% (default: ../gfx/tikz/gfx_title)
30+
% - thanksPageInstituteLogo: location of institute logo file on the thanks page - if empty, nothing is displayed
31+
% (default: empty)
32+
% - thanksPageDepartmentLogo: location of department logo file on the thanks page - if empty, nothing is displayed
33+
% (default: empty)
34+
% - thanksPageBigLogo: location of big logo file on the thanks page - if empty, nothing is displayed
35+
% (default: empty)
36+
\usetheme[
37+
thanksPageBigGraphics=gfx/bif.png,
38+
thanksPageBigGraphicsScale=0.5,
39+
titlePageInstituteLogo=gfx/logos/logo_ipvs.png,
40+
thanksPageInstituteLogo=gfx/logos/logo_ipvs.png,
41+
%navigationDotsLocation=below,
42+
%titlePageSpacing=0.6em,
43+
%titlePageNumberOfAuthors=many,
44+
]{Stuttgart}
45+
46+
% metadata
47+
\title{
48+
Investigation of Multistability-affected
49+
Period-incrementing and Period-adding Structures
50+
in a Model of a Power Converter with Symmetry
51+
}
52+
\author{Fabian Weik}
53+
\institute{Institute of Parallel and Distributed Systems}
54+
\date{September 2023}
55+
56+
\usepackage{xkeyval}
57+
\usepackage{todonotes}
58+
\presetkeys{todonotes}{inline}{}
59+
60+
\input{config.tex}
61+
62+
\begin{document}
63+
\include{Sections/00_content.tex}
64+
65+
\bibliographystyle{apalike}
66+
\bibliography{../Report/bibliography.bib}
67+
\end{document}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
\only<beamer>{\titleframe}
2+
3+
\begin{frame}{Overview}
4+
\tableofcontents
5+
\end{frame}
6+
7+
\input{Sections/01_og.tex}
8+
\input{Sections/02_archetypal.tex}
9+
\input{Sections/03_adding_in_model.tex}
10+
\input{Sections/04_halved.tex}
11+
\input{Sections/05_conclusion.tex}
12+
13+
\thanksframe

Presentation/Sections/01_og.tex

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
\sectionframe{Original Model}
2+
\section{OG}
3+
4+
\begin{frame}{Model Origin}
5+
\begin{itemize}
6+
\item DC/AC power converter
7+
\item The converter switches $\Rightarrow$ models are piecewise-smooth and discontinuous
8+
\pause \vspace{1em}
9+
\item We focus on the time-discrete model
10+
\item It maps phase of the last switch $\theta_n$ to the phase of the next switch $\theta_{n+1}$
11+
\end{itemize}
12+
\end{frame}
13+
14+
\begin{frame}{Model Definition (1/2)}
15+
\vspace{-2.0em}
16+
\begin{align}
17+
\theta_{n+1} & = F(\theta_n) \mod 2 \pi
18+
\\
19+
F(\theta) & = \begin{cases}
20+
F_1(\theta) & \text{if } q \cdot \cos(\theta) > 0 \\
21+
F_2(\theta) & \text{if } q \cdot \cos(\theta) < 0
22+
\end{cases}
23+
\\
24+
F_1(\theta) & = \begin{cases}
25+
\theta + z_{L_+} + z_1 & \text{if } z_{L_+} < z_{L_0} \\
26+
\theta + z_{L_0} + z_2 & \text{if } z_{L_+} > z_{L_0}
27+
\end{cases}
28+
\\
29+
F_2(\theta) & = \begin{cases}
30+
\theta + z_{R_+} + z_3 & \text{if } z_{R_+} < z_{R_0} \\
31+
\theta + z_{R_0} + z_4 & \text{if } z_{R_+} > z_{R_0}
32+
\end{cases}
33+
\end{align}
34+
35+
\pause
36+
\vspace{2em}
37+
This looks ok, but how are these values defined?
38+
\begin{align*}
39+
z_1, z_2, z_3, z_4, z_{L_+}, z_{L_-}, z_{R_+}, \text{ and } z_{R_0}
40+
\end{align*}
41+
\end{frame}
42+
43+
\begin{frame}{Model Definition (2/2)}
44+
\vspace{-1em}
45+
The smallest non-negative solutions to the following implicit equations
46+
\begin{subequations}
47+
\begin{align}
48+
(q \cdot \cos(\theta) + \mu \cdot \chi) \cdot e^{\lambda \cdot z_{L_+}}
49+
& = q \cdot \cos(\theta + z_{L_+}) + \chi \label{equ:setup.og.def.impl.1.A} \\
50+
(q \cdot \cos(\theta) + \mu \cdot \chi) \cdot e^{\lambda \cdot z_{L_0}}
51+
& = q \cdot \cos(\theta + z_{L_0}) - \chi \\
52+
(q \cdot \cos(\theta) - \mu \cdot \chi) \cdot e^{\lambda \cdot z_{R_+}}
53+
& = q \cdot \cos(\theta + z_{R_+}) - \chi \\
54+
(q \cdot \cos(\theta) - \mu \cdot \chi) \cdot e^{\lambda \cdot z_{R_0}}
55+
& = q \cdot \cos(\theta + z_{R_0}) + \chi \label{equ:setup.og.def.impl.1.D}
56+
\\
57+
(q \cdot \cos(\theta + z_{L_+}) + \chi + 1) \cdot e^{\lambda \cdot z_1} - 1
58+
& = q \cdot \cos(\theta + z_{L_+} + z_1) + \mu \cdot \chi \label{equ:setup.og.def.impl.2.A} \\
59+
(q \cdot \cos(\theta + z_{L_0} + z_2) - \chi - 1) \cdot e^{\lambda \cdot z_2} + 1
60+
& = q \cdot \cos(\theta + z_{L_0} + z_2) - \mu \cdot \chi \\
61+
(q \cdot \cos(\theta + z_{R_+}) + \chi + 1) \cdot e^{\lambda \cdot z_3} - 1
62+
& = q \cdot \cos(\theta + z_{L_+} + z_1) + \mu \cdot \chi \\
63+
(q \cdot \cos(\theta + z_{R_0} + z_4) - \chi - 1) \cdot e^{\lambda \cdot z_4} + 1
64+
& = q \cdot \cos(\theta + z_{R_0} + z_2) - \mu \cdot \chi \label{equ:setup.og.def.impl.2.D}
65+
\end{align}
66+
\end{subequations}
67+
\begin{flushright}
68+
Definition from \cite{akyuz2022}
69+
\end{flushright}
70+
\end{frame}
71+
72+
\begin{frame}{Unusual Bifurcation Structure}
73+
\begin{figure}
74+
\only<1>{
75+
\includegraphics[width=0.45 \textwidth]{../Figures/2/2.3/result.png}
76+
}
77+
\only<2>{
78+
\stackunder[5pt]{
79+
\includegraphics[width=0.3 \textwidth]{../Figures/2/2.4a/result.png}
80+
}{$A:\:\A^3\B^3\C^3\D^3$}
81+
\stackunder[5pt]{
82+
\includegraphics[width=0.3 \textwidth]{../Figures/2/2.4b/result.png}
83+
}{$B:\:\A^3\B^3\C^2\D^4,\:\A^2\B^4\C^3\D^3$}
84+
\stackunder[5pt]{
85+
\includegraphics[width=0.3 \textwidth]{../Figures/2/2.4c/result.png}
86+
}{$C:\:\A^2\B^4\C^2\D^4$}
87+
}
88+
\end{figure}
89+
\pause
90+
\vspace{1em}
91+
Symmetry $F(\theta + \pi) = F(\theta) + \pi \mod 2\pi$ \hfill \cite{akyuz2022}
92+
\end{frame}

0 commit comments

Comments
 (0)