When running
``` julia
using BoreholeNetworksSimulator
Δt = 8760*3600/12.
Nt = 10*12
α = 1e-6
λ = 3.
T0 = 10.
medium = GroundMedium(α=α, λ=λ, T0=T0)
D = 10.
H = 100.
borehole = Si…
When running the following example:
``` julia
using BoreholeNetworksSimulator
using CSV
using Statistics
function load_positions_from_file(file)
data = CSV.read(file, values, header=true…