File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -37,16 +37,16 @@ or other process models boot-strapped in Julia.
3737## Example Application
3838
3939We've included a very basic demo program reproducing Figure (3) of [ B98] [ ] in
40- the script [ ` examples/simple.jl ` ] ( ) . In this example we initialize a basic
40+ the script [ ` examples/simple.jl ` ] ( examples/simple.jl ) . In this example we initialize a basic
4141exponential droplet size distribution and configure the model to use the Long
4242(1974) collision kernel. This results in a droplet autoconversion simulation
4343where a secondary raindrop mode "appears" out of nowhere after about 15 minutes
4444in the simulation.
4545
4646The result of this simulation can be visualized (e.g. in the demo Python Jupyter
47- Notebook at [ ` examples/plot_brm_ridgeline.ipynb ` ] ( ) to produce a "ridgeline"
48- style plot showing the evolution of the multi-modal droplet population over
49- timme :
47+ Notebook at [ ` examples/plot_brm_ridgeline.ipynb ` ] ( examples/plot_brm_ridgeline.ipynb )
48+ to produce a "ridgeline" style plot showing the evolution of the multi-modal
49+ droplet population over time :
5050
5151![ BR74 reproduction] ( /examples/br74_example.png )
5252
Original file line number Diff line number Diff line change 11module Coad
22
3- # #Integrator1D,
4-
5- # set!#, run!
6-
73using CPUTime
84using Printf
95
@@ -14,6 +10,11 @@ A super type for simulating collision/coalescence problems.
1410"""
1511abstract type AbstractCoadModel end
1612
13+ """
14+ AbstractSizeDist{FT}
15+
16+ A super type for encapsulating size distribution calculations.
17+ """
1718abstract type AbstractSizeDist{FT} end
1819
1920include (" util.jl" )
2627
2728 mass_from_r, r_from_mass
2829
29-
3030end # module
You can’t perform that action at this time.
0 commit comments