From 25c041d50987947a30ce40191834c125fbe7adef Mon Sep 17 00:00:00 2001 From: Kees van Kempen Date: Mon, 14 Feb 2022 09:38:11 +0100 Subject: [PATCH] ass1: Really add the draft --- superconductivity_assignment1_kvkempen.tex | 84 ++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 superconductivity_assignment1_kvkempen.tex diff --git a/superconductivity_assignment1_kvkempen.tex b/superconductivity_assignment1_kvkempen.tex new file mode 100644 index 0000000..39a3a6c --- /dev/null +++ b/superconductivity_assignment1_kvkempen.tex @@ -0,0 +1,84 @@ +\documentclass[a4paper, 11pt]{article} +\usepackage[utf8]{inputenc} + +% Took inspiration from +% https://www.overleaf.com/latex/templates/tarea-mfm-ii/rkqcbsjyyksm + +% From aga-homework.cls +\usepackage[ + a4paper, + headheight = 20pt, + margin = 1in, + tmargin = \dimexpr 1in - 10pt \relax +]{geometry} + +\usepackage{fancyhdr} % for headers and footers +\usepackage{graphicx} % for including figures +%\usepackage{mathpazo} % use Palation font +%\usepackage{amsmath} % use AMS math package +%\usepackage{amssymb} % use AMS symbols +%\usepackage{amsthm} % for writing proofs +%\usepackage{array} % for setting up arguments to columns +\usepackage{booktabs} % for professional tables +%\usepackage% +% [tworuled, linesnumbered, noend, noline]% +% {algorithm2e} % for typesetting pseudo-code +%\usepackage{xcolor} % for colored text (comments in algorithms) +%\usepackage{trimspaces, xstring} % for multiple author parsing +\setlength{\headheight}{14pt} + + +\fancypagestyle{plain}{ + \fancyhf{} + \fancyhead[L]{\sffamily Radboud University Nijmegen} + \fancyhead[R]{\sffamily Superconductivity (NWI-NM117), Q3+Q4} + \fancyfoot[R]{\sffamily\bfseries\thepage} + \renewcommand{\headrulewidth}{0.5pt} + \renewcommand{\footrulewidth}{0.5pt} +} +\pagestyle{fancy} + +\usepackage{siunitx} +\usepackage{hyperref} +%\usepackage{href} +%\usepackage[nottoc,numbib]{tocbibind} +\usepackage{float} + +\title{Superconductivity - Assignment 1} +\author{ + Kees van Kempen (s4853628)\\ + \texttt{k.vankempen@student.science.ru.nl} +} +\AtBeginDocument{\maketitle} + + +\begin{document} + +\section{Electron-phonon coupling in elements} +The data on critical temperatures $T_c$ and (approximately) room temperature resistivity $\rho_{\SI{300}{\kelvin}}$ is from varies sources, as can be found in the table in appendix \ref{appendix:scelements}. + +\begin{figure}[H] + \includegraphics[width=\textwidth]{sc_elements.pdf} +\end{figure} + +\section{Exam question electrodynamics in superconductors} +No idea yet. + +\section{Difference between type-I and type-II superconductors} +Type-I superconductors are thought to be described by BCS theory. +They are phonon-mediated. +They have different phase diagrams from type-II superconductors, +with two critical fields but one critical temperature. +There is a superconducting phase and a vortex phase. + +Something about quantized flux by the Meissner-Ochsenfeld effect. + +\bibliographystyle{vancouver} +\bibliography{references.bib} + +\appendix +\section{Superconducting elements} +\label{appendix:scelements} +\input{sc_elements.tex} + +\end{document}