/** * @file main.cpp * @author jun * @brief Main entry of the program * @version 0.1 * @date 2023-07-23 * * Copyright (c) 2023 jun * */ #include #include "md/Atom.hpp" #include "md/AtomsGenerator.hpp" #include "md/System.hpp" int main() { std::cout << "kk eae men" << std::endl; System system(0.001); std::vector atoms = generateFCCAtoms(5.26, 3, "Ar", 1); initMaxwellBoltzmannVelocities(atoms, 300); system.addAtom(std::move(atoms)); system.printAtoms(); return 0; }