File diff 000000000000 → d6faa5ffcedf
input/example_user_init.cfg
Show inline comments
 
new file 100644
 
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;
 
  } 
 
);