Skip to content

Commit

Permalink
adjust example flow names (#1131)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
3 people authored Feb 25, 2025
1 parent e4b9d39 commit b8ff9f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/user/codes/vasp.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,9 @@ structure = Structure(
coords=[[0, 0, 0], [0.5, 0.5, 0.5]],
)

qha_flow = GruneisenMaker(kpath_scheme="seekpath", vol=0.01, mesh=(15, 15, 15)).make(
structure=structure
)
gruneisen_flow = GruneisenMaker(
kpath_scheme="seekpath", vol=0.01, mesh=(15, 15, 15)
).make(structure=structure)
```

### Quasi-harmonic Workflow
Expand Down Expand Up @@ -338,7 +338,7 @@ structure = Structure(
coords=[[0, 0, 0], [0.5, 0.5, 0.5]],
)

qha_flow = EosMaker(
eos_flow = EosMaker(
linear_strain=(-0.10, 0.10),
number_of_frames=10,
).make(structure=structure)
Expand Down

0 comments on commit b8ff9f4

Please sign in to comment.