-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwest.cfg
55 lines (54 loc) · 2.71 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
# The master WEST configuration file for a simulation.
# vi: set filetype=yaml :
---
west:
system:
driver: odld_system.ODLDSystem
module_path: $WEST_SIM_ROOT
propagation:
max_total_iterations: 100
max_run_wallclock: 3:00:00
propagator: odld_system.ODLDPropagator
gen_istates: true
block_size: 10
data:
west_data_file: west.h5
aux_compression_threshold: 16384 # data sets bigger than this are compressed
# unless overridden by an entry in ``datasets`` below
datasets: # dataset storage options
- name: displacement_x # name used to refer to this in segment.data/env vars
#h5path: auxdata/displacement # HDF5 storage path, overrides default
#store: true # store when writing segment data (defaults to true)
#load: true # load when reading segment data (defaults to false)
store: false
load: false
dtype: float32 # numpy dtype
compression: false # whether to store compressed
scaleoffset: 4 # whether to store with scale/offset filter
chunks: null # custom chunking, or null for auto/no chunking
# - ignored if necessary for other options
datasets: # dataset storage options
- name: displacement_y # name used to refer to this in segment.data/env vars
#h5path: auxdata/displacement # HDF5 storage path, overrides default
#store: true # store when writing segment data (defaults to true)
#load: true # load when reading segment data (defaults to false)
store: false
load: false
dtype: float32 # numpy dtype
compression: false # whether to store compressed
scaleoffset: 4 # whether to store with scale/offset filter
chunks: null # custom chunking, or null for auto/no chunking
# - ignored if necessary for other options
- name: pcoord # you can mess CAREFULLY with pcoord as well
scaleoffset: 4
data_refs: # how to convert segments and states to paths, etc
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}.gro
plugins:
- plugin: westext.adaptvoronoi.AdaptiveVoronoiDriver
av_enabled: true
dfunc_method: odld_system.dfunc
walk_count: 10
max_centers: 100
center_freq: 1