Skip to content

Commit 7262580

Browse files
committed
Incremental clean-ups
1 parent 453e7c0 commit 7262580

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,16 @@ or other process models boot-strapped in Julia.
3737
## Example Application
3838

3939
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
4141
exponential droplet size distribution and configure the model to use the Long
4242
(1974) collision kernel. This results in a droplet autoconversion simulation
4343
where a secondary raindrop mode "appears" out of nowhere after about 15 minutes
4444
in the simulation.
4545

4646
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:
5050

5151
![BR74 reproduction](/examples/br74_example.png)
5252

src/Coad.jl

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
module Coad
22

3-
# #Integrator1D,
4-
5-
# set!#, run!
6-
73
using CPUTime
84
using Printf
95

@@ -14,6 +10,11 @@ A super type for simulating collision/coalescence problems.
1410
"""
1511
abstract type AbstractCoadModel end
1612

13+
"""
14+
AbstractSizeDist{FT}
15+
16+
A super type for encapsulating size distribution calculations.
17+
"""
1718
abstract type AbstractSizeDist{FT} end
1819

1920
include("util.jl")
@@ -26,5 +27,4 @@ export
2627

2728
mass_from_r, r_from_mass
2829

29-
3030
end # module

0 commit comments

Comments
 (0)