@@ -10,9 +10,9 @@ def __init__(self, inter_parameter, path_to_poscar):
1010 Parameters
1111 ----------
1212 inter_parameter : dict
13- A dict that specifies the interaction.
13+ A dict that specifies the interaction.
1414 path_to_poscar : str
15- The path to POSCAR. Indicating in which system the task will be initialized.
15+ The path to POSCAR. Indicating in which system the task will be initialized.
1616 """
1717 pass
1818
@@ -27,9 +27,12 @@ def make_potential_files(self, output_dir):
2727 Parameters
2828 ----------
2929 output_dir : str
30- The directory storing the potential files.
31- Outputs
32- -------
30+ The directory storing the potential files.
31+
32+ Notes
33+ -----
34+ The following files are generated:
35+
3336 inter.json: output file
3437 The task information is stored in `output_dir/inter.json`
3538 """
@@ -45,15 +48,15 @@ def make_input_file(self, output_dir, task_type, task_param):
4548 Parameters
4649 ----------
4750 output_dir : str
48- The directory storing the input files.
51+ The directory storing the input files.
4952 task_type : str
50- Can be
51- - "relaxation:": structure relaxation
52- - "static": static computation calculates the energy, force... of a strcture
53- task_parame : dict
54- The parameters of the task.
55- For example the VASP interaction can be provided with
56- { "ediff": 1e-6, "ediffg": 1e-5 }
53+ Can be
54+ - "relaxation:": structure relaxation
55+ - "static": static computation calculates the energy, force... of a strcture
56+ task_param : dict
57+ The parameters of the task.
58+ For example the VASP interaction can be provided with
59+ { "ediff": 1e-6, "ediffg": 1e-5 }
5760 """
5861 pass
5962
@@ -66,16 +69,17 @@ def compute(self, output_dir):
6669 Parameters
6770 ----------
6871 output_dir : str
69- The directory storing the input and output files.
72+ The directory storing the input and output files.
7073
7174 Returns
7275 -------
7376 result_dict: dict
74- A dict that storing the result. For example:
75- { "energy": xxx, "force": [xxx] }
77+ A dict that storing the result. For example:
78+ { "energy": xxx, "force": [xxx] }
7679
77- Outputs
78- -------
80+ Notes
81+ -----
82+ The following files are generated:
7983 CONTCAR: output file
8084 The output configuration is converted to CONTCAR and stored in the `output_dir`
8185 """
0 commit comments