@@ -8,14 +8,14 @@ consistent field calculation](scf.mdx). We have our input `scf` file with some
88new parameters:
99
1010import  CodeBlock  from  ' @theme/CodeBlock' 
11- import  si_bands_scf_in  from  ' !!raw-loader!/src/silicon/si_bands_scf .in' 
11+ import  si_bands_scf_in  from  ' !!raw-loader!/src/silicon/pw.scf.silicon_bands .in' 
1212
13- <CodeBlock  language = " bash" title = " src/silicon/si_bands_scf .in" showLineNumbers >{ si_bands_scf_in } </CodeBlock >
13+ <CodeBlock  language = " bash" title = " src/silicon/pw.scf.silicon_bands .in" showLineNumbers >{ si_bands_scf_in } </CodeBlock >
1414
1515Run the ` scf `  calculation:
1616
1717``` bash 
18- pw.x <  si_bands_scf. in >  si_bands_scf .out
18+ pw.x <  pw.scf.silicon_bands. in >  pw.scf.silicon_bands .out
1919``` 
2020
2121Next step is our band calculation (non-self consistent field) calculation. The
@@ -33,28 +33,28 @@ also in the unoccupied bands above the Fermi energy. Number of occupied bands
3333can be found in the ` scf `  output as number of Kohn-Sham states. Below is a
3434sample input file for the band calculation:
3535
36- import  si_bands_in  from  ' !!raw-loader!/src/silicon/si_bands .in' 
36+ import  si_bands_in  from  ' !!raw-loader!/src/silicon/pw.bands.silicon .in' 
3737
38- <CodeBlock  language = " bash" title = " src/silicon/si_bands .in" showLineNumbers >{ si_bands_in } </CodeBlock >
38+ <CodeBlock  language = " bash" title = " src/silicon/pw.bands.silicon .in" showLineNumbers >{ si_bands_in } </CodeBlock >
3939
4040Run ` pw.x `  with ` bands `  calculation input file:
4141
4242``` bash 
43- pw.x <  si_bands. in >  si_bands .out
43+ pw.x <  pw.bands.silicon. in >  pw.bands.silicon .out
4444``` 
4545
4646After the bands calculation is performed, we need some postprocessing using
4747` bands.x `  utility in order to obtain the data in more usable format. Input file
4848for ` bands.x `  postprocessing:
4949
50- import  si_bands_pp_in  from  ' !!raw-loader!/src/silicon/si_bands_pp .in' 
50+ import  si_bands_pp_in  from  ' !!raw-loader!/src/silicon/pp.bands.silicon .in' 
5151
52- <CodeBlock  language = " bash" title = " src/silicon/si_bands_pp .in" showLineNumbers >{ si_bands_pp_in } </CodeBlock >
52+ <CodeBlock  language = " bash" title = " src/silicon/pp.bands.silicon .in" showLineNumbers >{ si_bands_pp_in } </CodeBlock >
5353
5454Run ` bands.x `  from post processing (PP) module:
5555
5656``` bash 
57- bands.x <  si_bands_pp. in >  si_bands_pp .out
57+ bands.x <  pp.bands.silicon. in >  pp.bands.silicon .out
5858``` 
5959
6060Finally, we run ` plotband.x `  to visualize bandstructure. We can either run it
0 commit comments