Skip to content

Commit 6a75f65

Browse files
committed
update deps
1 parent 3cb9171 commit 6a75f65

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "BoltzmannSolvers"
22
uuid = "3936891d-e4a6-4f9f-ac95-6e87deea8a87"
33
authors = ["Jan Kuhfeld <[email protected]> and contributors"]
4-
version = "0.1.4"
4+
version = "0.1.5"
55

66
[deps]
77
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
@@ -18,9 +18,9 @@ BoltzmannSolversPlasmaSpeciesExt = "PlasmaSpecies"
1818
BoltzmannSolversSymbolicsExt = "Symbolics"
1919

2020
[compat]
21-
Symbolics = "5"
21+
Symbolics = "6"
2222
CSV = "0.10"
23-
DataInterpolations = "4"
23+
DataInterpolations = "6"
2424
DataFrames = "1"
2525
julia = "1"
2626

src/interpolation.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ struct NamedInterpolation{I}
44
name::Symbol
55
itp::I
66
end
7-
NamedInterpolation(name, y, x) = NamedInterpolation(name,LinearInterpolation(y,x))
7+
NamedInterpolation(name, y, x) = NamedInterpolation(name,LinearInterpolation(y,x; extrapolate=true))
88

99
Base.nameof(i::NamedInterpolation) = i.name
1010
Base.show(io::IO, i::NamedInterpolation) = Base.print(io::IO, "[$(i.name)]")

src/solvers/multibolt.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ function default_swarm_names(::MultiBolt)
66
[
77
"E_N" => :reduced_field,
88
"muN_FLUX" => :reduced_mobility,
9+
"DLN_FLUX" => :longitudinal_diff_coef,
10+
"DTN_FLUX" => :transversal_diff_coef,
911
"alpha_eff_N" => :reduced_townsend_alpha_coef,
1012
"avg_en" => :mean_energy,
1113
]
@@ -15,6 +17,8 @@ end
1517
function load_raw_dataframe(::MultiBolt, source; kwargs...)
1618
swarm_param_files = [
1719
"muN_FLUX.txt",
20+
"DTN_FLUX.txt",
21+
"DLN_FLUX.txt",
1822
"avg_en.txt",
1923
"alpha_eff_N.txt",
2024
] .|> x -> joinpath(source, x)

0 commit comments

Comments
 (0)