Help with finding pair style in lammps

Can someone help me find pair style for this model ?

Hi @Prabhsimrang96,

there are several ways to implement such a model in LAMMPS. But this question is outside the expected scope of this forum.

You should document yourself about the code and see how to implement and use such a model with a colleague/advisor who know about your research project and goals. That is how you build autonomy and scientific skills.

okay I will keep trying

You can help yourself by reading the LAMMPS manual. Every pair style in LAMMPS is documented and for those models, that cannot be represented by those, you can look into

  • implementing the pair style in C++ code yourself (and share it with us so that others can use it, too)
  • use pair style lepton/coul and represent your potential function as a suitable expression with the per pair parameters
  • use pair style python and implement the potential function in python
  • use pair style table and create a suitable table for each pair of atom types. this can also be done using the pair_write command after implementing the pair style with python or lepton for improved speed. Also there is a set of python scripts in the tools folder to assist with generating potential table files
3 Likes