[Tabulation] section¶
This section defines the file format in which potable will write its output files through the target configuration item.
See also
- Input format reference: [Tabulation].
The pair-tabulation target can be one of:
DL_POLY(orDLPOLY): this creates output in theTABLEformat accepted by theDL_POLYsimulation code.LAMMPS: creates output suitable for use with the LAMMPSpair_style table(see Using Basak.lmptab in LAMMPS).GULPproduces a table for theGULPcode by defining a set of separation, energy pairs using theGULPsplinedirective.
Defining table cut-off¶
The extent of the table is defined in the [Tabulation] section using the nr, dr and cutoff options:
drdefines the row increment (step-size) between table rows.cutoffgives the maximum separation to be tabulated.nrdetermines the number of rows in the tabulation.
Any two of nr, drand cutoff can be used to define the extent and resolution of the tabulation. As an example all three of the following [Tabulation] sections would produce a table with 1000 rows, each separated by 0.01:
cutoffandnr[Tabulation] target: LAMMPS cutoff : 9.99 nr : 1000
cutoffanddr[Tabulation] target: LAMMPS cutoff : 9.99 dr : 0.01
nranddr[Tabulation] target: LAMMPS nr : 1000 dr : 0.01