Skip to content

Commit

Permalink
z_max
Browse files Browse the repository at this point in the history
  • Loading branch information
JaimeRZP committed Apr 17, 2024
1 parent 10e98d7 commit 74d5264
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core.jl
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ Settings(;kwargs...) = begin
nk = get(kwargs, :nk, 500)
nℓ = get(kwargs, :nℓ, 300)

xs = LinRange(0, log(1+1100), nz)
z_max = get(kwargs, :z_max, 1100)
xs = LinRange(0, log(1+z_max), nz)
zs = @.(exp(xs) - 1)
zs_chi = 10 .^ Vector(LinRange(-3, log10(1100), nz_chi))
zs_t = range(0.00001, stop=3.0, length=nz_t)
Expand Down

0 comments on commit 74d5264

Please sign in to comment.