Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/stylesheets/extra.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.md-grid {
max-width: 1200px;
}
10 changes: 5 additions & 5 deletions docs/tutorials/2_first_qe_calculation.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Ensure you have the necessary packages and codes installed, which you can verify

If not already done, remember to install the `sssp` pseudopotentials:

```bash
```text
aiida-pseudo install sssp # install the default SSSP/1.3/PBE/efficiency family
```

Expand Down Expand Up @@ -98,23 +98,23 @@ builder = PwBaseWorkChain.get_builder_from_protocol(
)

run = run_get_node(builder)
````
```

**Output:**
```
```text
11/04/2025 05:48:46 PM <42782> aiida.orm.nodes.process.workflow.workchain.WorkChainNode: [REPORT] [13784|PwBaseWorkChain|run_process]: launching PwCalculation<13789> iteration #1
11/04/2025 05:49:09 PM <42782> aiida.orm.nodes.process.workflow.workchain.WorkChainNode: [REPORT] [13784|PwBaseWorkChain|results]: work chain completed after 1 iterations
11/04/2025 05:49:10 PM <42782> aiida.orm.nodes.process.workflow.workchain.WorkChainNode: [REPORT] [13784|PwBaseWorkChain|on_terminated]: remote folders will not be cleaned
```

You can verify that the `tot_charge` was indeed set in the input file of the `pw.x` calculation:

```shell
```text
verdi calcjob inputcat 13789 | grep tot_charge
```

**Output:**
```
```text
tot_charge = 1.0000000000d+00
```

Expand Down
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ theme:
toggle:
icon: material/brightness-4
name: Switch to system preference
#extra_css:
#- stylesheets/extra.css
extra_css:
- stylesheets/extra.css
markdown_extensions:
- attr_list
- md_in_html
Expand Down