Skip to content

Commit b8ff9f4

Browse files
adjust example flow names (#1131)
* Create high_level_overview.md Drafting the tutorial text. * added Job and Flow makers section to the tutorial * added Job and Flow makers section to the tutorial * changed the style of the tutorial * structure the text better * Added todo Noting some idea * added the section for InputSet and Builder * adding job maker @job decorator explanation * Update key_concepts_overview.md * removing unnecessary line * remove unnecessary lines * added section for taskdocs * fixing typo * fixing typo * Noting some idea * revised the tutorial, fixed tpos etc. * minor changes * minor changes * Auto-update pre-commit hooks * Update docs/user/key_concepts_overview.md Co-authored-by: J. George <[email protected]> * fix small things * fix docstring * added example code snippets * fix example flow names --------- Co-authored-by: QuantumChemist <[email protected]> Co-authored-by: J. George <[email protected]>
1 parent e4b9d39 commit b8ff9f4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/user/codes/vasp.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -289,9 +289,9 @@ structure = Structure(
289289
coords=[[0, 0, 0], [0.5, 0.5, 0.5]],
290290
)
291291

292-
qha_flow = GruneisenMaker(kpath_scheme="seekpath", vol=0.01, mesh=(15, 15, 15)).make(
293-
structure=structure
294-
)
292+
gruneisen_flow = GruneisenMaker(
293+
kpath_scheme="seekpath", vol=0.01, mesh=(15, 15, 15)
294+
).make(structure=structure)
295295
```
296296

297297
### Quasi-harmonic Workflow
@@ -338,7 +338,7 @@ structure = Structure(
338338
coords=[[0, 0, 0], [0.5, 0.5, 0.5]],
339339
)
340340

341-
qha_flow = EosMaker(
341+
eos_flow = EosMaker(
342342
linear_strain=(-0.10, 0.10),
343343
number_of_frames=10,
344344
).make(structure=structure)

0 commit comments

Comments
 (0)