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

« back to all changes in this revision

Viewing changes to src/USER-INTEL/TEST/in.intel.lc

  • 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
# Gay-Berne benchmark
 
2
# biaxial ellipsoid mesogens in isotropic phase
 
3
# shape: 2 1.5 1
 
4
# cutoff 4.0 with skin 0.8
 
5
# NPT, T=2.4, P=8.0
 
6
 
 
7
package intel 1 mode mixed balance $b
 
8
package omp 0
 
9
suffix $s
 
10
processors * * * grid numa
 
11
 
 
12
variable        x index 4
 
13
variable        y index 2
 
14
variable        z index 2
 
15
 
 
16
variable i equal $x*32
 
17
variable j equal $y*32
 
18
variable k equal $z*32
 
19
 
 
20
units         lj
 
21
atom_style    ellipsoid
 
22
 
 
23
# creation
 
24
lattice       sc 0.22
 
25
region        box block 0 $i 0 $j 0 $k
 
26
create_box    1 box
 
27
create_atoms  1 box
 
28
 
 
29
# read_data     data.gb
 
30
 
 
31
set type 1 mass 1.5
 
32
set type 1 shape 1 1.5 2
 
33
set           group all quat/random 982381
 
34
 
 
35
compute       rot all temp/asphere
 
36
group         spheroid type 1
 
37
variable      dof equal count(spheroid)+3
 
38
compute_modify rot extra ${dof}
 
39
 
 
40
velocity      all create 2.4 41787 loop geom
 
41
 
 
42
pair_style    gayberne 1.0 3.0 1.0 4.0
 
43
pair_coeff    1 1 1.0 1.0 1.0 0.5 0.2 1.0 0.5 0.2
 
44
 
 
45
neighbor      0.8 bin
 
46
 
 
47
timestep      0.002
 
48
thermo        300
 
49
 
 
50
# equilibration run
 
51
fix           1 all npt/asphere temp 2.4 2.4 0.1 iso 5.0 8.0 0.1
 
52
compute_modify 1_temp extra ${dof}
 
53
run           210
 
54
thermo        100
 
55
 
 
56
reset_timestep 0
 
57
unfix 1
 
58
fix         1 all nve/asphere
 
59
run 10
 
60
run           50
 
61