Skip to content

Commit

Permalink
change output directory for mesh A(k,w)
Browse files Browse the repository at this point in the history
  • Loading branch information
yomichi committed Aug 5, 2024
1 parent 5e787e7 commit f44e9d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dcore/dcore_spectrum.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def post(self):
om_mesh = numpy.linspace(mesh[0], mesh[1], mesh[2])
bvec = parse_bvec(self._params["model"]["bvec"])
for bname in self._solver.spin_block_names:
filename = f"akw_mesh_{bname}.dat"
filename = os.path.join(self._dir_post, f"akw_mesh_{bname}.dat")
print(f"\n Output {filename}")
with open(filename, "w") as f:
print(
Expand Down Expand Up @@ -581,7 +581,7 @@ def dcore_spectrum(filename, np=1):
# Output gnuplot script
#
if xnode is not None:
print("\n############# Generate GnuPlot Script ########################\n")
print("\n############# Generate Gnuplot Script ########################\n")
gen_script_gnuplot(xnode, seedname, dir_post, p["model"]["spin_orbit"])

print("\n################# Done #####################\n")
Expand Down

0 comments on commit f44e9d4

Please sign in to comment.