Skip to content

Commit 754ba88

Browse files
committed
update version
1 parent 9cf9c2b commit 754ba88

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "MultipleScattering"
22
uuid = "80a8ab25-5750-5d93-a6d7-4adc97cdd5fb"
33
author = ["Artur L. Gower", "Jonathan Deakin"]
4-
version = "0.1.8"
4+
version = "0.1.9"
55

66
[deps]
77
GSL = "92c85e6c-cbff-5e0c-80f7-495c94daaecd"

docs/src/manual/particles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@ plot(sim, ω; res=20,
102102

103103
## Particle internals
104104

105-
To define the scattering from a particle we use the T-matrix method. This package only exports T-matrix for circular [`Particle`](@ref) and circular [`CapsuleParticle`](@ref). To understand how to define new T-matrix read [Notes on the T-matrix](../maths/T-matrix.pdf) and see the source code of [`t_matrix`](@ref).
105+
To define the scattering from a particle we use the T-matrix method. This package only exports T-matrix for circular [`Particle`](@ref) and circular [`CapsuleParticle`](@ref). To understand how to define new T-matrix read [Notes on the T-matrix](../maths/multiplescattering.pdf) and see the source code of [`t_matrix`](@ref).

docs/src/manual/source.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ julia> plot(source, 4.0; y = 0.0, bounds = plot_domain, field_apply = abs, res =
8080
```
8181
![Plot point wave](../assets/transducer-source.png)
8282

83-
where `field_apply` is applied to the wave field at every point, the default is `field_apply = real`, and `res` is the resolution along both the $x$ and $y$ axis. Note, this is not computationally very efficient. See [`+(s1::Source{T,P},s2::Source{T,P}) where {P,T}`](@ref) for the very abstract code behind the scenes.
83+
where `field_apply` is applied to the wave field at every point, the default is `field_apply = real`, and `res` is the resolution along both the $x$ and $y$ axis. Note, this is not computationally very efficient. See [source.jl](../../../src/source.jl) for the very abstract code behind the scenes.
8484

8585
To define a new source you will need to understand the internals below.
8686

docs/src/maths/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Below are papers and notes that explain the theory behind this package.
44

5-
## [The T-matrix and Multiple Scattering](T-matrix.pdf)
5+
## [The equations of Multiple Scattering](multiplescattering.pdf)
66

77
These short notes introduce the T-matrix, which defines how a particle scatters waves, and shows how it used in multiple scattering from many particles.
88

0 commit comments

Comments
 (0)