eaglelandsonce commited on
Commit
0d7438a
·
verified ·
1 Parent(s): 1f813be

Create PHY_613_Electromagnetic_Theory_II.py

Browse files
pages/PHY_613_Electromagnetic_Theory_II.py ADDED
@@ -0,0 +1,220 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ # Set the page title
4
+ st.title("PHY 613: Electromagnetic Theory II")
5
+
6
+ # Course Details
7
+ st.markdown("""
8
+ ## Course Details
9
+ - **Course Title**: Electromagnetic Theory II
10
+ - **Credits**: 3
11
+ - **Prerequisites**: PHY 611
12
+ - **Instructor**: [Instructor Name]
13
+ - **Office Hours**: [Office Hours]
14
+
15
+ ## Course Description
16
+ This course builds upon Electromagnetic Theory I and focuses on advanced topics in electromagnetism, including electromagnetic wave propagation, optical phenomena, radiation theory, and the covariant formulation of Maxwell’s equations.
17
+
18
+ ## Course Objectives
19
+ By the end of this course, students will:
20
+ - Be proficient in the theory of electromagnetic waves.
21
+ - Understand the interaction of electromagnetic radiation with matter.
22
+ - Apply the covariant formulation of Maxwell’s equations to physical problems.
23
+
24
+ ---
25
+ """)
26
+
27
+ # Weekly Outline with Problems
28
+
29
+ # Week 1: Review of Maxwell’s Equations
30
+ with st.expander("**Week 1: Review of Maxwell’s Equations**"):
31
+ st.markdown("""
32
+ ### Topics Covered
33
+ - Maxwell’s Equations: Review of integral and differential forms of Maxwell’s equations in free space and in materials.
34
+ - Energy and Momentum Conservation: Derivation and applications of the Poynting theorem.
35
+ - Boundary Conditions: Conditions on electric and magnetic fields at material interfaces.
36
+
37
+ ### Problems
38
+ 1. Derive Maxwell’s equations in a vacuum from the differential forms of Gauss’s law and Ampère’s law with displacement current.
39
+ 2. Solve for the electric and magnetic fields in a region with a time-varying current distribution.
40
+ 3. Calculate the energy stored in the electric field of a spherical charge distribution.
41
+ 4. Derive the Poynting vector from Maxwell’s equations and compute the energy flux through a closed surface.
42
+ 5. Apply Maxwell’s equations to solve for the fields around a current loop in free space.
43
+ 6. Solve for the boundary conditions of the electric and magnetic fields at the interface between two dielectrics.
44
+ """)
45
+
46
+ # Week 2-3: Electromagnetic Wave Propagation
47
+ with st.expander("**Week 2-3: Electromagnetic Wave Propagation: Polarization, Dispersion**"):
48
+ st.markdown("""
49
+ ### Topics Covered
50
+ - Wave Equation: Derivation of the electromagnetic wave equation from Maxwell’s equations.
51
+ - Polarization: Linear, circular, and elliptical polarization; manipulation of polarized waves.
52
+ - Dispersion: Understanding phase velocity, group velocity, and wave dispersion in different media.
53
+
54
+ ### Problems
55
+ 7. Derive the wave equation for an electromagnetic field in a dielectric medium.
56
+ 8. Solve for the electric and magnetic fields of a plane wave propagating through free space.
57
+ 9. Analyze the polarization state of an electromagnetic wave passing through a birefringent medium.
58
+ 10. Derive the dispersion relation for electromagnetic waves in a plasma.
59
+ 11. Calculate the group and phase velocities for an electromagnetic wave propagating in a dispersive medium.
60
+ 12. Solve for the reflection and transmission coefficients of an electromagnetic wave incident on a dielectric boundary.
61
+ 13. Calculate the power carried by an electromagnetic wave in a vacuum using the Poynting vector.
62
+ 14. Determine the behavior of circularly polarized light when passing through an optically active medium.
63
+ 15. Analyze the propagation of an electromagnetic wave in a conductor and calculate the skin depth.
64
+ 16. Solve for the electromagnetic fields of a plane wave propagating through a conducting medium.
65
+ """)
66
+
67
+ # Week 4-5: Waveguides and Resonant Cavities
68
+ with st.expander("**Week 4-5: Waveguides and Resonant Cavities**"):
69
+ st.markdown("""
70
+ ### Topics Covered
71
+ - Waveguides: TE (transverse electric), TM (transverse magnetic), and TEM (transverse electromagnetic) modes in waveguides.
72
+ - Resonant Cavities: Modes, eigenfrequencies, and boundary conditions in resonant cavities.
73
+ - Energy Storage and Loss: Quality factor of cavities and waveguides.
74
+
75
+ ### Problems
76
+ 17. Derive the TE and TM modes of a rectangular waveguide and calculate the cutoff frequency.
77
+ 18. Solve for the electromagnetic fields in a cylindrical waveguide and determine the modes that propagate.
78
+ 19. Calculate the resonant frequencies for a rectangular cavity and analyze the boundary conditions.
79
+ 20. Derive the quality factor for a resonant cavity with conducting walls.
80
+ 21. Solve for the wave impedance in a rectangular waveguide operating in the TE mode.
81
+ 22. Calculate the power transmitted through a waveguide as a function of the mode and frequency.
82
+ 23. Solve for the fields inside a resonant cavity with mixed boundary conditions.
83
+ 24. Analyze the energy stored in a resonant cavity and calculate the energy loss due to imperfect conductors.
84
+ 25. Derive the expression for the cutoff wavelength in a rectangular waveguide.
85
+ 26. Compute the electromagnetic field distribution inside a cavity operating in the TM mode.
86
+ """)
87
+
88
+ # Week 6: Optical Phenomena
89
+ with st.expander("**Week 6: Optical Phenomena: Interference, Diffraction, and Polarization**"):
90
+ st.markdown("""
91
+ ### Topics Covered
92
+ - Interference: Understanding interference of light waves; examples include Young’s double-slit experiment.
93
+ - Diffraction: Fraunhofer and Fresnel diffraction; diffraction patterns from apertures and obstacles.
94
+ - Polarization: The use of polarizers, birefringence, and optical rotation.
95
+
96
+ ### Problems
97
+ 27. Derive the interference pattern for a double-slit experiment with coherent light sources.
98
+ 28. Solve for the diffraction pattern of light passing through a single slit using Fraunhofer diffraction.
99
+ 29. Calculate the intensity of light after passing through a polarizer and an analyzer at different angles.
100
+ 30. Analyze the interference pattern formed by a thin film and derive the conditions for constructive and destructive interference.
101
+ 31. Solve for the diffraction pattern produced by a circular aperture.
102
+ 32. Calculate the phase shift introduced by a birefringent material and determine the resulting polarization state.
103
+ 33. Analyze the diffraction pattern for a diffraction grating and compute the angles of diffraction for different orders.
104
+ 34. Solve for the transmission and reflection of polarized light through a series of polarizers at various angles.
105
+ """)
106
+
107
+ # Week 7-8: Electromagnetic Radiation
108
+ with st.expander("**Week 7-8: Electromagnetic Radiation: Retarded Potentials, Lienard-Wiechert Potentials**"):
109
+ st.markdown("""
110
+ ### Topics Covered
111
+ - Retarded Potentials: Deriving and understanding scalar and vector potentials in time-dependent situations.
112
+ - Lienard-Wiechert Potentials: Potentials and fields from moving charges, including radiation.
113
+ - Radiation from Accelerating Charges: Dipole radiation, quadrupole radiation, and radiation patterns.
114
+
115
+ ### Problems
116
+ 35. Derive the retarded scalar and vector potentials for a moving point charge.
117
+ 36. Compute the Lienard-Wiechert potentials for a uniformly moving charge and derive the corresponding electric and magnetic fields.
118
+ 37. Solve for the radiation field produced by a harmonically oscillating dipole.
119
+ 38. Calculate the total power radiated by a point charge undergoing uniform acceleration.
120
+ 39. Derive the angular distribution of the radiation emitted by a dipole antenna.
121
+ 40. Compute the radiation intensity of a dipole antenna as a function of distance and angle.
122
+ 41. Derive the electric and magnetic fields of a moving point charge using the Lienard-Wiechert potentials.
123
+ 42. Analyze the radiation emitted by a charge moving in a circular orbit and derive the synchrotron radiation.
124
+ 43. Calculate the electric field of a moving dipole at a point far from the source.
125
+ 44. Derive the fields of a charge moving with uniform velocity in the near and far zones.
126
+ """)
127
+
128
+ # Week 9: Radiation from Moving Charges
129
+ with st.expander("**Week 9: Radiation from Moving Charges**"):
130
+ st.markdown("""
131
+ ### Topics Covered
132
+ - Power radiated by accelerating charges: Larmor’s formula.
133
+ - Angular distribution of radiation.
134
+ - Synchrotron radiation and bremsstrahlung.
135
+
136
+ ### Problems
137
+ 45. Derive Larmor’s formula for the total power radiated by a non-relativistic accelerating charge.
138
+ 46. Calculate the angular distribution of radiation from an accelerating charge and compare it to the dipole radiation pattern.
139
+ 47. Compute the radiation emitted by a charged particle undergoing circular motion (synchrotron radiation).
140
+ 48. Analyze bremsstrahlung radiation emitted when a high-energy electron is decelerated by a nucleus.
141
+ 49. Solve for the energy spectrum of synchrotron radiation from relativistic particles in a magnetic field.
142
+ 50. Derive the expression for the radiation reaction force experienced by an accelerating charge.
143
+ 51. Calculate the radiation emitted by a relativistic electron spiraling in a magnetic field.
144
+ 52. Analyze the radiation fields produced by a charge oscillating in a harmonic potential.
145
+
146
+ ### Topics Covered
147
+ - Lorentz Transformations: Understanding four-vectors and Lorentz transformations in special relativity.
148
+ - Electromagnetic Field Tensor: Covariant formulation of Maxwell’s equations using the field tensor.
149
+ - Relativistic Electromagnetic Fields: Transformations of electric and magnetic fields under Lorentz transformations.
150
+
151
+ ### Problems
152
+ 53. Derive the Lorentz transformations for the electric and magnetic fields between two inertial frames.
153
+ 54. Solve for the electromagnetic field tensor and show how Maxwell’s equations are expressed in covariant form.
154
+ 55. Calculate the electric and magnetic fields of a moving charge using the relativistic Lienard-Wiechert potentials.
155
+ 56. Derive the four-potential for a moving point charge and show how it transforms under Lorentz transformations.
156
+ 57. Solve for the transformation of the electromagnetic wave equation under Lorentz boosts.
157
+ 58. Derive the energy-momentum tensor for the electromagnetic field and show how it leads to conservation laws.
158
+ 59. Analyze the relativistic Doppler effect for an electromagnetic wave moving towards and away from a source.
159
+ 60. Calculate the relativistic field transformation for a charged particle moving at near-light speed.
160
+ """)
161
+
162
+ # Week 12-13: Applications of Electromagnetic Theory to Modern Physics
163
+ with st.expander("**Week 12-13: Applications of Electromagnetic Theory to Modern Physics**"):
164
+ st.markdown("""
165
+ ### Topics Covered
166
+ - Electromagnetic Fields in Astrophysics: Applications to star formation, pulsars, and black holes.
167
+ - Quantum Electrodynamics (QED): Basic principles and interaction of photons and electrons.
168
+ - Electromagnetic Theory in Plasma Physics: Behavior of charged particles in a plasma; Debye shielding and plasma oscillations.
169
+
170
+ ### Problems
171
+ 61. Solve for the electromagnetic field around a neutron star using Maxwell’s equations and relativistic corrections.
172
+ 62. Analyze the interaction between a photon and an electron in a basic quantum electrodynamics (QED) process, such as Compton scattering.
173
+ 63. Calculate the behavior of electromagnetic waves in a plasma and derive the dispersion relation.
174
+ 64. Solve for the radiation emitted by a rapidly spinning pulsar using relativistic electromagnetic theory.
175
+ 65. Analyze the interaction between the cosmic microwave background radiation and charged particles in space.
176
+ 66. Derive the electromagnetic field generated by a rotating black hole using the Kerr metric.
177
+ 67. Solve for the energy lost to radiation in the early universe and its effects on the cosmic expansion.
178
+ 68. Compute the fields produced by a magnetar and analyze the effects of extreme magnetic fields on the surrounding plasma.
179
+ 69. Analyze the behavior of electromagnetic fields in a high-energy astrophysical plasma.
180
+ 70. Solve for the electromagnetic fields of a charged particle moving in the strong gravitational field of a black hole.
181
+ """)
182
+
183
+ # Week 14: Advanced Topics in Plasma Physics and Magnetohydrodynamics
184
+ with st.expander("**Week 14: Advanced Topics: Plasma Physics and Magnetohydrodynamics (MHD)**"):
185
+ st.markdown("""
186
+ ### Topics Covered
187
+ - Plasma Physics: Understanding Debye shielding, plasma oscillations, and wave propagation in plasmas.
188
+ - Magnetohydrodynamics (MHD): Application of MHD equations to plasma flows and astrophysical systems.
189
+ - Alfven Waves: Study of MHD waves and their role in plasma dynamics.
190
+
191
+ ### Problems
192
+ 71. Derive the dispersion relation for plasma oscillations in a cold plasma and interpret its physical significance.
193
+ 72. Solve for the Debye length in a plasma and analyze its implications for electrostatic shielding.
194
+ 73. Compute the Alfven wave velocity in a magnetized plasma and analyze its behavior in an MHD system.
195
+ 74. Derive the MHD equations for a plasma and solve for the magnetic pressure and tension forces.
196
+ 75. Analyze the stability of an MHD pinch and solve for the conditions for stability.
197
+ 76. Solve for the energy density and flux of Alfven waves in a conducting plasma.
198
+ 77. Derive the equations governing the propagation of electromagnetic waves in a hot plasma.
199
+ 78. Solve for the effects of magnetic reconnection on the stability of an astrophysical plasma.
200
+ """)
201
+
202
+ # Week 15: Review and Final Exam Preparation
203
+ with st.expander("**Week 15: Review and Final Exam Preparation**"):
204
+ st.markdown("""
205
+ ### Topics Covered
206
+ - Comprehensive Review: Review of electromagnetic wave theory, radiation, and covariant formulation of Maxwell’s equations.
207
+ - Problem-Solving Sessions: Focus on solving complex problems that integrate multiple course concepts.
208
+ - Final Exam Preparation: Students will receive guidance on tackling exam problems, with a focus on key concepts and application-based questions.
209
+
210
+ ### Problems
211
+ 79. Solve for the propagation of an electromagnetic wave in a dispersive medium and compare phase and group velocities.
212
+ 80. Analyze the radiation pattern and power emitted by a relativistic electron spiraling in a magnetic field.
213
+ """)
214
+
215
+ # Textbooks Section
216
+ st.markdown("""
217
+ ## Textbooks
218
+ - **Classical Electrodynamics** by John David Jackson
219
+ - **Introduction to Electrodynamics** by David J. Griffiths
220
+ """)