-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwest.cfg
85 lines (85 loc) · 2.85 KB
/
west.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# The master WEST configuration file for a simulation.
# vi: set filetype=yaml :
---
west:
system:
driver: westpa.core.systems.WESTSystem
system_options:
# Dimensionality of your progress coordinate
pcoord_ndim: 2
# Number of data points per iteration
pcoord_len: 2
# Data type for your progress coordinate
pcoord_dtype: !!python/name:numpy.float32
bins:
type: RectilinearBinMapper
# The edges of the bins
boundaries:
- [0, 300, 325, 350, 400, 450, 'inf']
- [0, 1, 2, 3, 4, 5, 6, 'inf']
# Number walkers per bin
bin_target_counts: 8
propagation:
max_total_iterations: 1000
max_run_wallclock: 48:00:00
propagator: executable
gen_istates: false
data:
west_data_file: west.h5
datasets:
- name: pcoord
scaleoffset: 4
data_refs:
iteration: $WEST_SIM_ROOT/traj_segs/iter_{n_iter:06d}.h5
segment: $WEST_SIM_ROOT/traj_segs/{segment.n_iter:06d}/{segment.seg_id:06d}
basis_state: $WEST_SIM_ROOT/bstates/{basis_state.auxref}
initial_state: $WEST_SIM_ROOT/istates/{initial_state.iter_created}/{initial_state.state_id}.ncrst
executable:
environ:
PROPAGATION_DEBUG: 1
propagator:
executable: $WEST_SIM_ROOT/westpa_scripts/runseg.sh
stdout: $WEST_SIM_ROOT/seg_logs/{segment.n_iter:06d}-{segment.seg_id:06d}.log
stderr: stdout
stdin: null
cwd: null
environ:
SEG_DEBUG: 1
get_pcoord:
executable: $WEST_SIM_ROOT/westpa_scripts/get_pcoord.sh
stdout: $WEST_SIM_ROOT/get_pcoord.log
stderr: stdout
gen_istate:
executable: $WEST_SIM_ROOT/westpa_scripts/gen_istate.sh
stdout: /dev/null
stderr: stdout
post_iteration:
enabled: true
executable: $WEST_SIM_ROOT/westpa_scripts/post_iter.sh
stderr: stdout
pre_iteration:
enabled: false
executable: $WEST_SIM_ROOT/westpa_scripts/pre_iter.sh
stderr: stdout
# Settings for w_ipa, an interactive analysis program that can also automate analysis.
analysis:
directory: ANALYSIS # specify the directory all analysis files should exist in.
kinetics: # general options for both kinetics routines.
step_iter: 1
evolution: cumulative
extra: [ 'disable-correl' ]
analysis_schemes: # Analysis schemes. Required: name (PERMEATION), states, and bins
OVERALL:
enabled: True
bins:
- type: RectilinearBinMapper
boundaries:
- [0, inf]
- [0, 6, inf]
states:
- label: bound
coords:
- [2, 2]
- label: unbound
coords:
- [2, 7]