Skip to content

Commit e6fa5e2

Browse files
committed
Dr Watson
1 parent a2abc2d commit e6fa5e2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/validation_DrWatson.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ end
117117

118118
function run_or_load(case::Dict)
119119
produce_or_load(
120-
projectdir("assets","validation_DrWatson"),
120+
projectdir("notebooks","output_path"),
121121
case,
122122
run,
123123
prefix="res",
@@ -129,7 +129,7 @@ end
129129

130130
map(run_or_load,dicts)
131131

132-
# Note that the results of each case are stored in a binary database file in the `projectdir("assets","validation_DrWatson")` folder. Each result file stores the output dictionary that returns from `run(case)`.
132+
# Note that the results of each case are stored in a binary database file in the `projectdir("notebooks","output_path")` folder. Each result file stores the output dictionary that returns from `run(case)`.
133133

134134
# We also observe that we set `tag=true` in `produce_or_load`. This option is *key to preserve reproducibility*. It adds to the output dictionary the field `:gitcommit`, thus allowing us to trace the status of the code, at which we obtained those results. Furthermore, if the git repo is dirty, one more field `:gitpatch` is added, storing the difference string.
135135

@@ -143,7 +143,7 @@ using DataFrames
143143

144144
# To collect all simulation results, it suffices to use the `collect_results!` function from `DrWatson.jl` from the folder where the results are stored.
145145

146-
df = collect_results(projectdir("assets","validation_DrWatson"))
146+
df = collect_results(projectdir("notebooks","output_path"))
147147

148148
# We order next the database by (ascending) mesh size and we extract the arrays of mesh sizes and errors
149149

0 commit comments

Comments
 (0)