File: settings.xml

package info (click to toggle)
votca 2025.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 132,420 kB
  • sloc: xml: 345,964; cpp: 80,067; python: 15,957; sh: 4,580; perl: 2,169; javascript: 202; makefile: 34
file content (55 lines) | stat: -rw-r--r-- 1,171 bytes parent folder | download | duplicates (5)
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
<cg>
  <nbsearch>grid</nbsearch>
  <!--fmatch section -->
  <fmatch>
    <!--Number of different CG beads in the system. SHOULD BE KICKED OUT!!! -->
    <constrainedLS>true</constrainedLS>
    <!--Number of frames for block averaging -->
    <frames_per_block>10</frames_per_block>
  </fmatch>
  
  <bonded>
    <!-- name of the interaction -->
    <name>bond</name>
    <!-- fmatch specific stuff -->
    <min>0.0</min>
    <max>1.0</max>
	<step>0.001</step>
  </bonded>
  <bonded>
    <!-- name of the interaction -->
    <name>angle</name>
    <!-- fmatch specific stuff -->
    <min>0.0</min>
    <max>3.1415</max>
	<step>0.01</step>
  </bonded>
  
  <!-- example for a non-bonded interaction entry -->
  <non-bonded>
    <name>A-A</name>
    <type1>A</type1>
    <type2>A</type2>
    <min>0</min>
    <max>2.5</max>
    <step>0.01</step>
  </non-bonded>
  
  <non-bonded>
    <name>B-B</name>
    <type1>B</type1>
    <type2>B</type2>
    <min>0</min>
    <max>2</max>
    <step>0.01</step>
  </non-bonded>
  
  <non-bonded>
    <name>A-B</name>
    <type1>A</type1>
    <type2>B</type2>
    <min>0</min>
    <max>2</max>
    <step>0.01</step>
  </non-bonded>
</cg>