Hello.
I am working on conducting simulations that involve Carbon Dioxide and alkanes. For alkanes, I use the OPLS force field with the pair_style lj/cut/coul/long, while for Carbon Dioxide, I apply the pair_style mie/cut. Thus, the pair_style description in my input script is:
units real
atom_style full
pair_style hybrid lj/cut/coul/long {cutoff} mie/cut {cutoff}
bond_style harmonic
angle_style harmonic
dihedral_style opls
pair_modify mix arithmetic tail yes
kspace_style ewald ${ksp}
read_data CO2_SAFTMie_data.lmp
pair_coeff 1 1 lj/cut/coul/long 0.066000 3.500000
pair_coeff 2 2 lj/cut/coul/long 0.066000 3.500000
pair_coeff 3 3 lj/cut/coul/long 0.030000 2.500000
pair_coeff 4 4 mie/cut 0.718751867446 3.7410 23.0 6.660
velocity all create {T} {seed} mom yes rot yes dist gaussian
minimize {etol} {ftol} {maxiter} {maxeval}
timestep {dt}
fix 1 all npt temp {T} {T} {Tdamp} iso {P} {P} ${Pdamp}
fix 2 all ave/time 1 100 1000 v_pe v_ke v_etotal v_temp v_pres v_vol ave running file thermo1.profile
run ${run_eq}
I appreciate in advance your collaboration to help me understand where my error is.