Loading...
Searching...
No Matches
EMT_parms.h
Go to the documentation of this file.
1/*
2** This file is part of eOn.
3**
4** SPDX-License-Identifier: BSD-3-Clause
5**
6** Copyright (c) 2010--present, eOn Development Team
7** All rights reserved.
8**
9** Repo:
10** https://github.com/TheochemUI/eOn
11*/
12#pragma once
13// all information for the EMT potential
14
15// the number of different spicies that will be used in simulation
16int const EMT_NumType = 1;
17// int const EMT_NumType = 2;
18
19// array where number of elements should corresponds to EMT_NumType
20// the value of element [0] correspond to the number of atoms of the first type
21// the value of element [1] correspond to the number of atoms of the second type
22// and so on
23int const EMT_NumAtomPerType[] = {1300};
24// int const EMT_NumAtomPerType[] = {1470, 1};
25
26// array where number of elements should corresponds to EMT_NumType
27// the value of element [0] correspond to the atomic number of the atoms of the
28// first type the value of element [1] correspond to the atomic number of the
29// atoms of the second type and so on the last type is the type of atoms that
30// eventually will be deposited!
31int const EMT_AtomType[] = {29};
32// int const EMT_AtomType[] = {12,1};
int const EMT_AtomType[]
Definition EMT_parms.h:32
int const EMT_NumAtomPerType[]
Definition EMT_parms.h:24
int const EMT_NumType
Definition EMT_parms.h:17