Shamrock 2025.10.0
Astrophysical Code
Loading...
Searching...
No Matches
ColumnParticleCount.py
1from .StandardPlotHelper import StandardPlotHelper
2
3
4def ColumnParticleCount(model, ext_r, nx, ny, ex, ey, center, analysis_folder, analysis_prefix):
5 def compute_particle_count(helper):
6 return helper.column_integ_render("inv_hpart", "f64")
7
8 return StandardPlotHelper(
9 model,
10 ext_r,
11 nx,
12 ny,
13 ex,
14 ey,
15 center,
16 analysis_folder,
17 analysis_prefix,
18 compute_function=compute_particle_count,
19 )