Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
N Body Simulation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
This server has been upgraded to GitLab release
17.10
.
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Armin Damon Riess
N Body Simulation
Commits
850f1277
Commit
850f1277
authored
2 years ago
by
Armin Damon Riess
Browse files
Options
Downloads
Patches
Plain Diff
now with correct a for Hernquist profile
parent
40d115c7
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
plots/densityprofile.png
+0
-0
0 additions, 0 deletions
plots/densityprofile.png
plots/densityprofile.py
+12
-12
12 additions, 12 deletions
plots/densityprofile.py
with
12 additions
and
12 deletions
plots/densityprofile.png
+
0
−
0
View replaced file @
40d115c7
View file @
850f1277
69.8 KiB
|
W:
|
H:
69.1 KiB
|
W:
|
H:
2-up
Swipe
Onion skin
This diff is collapsed.
Click to expand it.
plots/densityprofile.py
+
12
−
12
View file @
850f1277
...
...
@@ -13,7 +13,17 @@ M = np.sum(m)
print
(
"
Number of particles:
"
,
len
(
m
))
rmax
=
32
halfmassradius
=
0
tmpmass
=
0
rsorted
=
np
.
sort
(
r
)
for
i
in
range
(
len
(
rsorted
)):
tmpmass
+=
m
[
i
]
if
tmpmass
>
M
/
2
:
halfmassradius
=
rsorted
[
i
]
break
print
(
"
Half mass radius:
"
,
halfmassradius
)
rmax
=
128
dr
=
0.075
nbins
=
int
(
rmax
/
dr
)
...
...
@@ -23,7 +33,7 @@ for i in range(len(hist)):
volume
=
4
/
3
*
np
.
pi
*
(
bins
[
i
+
1
]
**
3
-
bins
[
i
]
**
3
)
hist
[
i
]
/=
volume
a
=
np
.
diff
(
bins
)
a
=
halfmassradius
/
(
1
+
np
.
sqrt
(
2
)
)
rhoHernquist
=
M
/
(
2
*
np
.
pi
)
*
a
/
(
bins
[
1
:]
-
dr
/
2
)
/
(
bins
[
1
:]
-
dr
/
2
+
a
)
**
3
print
(
"
Number of bins:
"
,
nbins
)
...
...
@@ -33,16 +43,6 @@ print("Bin size:",dr)
# if hist[i] == 0:
# hist[i] = np.nan
halfmassradius
=
0
tmpmass
=
0
rsorted
=
np
.
sort
(
r
)
for
i
in
range
(
len
(
rsorted
)):
tmpmass
+=
m
[
i
]
if
tmpmass
>
M
/
2
:
halfmassradius
=
rsorted
[
i
]
break
print
(
"
Half mass radius:
"
,
halfmassradius
)
# plot poissonian error bars
plt
.
errorbar
(
bins
[
1
:],
rhoHernquist
,
yerr
=
np
.
sqrt
(
rhoHernquist
),
color
=
'
grey
'
,
fmt
=
'
.
'
,
label
=
'
Hernquist with Poisson error
'
,
markersize
=
0
)
# plot Hernquist profile
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment