GithubHelp home page GithubHelp logo

Comments (2)

temok-cse avatar temok-cse commented on September 20, 2024

_A follow up_: I found the way to read WFK.nc files using scipy :)
But I am looking forward to see how to do it with abipy!
With regards,
Temok

from scipy.io import netcdf
f = netcdf.netcdf_file('my_nscf_WFK-etsf.nc', 'r')
print f.history
f.variables
f.variables['eigenvalues']
ev = f.variables['eigenvalues']
print ev.units
print ev.shape
print ev[:]

cg = f.variables['reduced_coordinates_of_plane_waves']
print ev[:]

f.close() ```

from abipy.

gmatteo avatar gmatteo commented on September 20, 2024
# Read the WFK file
wfk = abiopen("foo_WFK.nc")

# Plot the band energies.
wfk.plot_ebands()
# Visualize u(r)**2 with vesta.
visu = wfk.visualize_structure_with("vesta")
visu()

# Visualize u(r)**2 with vesta.
visu = wfk.visalize_ur2(spin=0, kpoint=0, band=0, visu="vesta")
visu()

# Get a wavefunction.
wave = wfk.get_wave(spin=0, kpoint=[0,0,0], band=0)

The wave object provides methods to access the Fourier components, to
perform FFTs u(g) --> u(g) and to compute matrix elements in G-space and R-space

See the code in abipy/waves and the corresponding documentation

from abipy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.