Skip to content
Snippets Groups Projects
Commit c50f3b75 authored by Ruben Heinrich's avatar Ruben Heinrich
Browse files

[bugfix] add_vtu() call now being constructed correctly

parent c439ea81
No related branches found
No related tags found
1 merge request!31[docs] examples polished
......@@ -208,11 +208,12 @@ ogs6_generate_benchmark_script <- function(prj_path,
# Add .vtu references and optionally, OGS6_vtu objects
for(i in seq_len(length(ogs6_obj$meshes))){
script_str <- paste0(script_str,
"ogs6_obj$add_vtu(",
construct_add_call(ogs6_obj$meshes[[i]]), ",\n",
read_in_vtu,
")\n\n")
script_str <-
paste0(script_str,
"ogs6_obj$add_vtu(path = \"",
ogs6_obj$meshes[[i]]$path, "\",\n",
"axisym = ", ogs6_obj$meshes[[i]]$axially_symmetric, ",\n",
"read_in_vtu = ", read_in_vtu, ")\n\n")
}
# Add class objects (and such in wrapper lists)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment