Granular.jl

Julia package for granular dynamics simulation
git clone git://src.adamsgaard.dk/Granular.jl
Log | Files | Refs | README | LICENSE

commit b891256168049fe1cea68f7e008c45b5a11d7b23
parent 2f2716c0592b904d8af0f66c2b8b389b3d276f46
Author: Anders Damsgaard <andersd@riseup.net>
Date:   Thu,  9 Nov 2017 07:24:41 -0600

change minor typos in documentation

Diffstat:
Mdocs/src/man/getting_started.md | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/src/man/getting_started.md b/docs/src/man/getting_started.md @@ -285,7 +285,7 @@ As in the previous example, we start by creating a fluid grid: ```julia-repl julia> import Granular -julia> sim = Granular.createSimulation(id="sedimentation.jl") +julia> sim = Granular.createSimulation(id="sedimentation") ``` ### Creating a pseudo-random grain packing @@ -302,7 +302,7 @@ julia> Granular.regularPacking!(sim, [7, 25], 0.02, 0.2) Since we haven't explicitly set the grain sizes for this example, we can inspect the values by plotting a histogram of sizes (only works if the `PyPlot` -package is installed with `Pkg.add("PyPlot")`: +package is installed with `Pkg.add("PyPlot")`): ```julia-repl julia> Granular.plotGrainSizeDistribution(sim)