File tree 2 files changed +9
-9
lines changed
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.
37
37
## Example Application
38
38
39
39
We'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
41
41
exponential droplet size distribution and configure the model to use the Long
42
42
(1974) collision kernel. This results in a droplet autoconversion simulation
43
43
where a secondary raindrop mode "appears" out of nowhere after about 15 minutes
44
44
in the simulation.
45
45
46
46
The 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 :
50
50
51
51
![ BR74 reproduction] ( /examples/br74_example.png )
52
52
Original file line number Diff line number Diff line change 1
1
module Coad
2
2
3
- # #Integrator1D,
4
-
5
- # set!#, run!
6
-
7
3
using CPUTime
8
4
using Printf
9
5
@@ -14,6 +10,11 @@ A super type for simulating collision/coalescence problems.
14
10
"""
15
11
abstract type AbstractCoadModel end
16
12
13
+ """
14
+ AbstractSizeDist{FT}
15
+
16
+ A super type for encapsulating size distribution calculations.
17
+ """
17
18
abstract type AbstractSizeDist{FT} end
18
19
19
20
include (" util.jl" )
26
27
27
28
mass_from_r, r_from_mass
28
29
29
-
30
30
end # module
You can’t perform that action at this time.
0 commit comments