Files
university/public/S2/ExPhyII/VL/ExIIVL1.html
2025-04-24 09:13:05 +02:00

354 lines
18 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE HTML>
<html lang="en" class="sidebar-visible no-js light">
<head>
<!-- Book generated using mdBook -->
<meta charset="UTF-8">
<title>shiroa</title>
<!-- Custom HTML head -->
<!-- Put your customized HTML <head> meta here. -->
<meta name="description" content="ExPhy IIVorlesung 116.04.2025Jonas HahnInhaltsverzeichnisOrganisatorisches 1Behandelte Themen 1Literatur 10. Einleitung 10.1 Vektroranalysis 10.2 Anfaenge der Elektrodynamik 11. Elektrostatik 11.1 Ladung und Coulomb Gesetz 11.1.1 Zusammenfassung historischer Beobachtungen 1OrganisatorischesBehandelte ThemenEinleitung 1VLElektrostatik (ohne zeitliche Veraenderung) 5VLElektrischer Strom 3VLStatische Magnetfelder 3VLZeitlich veraendlerliche Felder 4VLMaxwell Gleichungen 1VLElektrodynamische S">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#ffffff" />
<link rel="stylesheet" href="/theme/css/variables.css">
<link rel="stylesheet" href="/theme/css/general.css">
<link rel="stylesheet" href="/theme/css/chrome.css">
<!-- Fonts -->
<link rel="stylesheet" href="/theme/FontAwesome/css/font-awesome.css">
<!-- Custom theme stylesheets -->
<style>
.typst-app { position: relative; }
</style>
<script>
/// https://segmentfault.com/a/1190000016574288
(function () {
var ie = !!(window.attachEvent && !window.opera);
var wk = /webkit\/(\d+)/i.test(navigator.userAgent) && RegExp.$1 < 525;
var fn = [];
var run = function () {
for (var i = 0; i < fn.length; i++) fn[i]();
};
var d = document;
d.ready = function (f) {
if (!ie && !wk && d.addEventListener) return d.addEventListener('DOMContentLoaded', f, false);
if (fn.push(f) > 1) return;
if (ie)
(function () {
try {
d.documentElement.doScroll('left');
run();
} catch (err) {
setTimeout(arguments.callee, 0);
}
})();
else if (wk)
var t = setInterval(function () {
if (/^(loaded|complete)$/.test(d.readyState)) clearInterval(t), run();
}, 0);
};
})();
window.captureStack = function() { }
</script>
<script id="shiroa-js" type="module" src="/internal/shiroa.js"></script>
<script>
window.typstRerender = () => { };
window.typstChangeTheme = () => { };
var typstBookJsLoaded = new Promise((resolve, reject) => {
document.getElementById('shiroa-js').addEventListener('load', resolve);
document.getElementById('shiroa-js').addEventListener('error', reject);
});
var rendererWasmModule = fetch('/internal/typst_ts_renderer_bg.wasm');
window.typstBookJsLoaded = typstBookJsLoaded;
window.typstRenderModuleReady = typstBookJsLoaded.then(() => {
var typstRenderModule = window.typstRenderModule =
window.TypstRenderModule.createTypstRenderer();
return typstRenderModule
.init({
getModule: () => rendererWasmModule,
}).then(() => typstRenderModule);
}).catch((err) => {
console.error('shiroa.js failed to load', err);
});
</script>
</head>
<body>
<div id="body-container">
<!-- Provide site root to javascript -->
<script>
var path_to_root = "/";
window.typstPathToRoot = path_to_root;
var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "ayu" : "light";
</script>
<!-- Work around some values being stored in localStorage wrapped in quotes -->
<script>
// reserved util next major release
try {
localStorage.removeItem('mdbook-theme');
localStorage.removeItem('mdbook-sidebar');
} catch (e) { }
try {
var theme = localStorage.getItem('shiroa-theme');
var sidebar = localStorage.getItem('shiroa-sidebar');
if (theme.startsWith('"') && theme.endsWith('"')) {
localStorage.setItem('shiroa-theme', theme.slice(1, theme.length - 1));
}
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
localStorage.setItem('shiroa-sidebar', sidebar.slice(1, sidebar.length - 1));
}
} catch (e) { }
</script>
<!-- Set the theme before any content is loaded, prevents flash -->
<script>
window.getTypstTheme = function getTypstTheme() {
var _theme;
try { _theme = localStorage.getItem('shiroa-theme'); } catch (e) { }
if (_theme === null || _theme === undefined) { _theme = default_theme; }
window.typstBookTheme = _theme;
return _theme;
}
window.isTypstLightTheme = function isLightTheme(theme) {
return theme === 'light' || theme === 'rust';
}
var theme = getTypstTheme();
// todo: consistent theme between html and typst
var html = document.querySelector('html');
html.classList.remove('no-js')
html.classList.remove('light')
html.classList.add(theme);
html.classList.add('js');
</script>
<!-- Hide / unhide sidebar before it is displayed -->
<script>
var html = document.querySelector('html');
var sidebar = null;
if (document.body.clientWidth >= 800) {
try { sidebar = localStorage.getItem('shiroa-sidebar'); } catch (e) { }
sidebar = sidebar || 'visible';
} else {
sidebar = 'hidden';
}
html.classList.remove('sidebar-visible');
html.classList.add("sidebar-" + sidebar);
</script>
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
<div class="sidebar-scrollbox">
<ol class="chapter"><li class="chapter-item expanded affix "><li class="part-title">Introduction</li><li><ol class="section"><li class="chapter-item expanded "><a href="/S2/ExPhyII/VL/ExIIVL1.html" class="active"><strong aria-hidden="true">1.1.</strong> Installation</a></li><li><ol class="section"><li class="chapter-item expanded "><div><strong aria-hidden="true">1.2.1.</strong> Drafting chapter</div></li></ol></li></ol></li></ol>
</div>
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
</nav>
<!-- Track and set sidebar scroll position -->
<script>
var sidebarScrollbox = document.querySelector('#sidebar .sidebar-scrollbox');
sidebarScrollbox.addEventListener('click', function (e) {
if (e.target.tagName === 'A') {
sessionStorage.setItem('sidebar-scroll', sidebarScrollbox.scrollTop);
}
}, { passive: true });
var sidebarScrollTop = sessionStorage.getItem('sidebar-scroll');
sessionStorage.removeItem('sidebar-scroll');
if (sidebarScrollTop) {
// preserve sidebar scroll position when navigating via links within sidebar
sidebarScrollbox.scrollTop = sidebarScrollTop;
} else {
// scroll sidebar to current active section when navigating via "next/previous chapter" buttons
var activeSection = document.querySelector('#sidebar .active');
if (activeSection) {
activeSection.scrollIntoView({ block: 'center' });
}
}
</script>
<div id="page-wrapper" class="page-wrapper">
<div class="page">
<!-- Put your customized page header here. --> <div id="menu-bar-hover-placeholder"></div>
<div id="menu-bar" class="menu-bar sticky">
<div class="left-buttons">
<button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents"
aria-label="Toggle Table of Contents" aria-controls="sidebar">
<i class="fa fa-bars"></i>
</button>
<button id="theme-toggle" class="icon-button" type="button" title="Change theme"
aria-label="Change theme" aria-haspopup="true" aria-expanded="false"
aria-controls="theme-list">
<i class="fa fa-paint-brush"></i>
</button>
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
<li role="none"><button role="menuitem" class="theme" id="light">Light</button></li>
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
</ul>
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)"
aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S"
aria-controls="searchbar">
<i class="fa fa-search"></i>
</button>
</div>
<h1 class="menu-title">shiroa</h1>
<div class="right-buttons">
<a href="https://github.com/Myriad-Dreamin/shiroa" title="Git repository" aria-label="Git repository">
<i id="git-repository-button" class="fa fa-github"></i>
</a>
</div>
</div>
<div id="search-wrapper" class="hidden">
<form id="searchbar-outer" class="searchbar-outer">
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..."
aria-controls="searchresults-outer" aria-describedby="searchresults-header">
</form>
<div id="searchresults-outer" class="searchresults-outer hidden">
<div id="searchresults-header" class="searchresults-header"></div>
<ul id="searchresults">
</ul>
</div>
</div>
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
<script>
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
Array.from(document.querySelectorAll('#sidebar a')).forEach(function (link) {
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
});
</script>
<div id="content" class="content">
<main>
<script>
let appContainer = document.currentScript && document.currentScript.parentElement;
window.typstBookJsLoaded.then(() => {
window.typstBookRenderHtmlPage("/S2/ExPhyII/VL/ExIIVL1", appContainer);
});
</script><div class="typst-preload-content" style="display: none"><div>
<p>ExPhy II<br>Vorlesung 1<br>16.04.2025<br>Jonas Hahn</p>
<h2>Inhaltsverzeichnis</h2>
<div>Organisatorisches <span style="display: inline-block;"></span> 1</div>
<div>Behandelte Themen <span style="display: inline-block;"></span> 1</div>
<div>Literatur <span style="display: inline-block;"></span> 1</div>
<div>0. Einleitung <span style="display: inline-block;"></span> 1</div>
<div>0.1 Vektroranalysis <span style="display: inline-block;"></span> 1</div>
<div>0.2 Anfaenge der Elektrodynamik <span style="display: inline-block;"></span> 1</div>
<div>1. Elektrostatik <span style="display: inline-block;"></span> 1</div>
<div>1.1 Ladung und Coulomb Gesetz <span style="display: inline-block;"></span> 1</div>
<div>1.1.1 Zusammenfassung historischer Beobachtungen <span style="display: inline-block;"></span> 1</div>
<h2>Organisatorisches</h2>
<h3>Behandelte Themen</h3>
<ol>
<li value="0">Einleitung 1VL</li>
<li>Elektrostatik (ohne zeitliche Veraenderung) 5VL</li>
<li>Elektrischer Strom 3VL</li>
<li>Statische Magnetfelder 3VL</li>
<li>Zeitlich veraendlerliche Felder 4VL</li>
<li>Maxwell Gleichungen 1VL</li>
<li>Elektrodynamische Schwingungen und Wechselstrom 3VL</li>
<li>Elektromagnetische Wellen 3VL</li>
<li>Kurzer Einblick in Relativitaet 2VL</li>
</ol>
<h3>Literatur</h3>
<ul>
<li>Demtroeder, Experimentalphysik II</li>
<li>Fuer mathematische Grundlagen: Elektrodynamik - Eine Einfuehrung, Griffin</li>
</ul>
<h2>0. Einleitung</h2>
<ul>
<li>ExPhy II behandelt die Grundlagen der Statik und Dynamik von elektrischen Ladungen, Magnetfeldern und elektromagnetischen Wellen</li>
<li>
<p>Ein Grossteil der Elektrostatik &amp; Elektrodynamik kann in den sogenannten <strong>Maxwell-Gleichungen</strong> zusammengefasst werden</p>
<div></div>
<p>wobei <span style="display: inline-block;"></span>. Hier steht S fuer Statik und D fuer Dynamik.</p>
<p>Zusaetlich wird die <strong>Lorentzkraft</strong></p>
<p>dafuer genutzt.</p>
</li>
</ul>
<p>In dieser Vorlesung naehern wir und dem Verstaendnis dieser Gleichungen langsam.</p>
<ul>
<li>Maxwell Gleichungen Gl. 1 sind die grundlegenden Axiome der Elektrodynamik</li>
<li>Im statischen Fall (<span style="display: inline-block;"></span> aendern sich nicht mit der Zeit) entkoppeln die Gleichungen die <span style="display: inline-block;"></span> und <span style="display: inline-block;"></span></li>
<li>Elektrizitaet und Magnetismus sind getrennt solagne Stroeme und Ladungen statisch sind</li>
</ul>
<p>Unterschied zwischen ruhenden und bewegten Ladungen wird anhand Lorentzkraft Gl. 1 klar.</p>
<p>Rechte-Handregel:<br><span style="display: inline-block;"></span><br><span style="display: inline-block;"></span><br><span style="display: inline-block;"></span></p>
<h3>0.1 Vektroranalysis</h3>
<p><span style="display: inline-block;"></span> sind Vektorfelder, d.h an jedem Raumpunkt ist ein Vektor spezifiziert.<br>Divergenz eines Vektorfeldes ist Skalarprodukt vom Nabla-Operator <span style="display: inline-block;"></span> mit dem Vektorfeld</p>
<p>diese trifft eine Aussage ueber das "Auseinanderdriften" oder die Quellstaerke an einem Punkt.</p>
<p>Die Rotation ist als Vektorprodukt des Nabla-Operators mit einem Vektorfeld definiert</p>
<p>sie stellt den Grad der "Verwirberlungen oder die Wirbelstaerke eines Feldes am einem Punkt dar.</p>
<p>Der Gradient einer skalaren Funktion <span style="display: inline-block;"></span> besteht aus den drei partiellen Ableitungen</p>
<p>Weitere Deteils und Anwendnungen auf <span style="display: inline-block;"></span> &amp; <span style="display: inline-block;"></span> Vektorfelder in Uebung &amp; Vorlesung.</p>
<h3>0.2 Anfaenge der Elektrodynamik</h3>
<p>Geschicktlich fielen drei Phaenomene der Elektrodynamik auf, ohne dass Zusammenhaenge dazwischen erahnt wurden.</p>
<ol>
<li>Licht</li>
<li>Elektrizitaet</li>
<li>Magnetismus</li>
</ol>
<p>Diese wurden von verschiedenen Personen zu verschiedenen Zeiten entdeckt.</p>
<ul>
<li>Erste Gesetzmaessigketen des Lichts (Licht nimmt immer den kuerzesten Weg): Heron v. Alexandrea (ca. 60 n.Chr.)</li>
<li>Elektrizitaet: Thales von Milet (600 n. Chr.), geriebener Bernstein (griechisch: "electron") zieht leichte Koerper an</li>
<li>Magnetismus: Petrus Peregrinu (1269) fuehrte erste Beobachtungen zu magnetischen Feldlinien durch</li>
<li>Gilbert (1544-1605) erkannte wichtigen Unterschied zu <span style="display: inline-block;"></span> &amp; <span style="display: inline-block;"></span> Feldern: Magnete rufen Drehwirkung hervor, elektrische Kraft aeussert sich als Anziehungs-Kraft</li>
</ul>
<p>Fuer weitere geschichtliche Entwicklung z.B. siehe Geschichte der Elektrizitaet, H. Bortias</p>
<h2>1. Elektrostatik</h2>
<h3>1.1 Ladung und Coulomb Gesetz</h3>
<h4>1.1.1 Zusammenfassung historischer Beobachtungen</h4>
<ol>
<li>Es existieren zwei verschiedene Ladungen (+,-), diese koennen durch ihre kraftwirkung aufeinander und Ablenkung in elektischen Feldern unterschieden werden</li>
<li>Ladungen gleichen Vorzeichens stossen sich ab. Ladungen mit unterschiedlichen Vorzeichen ziehen sich an (<strong>Unterschied</strong> zur immer attraktiven Gravitation)</li>
<li>Ladungen sind an Teilchen gebunden, insbesondere Elektronen (<span style="display: inline-block;"></span>) und Protonen (<span style="display: inline-block;"></span>) dessen Ladung sich nicht mit der Geschwindigkeit aendert</li>
<li>Ladung der Elektronen und Protonen stellt die kleinste frei beobachtete Ladungen dar (Ausnahmen stellen kurzlebige Teilchen dar)</li>
</ol>
</div>
</div>
</main>
<nav class="nav-wrapper" aria-label="Page navigation">
<!-- Mobile navigation buttons -->
<div style="clear: both"></div>
</nav>
</div>
</div>
<nav class="nav-wide-wrapper" aria-label="Page navigation">
</nav>
</div>
<script src="/internal/elasticlunr.min.js"></script>
<script src="/internal/mark.min.js"></script>
<script src="/internal/searcher.js"></script>
<script src="/internal/svg_utils.js"></script>
<script src="/theme/index.js"></script>
</div>
</body>
</html>