~ubuntu-branches/debian/sid/lammps/sid

« back to all changes in this revision

Viewing changes to tools/moltemplate/examples/coarse_grained_examples/abstract_translocation/moltemplate_files/wall_single.lt

  • Committer: Package Import Robot
  • Author(s): Anton Gladky
  • Date: 2015-04-29 23:44:49 UTC
  • mfrom: (5.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20150429234449-mbhy9utku6hp6oq8
Tags: 0~20150313.gitfa668e1-1
Upload into unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# The two files "solvent_single.lt" and "wall_single.lt" 
 
2
# define two very simple molecules containing one atom each.
 
3
# Both atoms have a similar size (the have the same sigma parameter).
 
4
 
 
5
MoleculeB {
 
6
 
 
7
  # atomID molID atomType charge  x  y  z
 
8
  write("Data Atoms") {
 
9
    $atom:b $mol:. @atom:b  0.0  0.0 0.0 0.0
 
10
  }
 
11
  write_once("Data Masses") {
 
12
    @atom:b 10.0
 
13
  }
 
14
  write_once("In Settings") {
 
15
    #            i     j     epsilon sigma cutoff
 
16
    pair_coeff @atom:b @atom:b  0.05  3.0   7.5    #<--repulsive (approximately)
 
17
    group groupB type @atom:b  #(Atoms of this type belong to the "B" group)
 
18
  }
 
19
 
 
20
}
 
21