Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Updated a and ecc ranges to prevent loss of particles
Browse files Browse the repository at this point in the history
  • Loading branch information
anand43 committed Feb 27, 2024
1 parent 9ecbd60 commit 6deeb70
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/spherical_harmonics_cb/spherical_harmonics_cb.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
density_pl = cb_density

name_pl = ["SemiBody_01", "SemiBody_02", "SemiBody_03", "SemiBody_04", "SemiBody_05"]
a_pl = rng.uniform(150, 300, npl)
e_pl = rng.uniform(0.0, 0.2, npl)
a_pl = rng.uniform(250, 400, npl)
e_pl = rng.uniform(0.0, 0.05, npl)
inc_pl = rng.uniform(0.0, 10, npl)
capom_pl = rng.uniform(0.0, 360.0, npl)
omega_pl = rng.uniform(0.0, 360.0, npl)
Expand All @@ -74,8 +74,8 @@
ntp = 10

name_tp = ["TestParticle_01", "TestParticle_02", "TestParticle_03", "TestParticle_04", "TestParticle_05", "TestParticle_06", "TestParticle_07", "TestParticle_08", "TestParticle_09", "TestParticle_10"]
a_tp = rng.uniform(150, 300, ntp)
e_tp = rng.uniform(0.0, 0.2, ntp)
a_tp = rng.uniform(250, 400, ntp)
e_tp = rng.uniform(0.0, 0.05, ntp)
inc_tp = rng.uniform(0.0, 10, ntp)
capom_tp = rng.uniform(0.0, 360.0, ntp)
omega_tp = rng.uniform(0.0, 360.0, ntp)
Expand Down

0 comments on commit 6deeb70

Please sign in to comment.