# Simulation of the oxidation of methane Jinzhe Zeng, Liqun Cao, and Tong Zhu This tutorial was adapted from: ```{bibliography} --- filter: False --- Zeng_2022_Chapter ``` Please cite the above chapter if you follow the tutorial. --- In this tutorial, we will take the simulation of methane combustion as an example. All files needed in this section can be downloaded from [tongzhugroup/Chapter13-tutorial](https://github.com/tongzhugroup/Chapter13-tutorial). Besides ReacNetGenerator{cite:p}`Zeng_PhysChemChemPhys_2020_v22_p683`, DeePMD-kit{cite:p}`Wang_ComputPhysCommun_2018_v228_p178` (with LAMMPS{cite:p}`Thompson_ComputPhysCommun_2022_v271_p108171`) will be used to run simulations. ## Step 1: Preparing the reference dataset In the reference dataset preparation process, one also has to consider the expect accuracy of the final model, or at what QM level one should label the data. In {cite:t}`Zeng_NatCommun_2020_v11_p5713`, the [Gaussian](https://gaussian.com) software{cite:p}`g16` was used to calculate the potential energy and atomic forces of the reference data at the MN15/6-31G\*\* level. The MN15 functional was employed because it has good accuracy for both multi-reference and single-reference systems, which is essential for our system as we have to deal with a lot of radicals and their reactions. Here we assume that the dataset is prepared in advance, which can be downloaded from [tongzhugroup/Chapter13-tutorial](https://github.com/tongzhugroup/Chapter13-tutorial). ## Step 2. Training the Deep Potential (DP) Before the training process, we need to prepare an input file called `methane_param.json` which contains the control parameters. The training can be done by the following command: ```sh $deepmd_root/bin/dp train methane_param.json ``` There are several parameters we need to define in the `methane_param.json` file. The `type_map` refers to the type of elements included in the training, and the option of `rcut` is the cut-off radius which controls the description of the environment around the center atom. The type of descriptor is `se_a` in this example, which represents the DeepPot-SE model. The descriptor will decay smoothly from `rcut_smth` (R_on) to the cut-off radius `rcut` (R_off). Here `rcut_smth` and `rcut` are set to 1.0 Å and 6.0 Å respectively. The `sel` defines the maximum possible number of neighbors for the corresponding element within the cut-off radius. The options `neuron` in `descriptor` and `fitting_net` is used to determine the shape of the embedding neural network and the fitting network, which are set to (25, 50, 100) and (240, 240, 240) respectively. The value of `axis_neuron` represents the size of the embedding matrix, which was set to 12. ## Step 3: Freeze the model This step is to extract the trained neural network model. To freeze the model, the following command will be executed: ```sh $deepmd_root/bin/dp freeze -o graph.pb ``` A file called `graph.pb` can be found in the training folder. Then the frozen model can be compressed:{cite:p}`Lu_JChemTheoryComput_2022_v18_p5559` ```sh $deepmd_root/bin/dp compress -i graph.pb -o graph_compressed.pb -t methane_param.json ``` ## Step 4: Running MD simulation based on the DP The frozen model can be used to run reactive MD simulations to explore the detailed reaction mechanism of methane combustion. The MD engine is provided by the [LAMMPS](https://github.com/lammps/lammps) software{cite:p}`Thompson_ComputPhysCommun_2022_v271_p108171`. Here we use the same system from [our previous work](https://doi.org/10.1038/s41467-020-19497-z){cite:p}`Zeng_NatCommun_2020_v11_p5713`, which contains 100 methane and 200 oxygen molecules. The MD will be performed under the NVT ensemble at 3000 K for 1 ns. The LAMMPS program can be invoked by the following command: ```sh $deepmd_root/bin/lmp -i input.lammps ``` The `input.lammps` is the input file that controls the MD simulation in detail, technique details can be found in [the manual of LAMMPS](https://docs.lammps.org/). To use the DP, the `pair_style` option in this input should be specified as follows: ```lammps pair_style deepmd graph_compressed.pb pair_coeff * * ``` ## Step 5: Analysis of the trajectory After the simulation is done, we can use the ReacNetGenerator software{cite:p}`Zeng_PhysChemChemPhys_2020_v22_p683` which was developed in our previous study to extract the reaction network from the trajectory. All species and reactions in the trajectory will be put on an interactive web page where we can analyze them by mouse clicks. Eventually we should be able to obtain reaction networks that consistent with the following figure. ```sh reacnetgenerator -i methane.lammpstrj -a C H O --dump ``` ![The initial stage of combustion](https://media.springernature.com/full/springer-static/image/art%3A10.1038%2Fs41467-020-19497-z/MediaObjects/41467_2020_19497_Fig2_HTML.png?as=webp) Fig: The initial stage of combustion. The figure is taken from {cite:t}`Zeng_NatCommun_2020_v11_p5713` and more results can be found there. --- ## Acknowledge This work was supported by the National Natural Science Foundation of China (Grants No. 22173032, 21933010). J.Z. was supported in part by the National Institutes of Health (GM107485) under the direction of Darrin M. York. We also thank the ECNU Multifunctional Platform for Innovation (No. 001) and the Extreme Science and Engineering Discovery Environment (XSEDE), which is supported by National Science Foundation Grant ACI-1548562.56 (specifically, the resources EXPANSE at SDSC through allocation TG-CHE190067), for providing supercomputer time.