Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
marcbasquensmunoz committed Aug 23, 2024
1 parent 7550da2 commit 81398d0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
6 changes: 5 additions & 1 deletion docs/src/nonhistory.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@

# To show this, let us run a simulation with hourly time steps, with a duration of 1 year (so ``8760`` time steps),
# with both the convolution and the non-history time superposition methods.
# Let us define an example, very similar to
# Let us define an example, very similar to [Basic tutorial](@ref)

using BoreholeNetworksSimulator

#

Δt = 3600.#8760*3600/12.
Nt = 8760
Expand Down
4 changes: 4 additions & 0 deletions docs/src/tutorial.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
# We start by specifying the simulation time step and the simulation duration. For our example,
# we will take monthly time steps during 10 years:

using BoreholeNetworksSimulator

#

Δt = 8760*3600/12.
Nt = 10*12

Expand Down
1 change: 0 additions & 1 deletion examples/complex_borefield.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using BoreholeNetworksSimulator
import BoreholeNetworksSimulator: n_branches
using CSV

function load_borefield_from_file(file)
Expand Down
4 changes: 2 additions & 2 deletions src/BoreholeNetworksSimulator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ using FiniteLineSource

include("utils.jl")

modular = get_all_julia_files_in_dir("$(@__DIR__)/modular")
sort_dependencies!(modular, ["interfaces/", "core/"])
modular = get_all_julia_files_in_dir(joinpath(@__DIR__, "modular"))
sort_dependencies!(modular, ["interfaces", "core"])
include.(modular)

export Borehole, SingleUPipeBorehole
Expand Down

0 comments on commit 81398d0

Please sign in to comment.