19 lines
322 B
TOML
19 lines
322 B
TOML
|
|
[main]
|
||
|
|
description = "This is an example configuration file."
|
||
|
|
author = "Example Author"
|
||
|
|
|
||
|
|
[main.physics]
|
||
|
|
diffusion = true
|
||
|
|
convection = false
|
||
|
|
radiation = true
|
||
|
|
flags = [1, 0, 1]
|
||
|
|
|
||
|
|
[main.simulation]
|
||
|
|
time_step = 0.01
|
||
|
|
total_time = 100.0
|
||
|
|
output_frequency = 10
|
||
|
|
|
||
|
|
[main.output]
|
||
|
|
format = "csv"
|
||
|
|
directory = "results/"
|
||
|
|
save_plots = true
|