Skip to content

Commit

Permalink
Undo temporary change to example script
Browse files Browse the repository at this point in the history
  • Loading branch information
bgroenks96 committed Feb 14, 2024
1 parent babc285 commit adcb9ba
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions examples/heat_freeW_snow_samoylov.jl
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,6 @@ prob = CryoGridProblem(tile, u0, tspan, saveat=3*3600.0, savevars=(:T, :top => (
sol = @time solve(prob, Euler(), dt=300.0);
out = CryoGridOutput(sol)

integrator = init(prob, Euler(), dt=300.0)
step!(integrator)

for i in integrator
println(convert_t(integrator.t))
end

@btime $tile($du0, $u0, $prob.p, $prob.tspan[1])

# Plot it!
using Plots: plot, plot!, heatmap, cgrad, Measures
zs = [1,10,20,30,50,100,200,500]u"cm"
Expand Down

2 comments on commit adcb9ba

@bgroenks96
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/100899

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.21.1 -m "<description of version>" adcb9ba41885af6f847173a64090d200e7b2ecc5
git push origin v0.21.1

Please sign in to comment.