Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Berger Modifications #4

Open
wants to merge 49 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
e19ac3d
testscript
Imran-SP Jun 6, 2024
895421c
skyrme_metroc
Imran-SP Jun 6, 2024
f71b049
rm_from_period
Imran-SP Jun 6, 2024
5757c15
tweaked_skyrme_struc
Imran-SP Jun 6, 2024
e3146f3
same_as_above
Imran-SP Jun 6, 2024
daabf9a
same
Imran-SP Jun 6, 2024
b5848c4
same
Imran-SP Jun 6, 2024
e905c11
metric_variation_to_metric_var
Imran-SP Jun 6, 2024
e40f35c
maybe
Imran-SP Jun 6, 2024
33f91f1
testagain
Imran-SP Jun 6, 2024
0a6471d
aah
Imran-SP Jun 6, 2024
f631b79
test
Imran-SP Jun 6, 2024
5b164ea
maybe
Imran-SP Jun 6, 2024
1c6a543
ah
Imran-SP Jun 6, 2024
2818620
hm
Imran-SP Jun 6, 2024
ddc65a4
again
Imran-SP Jun 6, 2024
337456f
propertiestest
Imran-SP Jun 6, 2024
02d25b6
testbar
Imran-SP Jun 6, 2024
e243856
testnew
Imran-SP Jun 6, 2024
f123f64
metric_var
Imran-SP Jun 6, 2024
3e63e17
e_x
Imran-SP Jun 7, 2024
8a93632
e_x_added
Imran-SP Jun 7, 2024
2209662
new_e
Imran-SP Jul 16, 2024
f36a8fd
s1
Imran-SP Jul 17, 2024
03d460b
test changes e2star
Imran-SP Jul 22, 2024
6adedb2
tests
Imran-SP Jul 22, 2024
1b8ccbf
restore
Imran-SP Jul 25, 2024
76c607e
working
Imran-SP Aug 1, 2024
bc728be
nf
Imran-SP Aug 2, 2024
7d720f8
nc
Imran-SP Aug 8, 2024
0572c94
l
Imran-SP Aug 8, 2024
f179647
Merge branch 'm2working'
Imran-SP Aug 8, 2024
fd14610
b
Imran-SP Aug 8, 2024
ab45c6e
e0
Imran-SP Aug 8, 2024
a09ef2d
fixed
Imran-SP Aug 9, 2024
fcee022
fix
Imran-SP Aug 9, 2024
44a7aa2
l
Imran-SP Aug 9, 2024
0e3cc16
Merge branch 'main' of https://github.com/Imzeep/Skyrmions3D.jl
Imran-SP Aug 9, 2024
0a5bb86
nspmass
Imran-SP Aug 11, 2024
f89ed77
Merge branch 'pmass'
Imran-SP Aug 11, 2024
16cdc36
fix
Imran-SP Aug 11, 2024
fb9c1bb
isospin
Imran-SP Aug 14, 2024
b55c09b
fix
Imran-SP Aug 29, 2024
fd1a8cd
interp
Imran-SP Sep 11, 2024
4ad287b
test
Imran-SP Sep 11, 2024
12e3cf6
axialplot
Imran-SP Sep 15, 2024
6349a2e
fix
Imran-SP Sep 15, 2024
4f362d7
irr
Imran-SP Sep 15, 2024
7f83070
line
Imran-SP Sep 15, 2024
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
Binary file modified .DS_Store
Binary file not shown.
56 changes: 56 additions & 0 deletions B1B4script
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
using Skyrmions3D
using GLMakie
GLMakie.activate!()
Makie.inline!(false)

nuc = Skyrmion([60, 60, 60], [0.2, 0.2, 0.2], mpi = 0.5, Fpi=130, ee=6.5, boundary_conditions="dirichlet")
overview(nuc)

p1(z) = z;
q1(z) = 1;
f1(r) = 4*atan(exp(-r));

make_rational_map!(nuc,p1,q1,f1)
Baryon(nuc)
Energy(nuc)
Berger_Isospin(nuc)

compute_current(nuc; label="uMOI", indices=[0,0], density = false, moment=0)



set_metric!(nuc,1)
Energy(nuc)

gradient_flow!(nuc,tolerance=0.1,checks=50, dt = 0.0004)

arrested_newton_flow!(nuc, tolerance=0.1, checks=50)

interactive_flow(nuc)


pe4(z) = z^4 + 3;
qe4(z) = z^4 + 2.0*sqrt(3.0)*im*z^3 + 3*z^2 + 2*z + 1.0;


p4(z) = z^4 + 2.0*sqrt(3.0)*im*z^2 + 1.0;
q4(z) = z^4 - 2.0*sqrt(3.0)*im*z^2 + 1.0;
f4(r) = pi*exp( -(r.^3)./12.0 )

nuc4 = Skyrmion([120, 120, 120], [0.1/1.2, 0.1/1.2, 0.1/1.2], mpi = 0.5, Fpi=167, ee=6.5, boundary_conditions="dirichlet")
overview(nuc4)

make_rational_map!(nuc4, p4, q4, f4)
Baryon(nuc4)
Energy(nuc4)

gradient_flow!(nuc4,tolerance=0.1,checks=50,dt=0.0004)

arrested_newton_flow!(nuc4, tolerance=0.1, checks=50, dt=0.01)

set_metric!(nuc4,5)

interactive_flow(nuc4)

plot_overview(nuc4)
plot_baryon_density(nuc4)
Loading