Skip to content

Commit 203d9c5

Browse files
committed
Params file for CLI
1 parent 97ee4de commit 203d9c5

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

test/params.toml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
[system]
2+
config = "config_0.xyz"
3+
temperature = 0.231
4+
density = 1.192060351952634
5+
model = "JBB"
6+
list_type = "LinkedList"
7+
8+
[simulation]
9+
type = "Metropolis"
10+
steps = 1000
11+
seed = 10
12+
parallel = false
13+
output_path = "data/test/particles/KA2D_distribution"
14+
15+
[[simulation.move]]
16+
action = "Displacement"
17+
probability = 1.0
18+
policy = "SimpleGaussian"
19+
parameters = {sigma = 0.05}
20+
21+
[[simulation.output]]
22+
algorithm = "StoreCallbacks"
23+
callbacks = ["energy", "acceptance"]
24+
scheduler_params = {linear_interval = 100}
25+
26+
[[simulation.output]]
27+
algorithm = "StoreTrajectories"
28+
scheduler_params = {linear_interval = 100}
29+
fmt = "XYZ"
30+
31+
[[simulation.output]]
32+
algorithm = "StoreLastFrames"
33+
scheduler_params = {linear_interval = 1000}
34+
fmt = "XYZ"
35+
36+
[[simulation.output]]
37+
algorithm = "PrintTimeSteps"
38+
scheduler_params = {linear_interval = 100}

0 commit comments

Comments
 (0)