Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
/Manifest*.toml
/docs/Manifest*.toml
/docs/build/
/examples/.ipynb_checkpoints*
33 changes: 31 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,39 @@
name = "SciBmad"
uuid = "7bf6e793-a2ec-421f-8700-d1465381ee80"
authors = ["mattsignorelli <[email protected]> and contributors"]
version = "1.0.0-DEV"
version = "0.1.0"

[deps]
AtomicAndPhysicalConstants = "5c0d271c-5419-4163-b387-496237733d8b"
BeamTracking = "8ef5c10a-4ca3-437f-8af5-b84d8af36df0"
Beamlines = "5bb90b03-0719-46b8-8ce4-1ef3afd3cd4b"
DifferentiationInterface = "a0c0ee7d-e4b9-4e03-894e-1c5f64a51d63"
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
GTPSA = "b27dd330-f138-47c5-815b-40db9dd9b6e8"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
NonlinearNormalForm = "05e19671-dec8-4f15-984f-54eaa6ca64be"
NonlinearSolve = "8913a72c-1f9b-4ce2-8d82-65094dcecaec"
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
TypedTables = "9d95f2ec-7b3d-5a63-8d20-e2491e220bb9"

[compat]
julia = "1.9"
AtomicAndPhysicalConstants = "0.7.1"
BeamTracking = "0.3.0"
Beamlines = "0.6.1"
DifferentiationInterface = "0.7.4"
ForwardDiff = "0.10,1"
GTPSA = "1.4.7"
NonlinearNormalForm = "0.3.2"
NonlinearSolve = "4.10.0"
PrecompileTools = "1.2.1"
RecursiveArrayTools = "3.36.0"
Reexport = "1.2.2"
StaticArrays = "1.9.14"
TypedTables = "1.4.6"
julia = "1.10"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
206 changes: 39 additions & 167 deletions README.md

Large diffs are not rendered by default.

798 changes: 798 additions & 0 deletions examples/.ipynb_checkpoints/julia-checkpoint.ipynb

Large diffs are not rendered by default.

661 changes: 661 additions & 0 deletions examples/.ipynb_checkpoints/python-checkpoint.ipynb

Large diffs are not rendered by default.

798 changes: 798 additions & 0 deletions examples/julia.ipynb

Large diffs are not rendered by default.

661 changes: 661 additions & 0 deletions examples/python.ipynb

Large diffs are not rendered by default.

5,543 changes: 5,543 additions & 0 deletions lattices/esr.jl

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions src/Constants.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module Constants
using AtomicAndPhysicalConstants
@APCdef tupleflag=false
isnullspecies(species_ref::Species) = getfield(species_ref, :kind) == Kind.NULL
end
Loading
Loading