This repository was archived by the owner on Aug 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
6,788 additions
and
0 deletions.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,118 @@ | ||
| #!/usr/bin/env python3 | ||
| import swiftest | ||
| import numpy as np | ||
| import matplotlib.pyplot as plt | ||
| from matplotlib import animation | ||
| import matplotlib.colors as mcolors | ||
|
|
||
| radscale = 50 | ||
| AU = 1.0 | ||
| xmin = 0.0 | ||
| xmax = 2.00 | ||
| ymin = 1e-4 | ||
| ymax = 1.0 | ||
|
|
||
| class AnimatedScatter(object): | ||
| """An animated scatter plot using matplotlib.animations.FuncAnimation.""" | ||
| def __init__(self, ds, param): | ||
|
|
||
| frame = 0 | ||
| nframes = ds['time'].size | ||
| self.ds = ds | ||
| self.param = param | ||
| self.ds['radmarker'] = self.ds['Radius'].fillna(0) | ||
| self.ds['radmarker'] = self.ds['radmarker'] / self.ds['radmarker'].max() * radscale | ||
|
|
||
| self.clist = {'Initial conditions' : 'xkcd:faded blue', | ||
| 'Disruption' : 'xkcd:marigold', | ||
| 'Supercatastrophic' : 'xkcd:shocking pink', | ||
| 'Hit and run fragment' : 'xkcd:baby poop green'} | ||
|
|
||
| self.stream = self.data_stream(frame) | ||
| # Setup the figure and axes... | ||
| fig = plt.figure(figsize=(8,4.5), dpi=300) | ||
| plt.tight_layout(pad=0) | ||
| # set up the figure | ||
| self.ax = plt.Axes(fig, [0.1, 0.15, 0.8, 0.75]) | ||
| self.ax.set_xlim(xmin, xmax) | ||
| self.ax.set_ylim(ymin, ymax) | ||
| fig.add_axes(self.ax) | ||
| self.ani = animation.FuncAnimation(fig, self.update, interval=1, frames=nframes, init_func=self.setup_plot, blit=True) | ||
| self.ani.save('aescatter.mp4', fps=30, dpi=300, extra_args=['-vcodec', 'libx264']) | ||
| print('Finished writing aescattter.mp4') | ||
|
|
||
| def scatters(self, pl, radmarker, origin): | ||
| scat = [] | ||
| for key, value in self.clist.items(): | ||
| idx = origin == value | ||
| s = self.ax.scatter(pl[idx, 0], pl[idx, 1], marker='o', s=radmarker[idx], c=value, alpha=0.75, label=key) | ||
| scat.append(s) | ||
| return scat | ||
|
|
||
| def setup_plot(self): | ||
| # First frame | ||
| """Initial drawing of the scatter plot.""" | ||
| t, name, GMass, Radius, npl, pl, radmarker, origin = next(self.data_stream(0)) | ||
|
|
||
| # set up the figure | ||
| self.ax.margins(x=10, y=1) | ||
| self.ax.set_xlabel("Semi Major Axis (AU)", fontsize='16', labelpad=1) | ||
| self.ax.set_ylabel("Eccentricity", fontsize='16', labelpad=1) | ||
| self.ax.set_yscale("log") | ||
|
|
||
| self.title = self.ax.text(0.50, 1.05, "", bbox={'facecolor': 'w', 'alpha': 0.5, 'pad': 5}, transform=self.ax.transAxes, | ||
| ha="center") | ||
|
|
||
| self.title.set_text(f"Time = ${t*1e-6:6.3f}$ My with ${npl:4.0f}$ particles") | ||
| slist = self.scatters(pl, radmarker, origin) | ||
| self.s0 = slist[0] | ||
| self.s1 = slist[1] | ||
| self.s2 = slist[2] | ||
| self.s3 = slist[3] | ||
| self.ax.legend(loc='upper right') | ||
| return self.s0, self.s1, self.s2, self.s3, self.title | ||
|
|
||
| def data_stream(self, frame=0): | ||
| while True: | ||
| d = self.ds.isel(time=frame) | ||
| d = d.where(np.invert(np.isnan(d['a'])), drop=True) | ||
| Radius = d['radmarker'].values | ||
| GMass = d['GMass'].values | ||
| a = d['a'].values / AU | ||
| e = d['e'].values | ||
| name = d['id'].values | ||
| npl = d.id.count().values | ||
| radmarker = d['radmarker'] | ||
| origin = d['origin_type'] | ||
|
|
||
| t = self.ds.coords['time'].values[frame] | ||
|
|
||
| frame += 1 | ||
| yield t, name, GMass, Radius, npl, np.c_[a, e], radmarker, origin | ||
|
|
||
| def update(self,frame): | ||
| """Update the scatter plot.""" | ||
| t, name, GMass, Radius, npl, pl, radmarker, origin = next(self.data_stream(frame)) | ||
|
|
||
| self.title.set_text(f"Time = ${t*1e-6:6.3f}$ My with ${npl:4.0f}$ particles") | ||
|
|
||
| # We need to return the updated artist for FuncAnimation to draw.. | ||
| # Note that it expects a sequence of artists, thus the trailing comma. | ||
| s = [self.s0, self.s1, self.s2, self.s3] | ||
| for i, (key, value) in enumerate(self.clist.items()): | ||
| idx = origin == key | ||
| s[i].set_sizes(radmarker[idx]) | ||
| s[i].set_offsets(pl[idx,:]) | ||
| s[i].set_facecolor(value) | ||
|
|
||
| self.s0 = s[0] | ||
| self.s1 = s[1] | ||
| self.s2 = s[2] | ||
| self.s3 = s[3] | ||
| return self.s0, self.s1, self.s2, self.s3, self.title, | ||
|
|
||
| sim = swiftest.Simulation(param_file="param.in") | ||
| sim.bin2xr() | ||
| print('Making animation') | ||
| anim = AnimatedScatter(sim.ds,sim.param) | ||
| print('Animation finished') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| ! | ||
| ! Parameter file for Chambers 2013 in units of Msun, AU, year | ||
| ! | ||
| T0 0.0e0 | ||
| TSTOP 1e8 ! simulation length in years | ||
| DT 0.016 ! stepsize in years | ||
| CB_IN sun_MsunAUYR.in | ||
| PL_IN pl_clement_2018.in | ||
| TP_IN tp.in | ||
| IN_TYPE ASCII | ||
| ISTEP_OUT 625 ! output cadence | ||
| ISTEP_DUMP 625 ! system dump cadence | ||
| BIN_OUT bin.dat | ||
| PARTICLE_OUT particle.dat | ||
| OUT_TYPE REAL8 ! double precision real output | ||
| OUT_FORM EL ! osculating element output | ||
| OUT_STAT REPLACE | ||
| CHK_CLOSE yes ! check for planetary close encounters | ||
| CHK_RMAX 100000.0 ! discard outside of | ||
| EXTRA_FORCE no ! no extra user-defined forces | ||
| BIG_DISCARD no ! output all planets if anything discarded | ||
| RHILL_PRESENT yes ! Hill's sphere radii in input file | ||
| MU2KG 1.98847e30 ! (M_sun-> kg) | ||
| DU2M 1.495979e11 ! distance unit to meters (AU --> m) | ||
| TU2S 3.15569259747e7 ! time unit to seconds (years --> seconds) | ||
| GMTINY 1e-10 | ||
| ENERGY yes | ||
| ROTATION yes | ||
| FRAGMENTATION yes | ||
| DISCARD_OUT discard.out | ||
| SEED 8 12261555 871132 92734722 21132443 36344777 4334443 219291656 3848566 |
Oops, something went wrong.