File tree Expand file tree Collapse file tree 1 file changed +20
-19
lines changed Expand file tree Collapse file tree 1 file changed +20
-19
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,25 @@ To integrate ABFML with LAMMPS, follow these steps:
56
56
```
57
57
** Note** : Ensure your GCC compiler is version 9.0 or above, as older versions may not support.
58
58
59
- ## 3. Run
59
+ ## 3. Build a new model
60
+ Build your own model input in the input file and specify the path to the model's py file
61
+ ``` json
62
+ {
63
+ "model_setting" : {
64
+ "name" : " user_defined" ,
65
+ "model_path" : " D:/Work/PyCharm/ABFML/example/new-MLFF/LJ-model.py" ,
66
+ "field_name" : " LJ" ,
67
+ "normal_name" : " LJNormal" ,
68
+ "descriptor" : {
69
+ "epsilon" : 1.0 ,
70
+ "sigma" : 1.5
71
+ }
72
+ }
73
+ }
74
+ ```
75
+ Then you can use the relevant modules for training, validation and simulation
76
+
77
+ ## 4. Run
60
78
61
79
To run an example using ABFML, follow these steps:
62
80
``` bash
@@ -77,21 +95,4 @@ To run an example using ABFML, follow these steps:
77
95
pair coeff * * 29 30
78
96
79
97
# Use the element number to represent the element type
80
- ```
81
- ## 4. Build a new model
82
- Build your own model input in the input file and specify the path to the model's py file
83
- ``` json
84
- {
85
- "model_setting" : {
86
- "name" : " user_defined" ,
87
- "model_path" : " D:/Work/PyCharm/ABFML/example/new-MLFF/LJ-model.py" ,
88
- "field_name" : " LJ" ,
89
- "normal_name" : " LJNormal" ,
90
- "descriptor" : {
91
- "epsilon" : 1.0 ,
92
- "sigma" : 1.5
93
- }
94
- }
95
- }
96
- ```
97
- Then you can use the relevant modules for training, validation and simulation
98
+ ```
You can’t perform that action at this time.
0 commit comments