File: in.extep-bn

package info (click to toggle)
lammps 20210122~gita77bb%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 331,996 kB
  • sloc: cpp: 802,213; python: 24,256; xml: 14,949; f90: 10,448; ansic: 8,476; perl: 4,161; sh: 3,466; fortran: 2,805; makefile: 1,250; objc: 238; lisp: 163; csh: 16; awk: 14; tcl: 6
file content (29 lines) | stat: -rw-r--r-- 715 bytes parent folder | download | duplicates (3)
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
# Initialization
units           metal
boundary        p p p
atom_style      atomic
processors      * * 1

# System and atom definition
read_data       BN.data     # read lammps data file

# Neighbor update settings 
neighbor        2.0 bin
neigh_modify    every 1
neigh_modify    delay 0
neigh_modify    check yes

# Potential
pair_style      extep
pair_coeff      * * ../../../../potentials/BN.extep B N

# Output 
thermo          10
thermo_style    custom step time etotal pe temp lx ly lz pxx pyy pzz
thermo_modify   line one format float %14.8g

# Setup NPT MD run
timestep        0.0001 # ps
velocity        all create 300.0 12345
fix             thermos all npt temp 300 300 1.0 x 0 0 1.0 y 0 0 1.0
run 1000