diff --git a/input/example_user_init.cfg b/input/example_user_init.cfg new file mode 100644 index 0000000000000000000000000000000000000000..bd88d47f8051368fda0f206c6b91fcc6866f02f1 --- /dev/null +++ b/input/example_user_init.cfg @@ -0,0 +1,27 @@ +name = "user_init"; +param = ( + { + type = "string"; + name = "output_dir"; + comment = "Output directory"; + value = "output"; + }, + { + type = "int"; + name = "restart"; + comment = "If restart is 1 (TRUE), the simulation will continue with data from a previous run"; + value = 0; + }, + { + type = "string"; + name = "load_file"; + comment = "If restart is TRUE, the name of the file with data from previous run, otherwise empty"; + value = ""; + }, + { + type = "double"; + name = "end_t"; + comment = "End time"; + value = 0.600; + } +);