-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathElectronDynamicsModels.jl
More file actions
36 lines (31 loc) · 1005 Bytes
/
ElectronDynamicsModels.jl
File metadata and controls
36 lines (31 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
module ElectronDynamicsModels
using ModelingToolkit
using ModelingToolkitBase: AbstractSystem, SymbolicT, build_explicit_observed_function, get_systems
using SymbolicIndexingInterface: getname, setsym_oop
using PhysicalConstants, Unitful, UnitfulAtomic
using PhysicalConstants.CODATA2018: c_0, e, m_e, ε_0
using LinearAlgebra
using Symbolics
using HypergeometricFunctions: HypergeometricFunctions, _₁F₁, pochhammer
using StaticArrays
m_dot(x, y) = x[1] * y[1] - x[2] * y[2] - x[3] * y[3] - x[4] * y[4]
export GaussLaser, LaguerreGaussLaser
export ReferenceFrame, ProperFrame, LabFrame,
UniformField,
PlaneWave,
ParticleDynamics,
LandauLifshitzRadiation,
AbrahamLorentzRadiation,
ChargedParticle,
ClassicalElectron,
RadiatingElectron,
LandauLifshitzElectron,
FieldEvaluator
include("base.jl")
include("dynamics.jl")
include("fields.jl")
include("radiation_reaction.jl")
include("external_fields.jl")
include("systems.jl")
include("field_evaluator.jl")
end