├── .ci └── cineca.yml ├── .editorconfig ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── CMakeLists.txt ├── CONTRIBUTING.md ├── COUPLE ├── CMakeLists.txt ├── Makefile ├── README ├── examples │ ├── Makefile.gfortran │ ├── Makefile.ifort │ ├── README │ ├── c2cp.cpp │ ├── c2pw.cpp │ ├── f2cp.f90 │ └── f2pw.f90 ├── include │ └── libqecouple.h ├── src │ ├── Makefile │ ├── libcpv.f90 │ ├── libpwscf.f90 │ └── libqemod.f90 └── tests │ ├── check-couple.j │ ├── clean_all │ ├── h2o-mt-blyp.cp.c-0.ref │ ├── h2o-mt-blyp.cp.c-16.ref │ ├── h2o-mt-blyp.cp.c-2.ref │ ├── h2o-mt-blyp.cp.c-4.ref │ ├── h2o-mt-blyp.cp.f-0.ref │ ├── h2o-mt-blyp.cp.f-16.ref │ ├── h2o-mt-blyp.cp.f-2.ref │ ├── h2o-mt-blyp.cp.f-4.ref │ ├── h2o-mt-blyp.cp.in │ ├── metal.pw.c-0.ref │ ├── metal.pw.c-16.ref │ ├── metal.pw.c-2.ref │ ├── metal.pw.c-4.ref │ ├── metal.pw.f-0.ref │ ├── metal.pw.f-16.ref │ ├── metal.pw.f-2.ref │ ├── metal.pw.f-4.ref │ ├── metal.pw.in │ ├── scf.pw.c-0.ref │ ├── scf.pw.c-16.ref │ ├── scf.pw.c-2.ref │ ├── scf.pw.c-4.ref │ ├── scf.pw.f-0.ref │ ├── scf.pw.f-16.ref │ ├── scf.pw.f-2.ref │ ├── scf.pw.f-4.ref │ └── scf.pw.in ├── CPV ├── CMakeLists.txt ├── Doc │ ├── INPUT_CP.def │ ├── INPUT_CP.html │ ├── INPUT_CP.txt │ ├── INPUT_CPPP.def │ ├── INPUT_CPPP.html │ ├── INPUT_CPPP.txt │ ├── INPUT_WFDD │ ├── Makefile │ ├── autopilot_guide.md │ ├── pandoc_template.html │ ├── pandoc_template.tex │ ├── tp.tex │ └── user_guide.md ├── Ford.md ├── Ford │ └── index.md ├── Makefile ├── examples │ ├── EXX-wf-example │ │ ├── 01.input │ │ ├── 01.out │ │ ├── 02.input │ │ ├── 02.out │ │ ├── H_HSCV_PBE-1.0.UPF │ │ ├── O_HSCV_PBE-1.0.UPF │ │ ├── README-Parallelization │ │ ├── README-example │ │ └── example-job-script │ ├── Extffield_example │ │ ├── README │ │ ├── reference │ │ │ ├── SiH4.extffield │ │ │ ├── SiH4.inp1 │ │ │ ├── SiH4.inp2 │ │ │ ├── SiH4.out1 │ │ │ ├── SiH4.out2 │ │ │ └── extffield.dat │ │ └── run_example │ ├── README │ ├── Restart_example │ │ ├── README │ │ ├── reference │ │ │ ├── sio2.cp.restart.out │ │ │ ├── sio2.cp.start.out │ │ │ └── sio2.pw.restart.out │ │ └── run_example │ ├── autopilot-example │ │ ├── reference │ │ │ └── water.autopilot.out │ │ └── run_example_water │ ├── example01 │ │ ├── README │ │ ├── reference │ │ │ ├── sio2.cp.restart.out │ │ │ ├── sio2.cp.start.out │ │ │ ├── sio2.vc-cp.out │ │ │ └── sio2.vc-cp.restart.out │ │ └── run_example │ ├── example02 │ │ ├── README │ │ ├── reference │ │ │ ├── h2o-mol1.out │ │ │ ├── h2o-mol2.out │ │ │ └── h2o-mol3.out │ │ └── run_example │ ├── example03 │ │ ├── README │ │ ├── reference │ │ │ └── nh3.out │ │ └── run_example │ ├── example04 │ │ ├── README │ │ ├── reference │ │ │ ├── h2o-32.out │ │ │ └── h2o-64.out │ │ └── run_example │ ├── example05 │ │ ├── README │ │ ├── reference │ │ │ ├── h2o.efield.out │ │ │ └── h2o.wannier.out │ │ └── run_example │ ├── example06 │ │ ├── README │ │ ├── reference │ │ │ ├── h2o.scf.out │ │ │ └── h2o.wannier.out │ │ └── run_example │ ├── example07 │ │ ├── README │ │ ├── reference │ │ │ ├── c4h6.cp.metaGGA.out │ │ │ └── c4h6.pw.metaGGA.out │ │ └── run_example │ ├── example08 │ │ ├── README │ │ ├── reference │ │ │ └── si2.ensemble-dyn.out │ │ └── run_example │ └── example09 │ │ ├── README │ │ ├── reference │ │ ├── mgo.cp.cg.efield.out │ │ ├── mgo.cp.cg.out │ │ └── mgo.cp.damp.efield.out │ │ └── run_example └── src │ ├── Makefile │ ├── berryion.f90 │ ├── bforceion.f90 │ ├── cell_nose.f90 │ ├── cg.f90 │ ├── cg_sub.f90 │ ├── chargedensity.f90 │ ├── cp_autopilot.f90 │ ├── cp_emass.f90 │ ├── cp_interfaces.f90 │ ├── cp_restart_new.f90 │ ├── cplib.f90 │ ├── cplib_meta.f90 │ ├── cppp.f90 │ ├── cpr.f90 │ ├── cpr_loop.f90 │ ├── cpr_mod.f90 │ ├── cprstart.f90 │ ├── dealloc.f90 │ ├── dforceb.f90 │ ├── efermi.f90 │ ├── efield.f90 │ ├── eigs0.f90 │ ├── electrons.f90 │ ├── electrons_nose.f90 │ ├── energies.f90 │ ├── ensemble_dft.f90 │ ├── entropy.f90 │ ├── environ_cp_module.f90 │ ├── exch_corr.f90 │ ├── exx_cg.f90 │ ├── exx_es.f90 │ ├── exx_gs.f90 │ ├── exx_module.f90 │ ├── exx_pair.f90 │ ├── exx_psi.f90 │ ├── exx_vofr.f90 │ ├── forces.f90 │ ├── fromscra.f90 │ ├── gram.f90 │ ├── gtable.f90 │ ├── init.f90 │ ├── init_run.f90 │ ├── inner_loop_cold.f90 │ ├── input.f90 │ ├── ions_nose.f90 │ ├── ions_positions.f90 │ ├── ksstates.f90 │ ├── ldaU.f90 │ ├── ldaU_cp.f90 │ ├── ldaUpen.f90 │ ├── mainvar.f90 │ ├── manycp.f90 │ ├── metaxc.f90 │ ├── modules.f90 │ ├── move_electrons.f90 │ ├── newd.f90 │ ├── nl_base.f90 │ ├── nlcc.f90 │ ├── ortho.f90 │ ├── ortho_base.f90 │ ├── phasefactor.f90 │ ├── plugin_add_potential.f90 │ ├── plugin_clean.f90 │ ├── plugin_clock.f90 │ ├── plugin_energy.f90 │ ├── plugin_ext_forces.f90 │ ├── plugin_get_potential.f90 │ ├── plugin_init_base.f90 │ ├── plugin_init_cell.f90 │ ├── plugin_init_ions.f90 │ ├── plugin_initialization.f90 │ ├── plugin_int_forces.f90 │ ├── plugin_print_energies.f90 │ ├── plugin_print_info.f90 │ ├── plugin_read_input.f90 │ ├── plugin_utilities.f90 │ ├── potentials.f90 │ ├── pres_ai_mod.f90 │ ├── print_out.f90 │ ├── problem_size.f90 │ ├── pseudo_base.f90 │ ├── pseudopot.f90 │ ├── pseudopot_sub.f90 │ ├── qmatrixd.f90 │ ├── qqberry.f90 │ ├── restart.f90 │ ├── restart_sub.f90 │ ├── runcp.f90 │ ├── sic.f90 │ ├── smallbox.f90 │ ├── smallbox_grid.f90 │ ├── smallbox_gvec.f90 │ ├── smallbox_lib.f90 │ ├── smallbox_subs.f90 │ ├── spinsq.f90 │ ├── spline.f90 │ ├── stop_run.f90 │ ├── stress.f90 │ ├── vofrho.f90 │ ├── vol_clu.f90 │ ├── wannier.f90 │ ├── wannier_base.f90 │ ├── wave.f90 │ ├── wave_base.f90 │ ├── wave_types.f90 │ ├── wf.f90 │ └── wfdd.f90 ├── Doc ├── CMakeLists.txt ├── ChangeLog.cp ├── ChangeLog.old ├── ChangeLog.pw ├── ExternalForceFields.tex ├── Hubbard_input.tex ├── Makefile ├── README ├── brillouin_zones.tex ├── constraints_HOWTO.tex ├── html.sty ├── images │ ├── bcc_bi.png │ ├── bco_1.png │ ├── bco_2.png │ ├── bco_3.png │ ├── bco_4.png │ ├── bco_5.png │ ├── bco_6.png │ ├── cubic_bi.png │ ├── fcc_bi.png │ ├── fcc_sc.png │ ├── hex.png │ ├── monob.png │ ├── monoc.png │ ├── ofc_1.png │ ├── ofc_10.png │ ├── ofc_11.png │ ├── ofc_12.png │ ├── ofc_13.png │ ├── ofc_14.png │ ├── ofc_15.png │ ├── ofc_16.png │ ├── ofc_17.png │ ├── ofc_18.png │ ├── ofc_2.png │ ├── ofc_3.png │ ├── ofc_4.png │ ├── ofc_5.png │ ├── ofc_6.png │ ├── ofc_7.png │ ├── ofc_8.png │ ├── ofc_9.png │ ├── ofco_1.png │ ├── ofco_2.png │ ├── so.png │ ├── st.png │ ├── stc1.png │ ├── stc2.png │ ├── stc2_sc.png │ ├── tri_1.png │ └── tri_2.png ├── pic │ ├── hh_fes.pdf │ ├── sn2_fes.pdf │ ├── sn2_reaction.pdf │ ├── sn2cv.pdf │ └── sn2cvs.pdf ├── plumed_quick_ref.tex ├── quantum_espresso.png ├── quote.tex ├── release-notes └── user_guide.tex ├── EPW ├── .dependencies ├── CMakeLists.txt ├── License ├── Makefile ├── README ├── ZG │ ├── README │ ├── src │ │ ├── Makefile │ │ ├── ZG.f90 │ │ ├── bands_unfold.f90 │ │ ├── disca.f90 │ │ ├── epsilon_Gaus.f90 │ │ ├── local │ │ │ ├── JDOS.sh │ │ │ ├── JDOS_Gaus.f90 │ │ │ ├── commands_bands.sh │ │ │ ├── compile_gfortran.sh │ │ │ ├── compile_ifort.sh │ │ │ ├── create_qlist.f90 │ │ │ ├── epsi_av.sh │ │ │ ├── kpoints_band_str_unfold.f90 │ │ │ ├── merge_bands.sh │ │ │ ├── merge_files.sh │ │ │ └── rotate.f90 │ │ ├── make.depend │ │ ├── pp_disca.f90 │ │ └── pp_spctrlfn.f90 │ └── tutorial.tar.gz ├── bin │ ├── allocate.py │ ├── pp-xml-depreciated.py │ └── pp.py ├── doc │ ├── Ford │ │ └── index.md │ └── graveyard.txt ├── epw.md ├── examples │ ├── diamond │ │ ├── epw │ │ │ ├── epw.in │ │ │ ├── epw2.in │ │ │ ├── epw3.in │ │ │ ├── epw4.in │ │ │ ├── meshes │ │ │ │ ├── kgen.py │ │ │ │ └── path.dat │ │ │ ├── nscf.in │ │ │ ├── out.ref │ │ │ │ ├── decay.H │ │ │ │ ├── decay.P │ │ │ │ ├── decay.dynmat │ │ │ │ ├── decay.epmat_wanep │ │ │ │ ├── decay.epwane │ │ │ │ ├── diam.wout │ │ │ │ ├── epw.out │ │ │ │ ├── epw2.out │ │ │ │ ├── lifetime.phself_34 │ │ │ │ ├── linewidth.elself_50 │ │ │ │ ├── linewidth.phself_50 │ │ │ │ ├── nscf.out │ │ │ │ └── scf.out │ │ │ └── scf.in │ │ ├── phonons │ │ │ ├── Ref │ │ │ │ ├── ph.out │ │ │ │ └── scf.out │ │ │ ├── ph.in │ │ │ ├── pp.py │ │ │ └── scf.in │ │ └── pp │ │ │ └── C_3.98148.UPF │ ├── gan │ │ ├── epw │ │ │ ├── epw.in │ │ │ ├── gan_band.qpt │ │ │ ├── nscf.in │ │ │ └── scf.in │ │ ├── phonons │ │ │ ├── ph.in │ │ │ ├── pp.py │ │ │ └── scf.in │ │ └── pp │ │ │ ├── Ga_ONCV_LDA-1.0.upf │ │ │ └── N_ONCV_LDA-1.0.upf │ ├── mgb2 │ │ ├── epw │ │ │ ├── epw.in │ │ │ ├── nscf.in │ │ │ └── scf.in │ │ ├── phonons │ │ │ ├── ph.in │ │ │ ├── pp.py │ │ │ └── scf.in │ │ └── pp │ │ │ ├── B.pz-vbc.UPF │ │ │ └── Mg.pz-n-vbc.UPF │ ├── pb │ │ ├── pp │ │ │ └── pb_s.UPF │ │ ├── wSOC │ │ │ ├── epw │ │ │ │ ├── epw.in │ │ │ │ ├── nscf.in │ │ │ │ └── scf.in │ │ │ └── phonons │ │ │ │ ├── ph.in │ │ │ │ ├── pp.py │ │ │ │ └── scf.in │ │ └── woSOC │ │ │ ├── epw │ │ │ ├── epw.in │ │ │ ├── nscf.in │ │ │ └── scf.in │ │ │ └── phonons │ │ │ ├── ph.in │ │ │ ├── pp.py │ │ │ └── scf.in │ └── sic │ │ ├── epw │ │ ├── epw.in │ │ ├── meshes │ │ │ └── 10.dat │ │ ├── nscf.in │ │ ├── out.ref │ │ │ ├── decay.H │ │ │ ├── decay.P │ │ │ ├── decay.dynmat │ │ │ ├── decay.epmat_wanep │ │ │ ├── decay.epwane │ │ │ ├── epw.out │ │ │ ├── nscf.out │ │ │ ├── scf.out │ │ │ └── sic.wout │ │ └── scf.in │ │ ├── phonons │ │ ├── out.ref │ │ │ └── scf.out │ │ ├── ph.in │ │ ├── pp.py │ │ └── scf.in │ │ └── pp │ │ ├── C.UPF │ │ └── Si.pz-vbc.UPF └── src │ ├── Makefile │ ├── bcast_epw_input.f90 │ ├── bfield.f90 │ ├── bloch2wan.f90 │ ├── change.sh │ ├── check_deps.sh │ ├── close_epw.f90 │ ├── constants_epw.f90 │ ├── cum_mod.f90 │ ├── division.f90 │ ├── dvqpsi.f90 │ ├── dynmat_asr.f90 │ ├── eliashberg.f90 │ ├── eliashbergcom.f90 │ ├── elph2.f90 │ ├── elphel2_shuffle.f90 │ ├── elphon_shuffle.f90 │ ├── elphon_shuffle_wrap.f90 │ ├── ephwann_shuffle.f90 │ ├── epw.f90 │ ├── epw_init.f90 │ ├── epw_readin.f90 │ ├── epw_setup.f90 │ ├── epw_summary.f90 │ ├── epwcom.f90 │ ├── grid.f90 │ ├── indabs.f90 │ ├── io_eliashberg.f90 │ ├── io_epw.f90 │ ├── io_indabs.f90 │ ├── io_selfen.f90 │ ├── io_transport.f90 │ ├── io_var.f90 │ ├── kfold.f90 │ ├── kgen.f90.prog │ ├── loadbm.f90 │ ├── loadumat.f90 │ ├── low_lvl.f90 │ ├── make.inc │ ├── make.libs │ ├── polaron.f90 │ ├── poolgathering.f90 │ ├── printing.f90 │ ├── pw2wan2epw.f90 │ ├── qdabs.f90 │ ├── read_ahc_files.f90 │ ├── rigid_epw.f90 │ ├── rotate.f90 │ ├── rotate_wavefunction.f90 │ ├── selfen.f90 │ ├── selfen_ahc.f90 │ ├── spectral_func.f90 │ ├── stop_epw.f90 │ ├── supercond.f90 │ ├── supercond_aniso.f90 │ ├── supercond_iso.f90 │ ├── transport.f90 │ ├── transport_iter.f90 │ ├── utilities.f90 │ ├── wan2bloch.f90 │ ├── wannierEPW.f90 │ ├── wannierization.f90 │ ├── wfpt_mod.f90 │ └── wigner.f90 ├── FFTXlib ├── CMakeLists.txt ├── Makefile ├── README.md ├── examples │ ├── reference │ │ └── fft_test0.out │ └── run_example ├── src │ ├── CMakeLists.txt │ ├── Makefile │ ├── fft_buffers.f90 │ ├── fft_error.f90 │ ├── fft_fwinv.f90 │ ├── fft_ggen.f90 │ ├── fft_helper_subroutines.f90 │ ├── fft_interfaces.f90 │ ├── fft_interpolate.f90 │ ├── fft_parallel.f90 │ ├── fft_parallel_2d.f90 │ ├── fft_param.f90 │ ├── fft_scalar.DFTI.f90 │ ├── fft_scalar.ESSL.f90 │ ├── fft_scalar.FFTW.f90 │ ├── fft_scalar.FFTW3.f90 │ ├── fft_scalar.SX6.f90 │ ├── fft_scalar.cuFFT.f90 │ ├── fft_scalar.f90 │ ├── fft_scatter.f90 │ ├── fft_scatter_2d.f90 │ ├── fft_scatter_2d_gpu.f90 │ ├── fft_scatter_gpu.f90 │ ├── fft_smallbox.f90 │ ├── fft_smallbox_type.f90 │ ├── fft_stick.c │ ├── fft_support.f90 │ ├── fft_types.f90 │ ├── fftw.c │ ├── fftw.h │ ├── fftw_dp.c │ ├── fftw_dp.h │ ├── fftw_interfaces.f90 │ ├── fftw_sp.c │ ├── fftw_sp.h │ ├── konst.h │ ├── scatter_mod.f90 │ ├── stick_base.f90 │ └── tg_gather.f90 └── tests │ ├── CMakeLists.txt │ ├── Makefile │ ├── fft_test.f90 │ ├── gen_test_params.py │ ├── recips.f90 │ ├── sort.f90 │ ├── test_fft_scalar_gpu.f90 │ ├── test_fft_scatter_mod_gpu.f90 │ ├── test_fwinv_gpu.f90 │ ├── tester.f90 │ └── utils.f90 ├── GUI ├── CMakeLists.txt ├── Guib │ ├── AUTHORS │ ├── BUGS │ ├── COPYING │ ├── COPYRIGHT │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile │ ├── NEWS │ ├── README │ ├── THANKS │ ├── TODO │ ├── VERSION │ ├── doc │ │ ├── Makefile │ │ ├── diagrams │ │ │ ├── GUI-new.dia │ │ │ ├── GUI-new.png │ │ │ ├── GUI-open.dia │ │ │ ├── GUI-open.png │ │ │ ├── Guib.dia │ │ │ ├── Guib.png │ │ │ ├── Makefile │ │ │ ├── PWgui.dia │ │ │ ├── PWgui.png │ │ │ ├── myGUI.dia │ │ │ ├── myGUI.png │ │ │ ├── myGUI.tcl │ │ │ ├── parsing.dia │ │ │ ├── parsing.png │ │ │ └── topng.sh │ │ ├── robodoc.rc │ │ └── usage.tex │ ├── examples │ │ ├── README │ │ ├── dimension.inp │ │ ├── dimension.tcl │ │ ├── kpoints.inp │ │ ├── kpoints.tcl │ │ ├── pages.inp │ │ ├── pages.tcl │ │ ├── run.sh │ │ ├── simpleSim.inp │ │ ├── simpleSim.tcl │ │ ├── two_pages.tcl │ │ ├── validate.inp │ │ └── validate.tcl │ ├── external │ │ └── lib │ │ │ ├── cmdline │ │ │ ├── cmdline.tcl │ │ │ └── pkgIndex.tcl │ │ │ ├── fileutil │ │ │ ├── fileutil.tcl │ │ │ └── pkgIndex.tcl │ │ │ ├── license.terms │ │ │ └── pkgIndex.tcl │ ├── guib │ ├── guib.bat │ ├── guib.tcl │ ├── guib.theme │ ├── header.tcl │ ├── images │ │ ├── exit2.gif │ │ ├── fileclose2.gif │ │ ├── filenew2.gif │ │ ├── fileopen2.gif │ │ ├── filesave2.gif │ │ ├── filesaveas2.gif │ │ └── icons.license │ ├── init.tcl │ ├── lib │ │ ├── Makefile │ │ ├── aindex │ │ ├── header.tcl │ │ ├── pkgIndex.tcl │ │ ├── tclIndex │ │ ├── tclUtils.tcl │ │ └── tkUtils.tcl │ ├── pkgIndex.tcl │ ├── src │ │ ├── Makefile │ │ ├── aindex │ │ ├── build.itcl │ │ ├── dialogshell.itcl │ │ ├── fnml.tcl │ │ ├── gui.itcl │ │ ├── guib-keywords-def.tcl │ │ ├── guib.itcl │ │ ├── guibKeywords.itcl │ │ ├── guibUtils.itcl │ │ ├── help.itcl │ │ ├── keywidgets.itcl │ │ ├── keywordObj.itcl │ │ ├── moduleObj.itcl │ │ ├── open.itcl │ │ ├── optionmenuhelp.itcl │ │ ├── radioboxhelp.itcl │ │ ├── save.itcl │ │ ├── simpleGui.itcl │ │ ├── spininthelp.itcl │ │ ├── store.itcl │ │ ├── table.itcl │ │ ├── tclIndex │ │ ├── text.itcl │ │ ├── validate.itcl │ │ └── widgets.itcl │ └── sys_utils │ │ ├── mgt.tabs │ │ └── repack.sh ├── Makefile ├── PWgui │ ├── AUTHORS │ ├── BUGS │ ├── COPYING │ ├── COPYRIGHT │ ├── ChangeLog │ ├── INSTALL │ ├── INSTALL.repository │ ├── Makefile │ ├── NEWS │ ├── README │ ├── README.developer │ ├── THANKS │ ├── TODO │ ├── VERSION │ ├── doc │ │ ├── Makefile │ │ └── htmlise.sh │ ├── examples │ │ ├── atomic │ │ │ ├── pt.all_electron.in │ │ │ ├── pt.pseudo_gen.in │ │ │ └── rh.pseudo_test.in │ │ ├── d3 │ │ │ └── sample.d3.inp │ │ ├── neb.dat │ │ │ └── neb.dat │ │ ├── ph │ │ │ └── sample.ph.inp │ │ ├── pp │ │ │ ├── psi2-noncolin.pp.in │ │ │ ├── psi2-v2.pp.inp │ │ │ └── psi2.pp.inp │ │ ├── projwfc │ │ │ └── sample.pr.inp │ │ └── pw │ │ │ ├── Si_band.pw.inp │ │ │ ├── Si_scf.pw.inp │ │ │ ├── abc.scf.in │ │ │ ├── addit-k-points.scf.in │ │ │ ├── additional_k_points │ │ │ ├── al.band.in │ │ │ ├── al.scf.in │ │ │ ├── atomic_positions │ │ │ ├── cu.band.in │ │ │ ├── cu.scf.in │ │ │ ├── hubbard+occup.pw.in │ │ │ ├── hubbard.pw.in │ │ │ ├── k_points │ │ │ ├── ni.band.in │ │ │ ├── ni.scf.in │ │ │ ├── occup+hubbard.pw.in │ │ │ ├── occupations.pw.inp │ │ │ ├── sample.pw.inp │ │ │ ├── si.band.in │ │ │ ├── si.scf.in │ │ │ └── vdw_corr.in │ ├── external │ │ ├── lib │ │ │ ├── Makefile │ │ │ └── license.terms │ │ └── src │ │ │ ├── Makefile │ │ │ ├── license.terms │ │ │ └── tkAppInit.c │ ├── header.tcl │ ├── images │ │ ├── license.terms │ │ ├── pwgui-logo.gif │ │ ├── pwgui-logo.xcf.bz2 │ │ └── pwscf-logo.gif │ ├── init.tcl │ ├── lib │ │ └── .dont-delete │ ├── make.usage │ ├── modules │ │ ├── atomic │ │ │ ├── atomic-event.tcl │ │ │ ├── atomic-help.tcl │ │ │ ├── atomic.tcl │ │ │ └── commands.tcl │ │ ├── bands │ │ │ ├── bands-event.tcl │ │ │ ├── bands-help.tcl │ │ │ ├── bands.tcl │ │ │ └── commands.tcl │ │ ├── d3 │ │ │ ├── commands.tcl │ │ │ ├── d3-event.tcl │ │ │ ├── d3-help.tcl │ │ │ └── d3.tcl │ │ ├── dos │ │ │ ├── commands.tcl │ │ │ ├── dos-event.tcl │ │ │ ├── dos-help.tcl │ │ │ └── dos.tcl │ │ ├── hp │ │ │ ├── commands.tcl │ │ │ ├── hp-event.tcl │ │ │ ├── hp-help.tcl │ │ │ └── hp.tcl │ │ ├── neb │ │ │ ├── commands.tcl │ │ │ ├── neb-event.tcl │ │ │ ├── neb-help.tcl │ │ │ └── neb.tcl │ │ ├── ph │ │ │ ├── commands.tcl │ │ │ ├── ph-event.tcl │ │ │ ├── ph-help.tcl │ │ │ └── ph.tcl │ │ ├── pp │ │ │ ├── commands.tcl │ │ │ ├── pp-event.tcl │ │ │ ├── pp-help.tcl │ │ │ └── pp.tcl │ │ ├── projwfc │ │ │ ├── commands.tcl │ │ │ ├── projwfc-event.tcl │ │ │ ├── projwfc-help.tcl │ │ │ └── projwfc.tcl │ │ └── pw │ │ │ ├── commands.tcl │ │ │ ├── pw-event.tcl │ │ │ ├── pw-help.tcl │ │ │ └── pw.tcl │ ├── pwgui │ ├── pwgui.bat │ ├── pwgui.settings │ ├── pwgui.tcl │ ├── pwgui_vfs │ │ ├── MakeDir.sh │ │ ├── Makefile │ │ ├── README │ │ ├── darwin-ppc.sh │ │ ├── linux-x86.sh │ │ ├── linux-x86_64.sh │ │ ├── make.darwin │ │ ├── make.linux │ │ ├── make.win32 │ │ └── win32.sh │ ├── src │ │ ├── Makefile │ │ ├── about.html │ │ ├── aindex │ │ ├── auxil.itcl │ │ ├── edit.itcl │ │ ├── init.itcl │ │ ├── menustate.itcl │ │ ├── modutil.itcl │ │ ├── pwscf.itcl │ │ ├── pwscf.theme │ │ ├── run.itcl │ │ ├── settings.itcl │ │ ├── tclIndex │ │ └── view.itcl │ ├── sys_utils │ │ ├── bin.sh │ │ ├── make.guib │ │ ├── publish.sh │ │ ├── repack.sh │ │ └── starkit.sh │ └── tests │ │ └── run-tests.sh ├── QE-modes │ ├── Doc │ │ ├── Makefile │ │ ├── highlight.png │ │ ├── insert-template.png │ │ ├── user_guide.pdf │ │ └── user_guide.tex │ ├── Makefile │ ├── README │ ├── README.repository │ ├── THANKS │ ├── install.sh │ ├── qe-modes.emacs │ ├── qe-modes.templates │ │ ├── README │ │ ├── autoload-specific.el.tcl │ │ ├── bands.in │ │ ├── card-noflags.el.tcl │ │ ├── card.el.tcl │ │ ├── cp.in │ │ ├── dos.in │ │ ├── dynmat.in │ │ ├── header.el.tcl │ │ ├── insert-template.el.tcl │ │ ├── ld1.in │ │ ├── namelist.el.tcl │ │ ├── neb.in │ │ ├── ph.in │ │ ├── pp.in │ │ ├── projwfc.in │ │ ├── pw.in │ │ ├── pwtk-mode.el.tcl │ │ ├── qe-all-modes.el │ │ ├── qe-all-modes.el.tcl │ │ ├── qe-funcs.el.tcl │ │ ├── qe-mode.el.tcl │ │ ├── qe-modes.el.tcl │ │ ├── stringvar.el.tcl │ │ ├── supercard-open.el.tcl │ │ ├── supercard.el.tcl │ │ └── var.el.tcl │ └── qe-modes │ │ ├── cp-mode.el │ │ ├── ld1-mode.el │ │ ├── neb-mode.el │ │ ├── ph-mode.el │ │ ├── pp-mode.el │ │ ├── pw-mode.el │ │ ├── pwtk-mode.el │ │ ├── qe-funcs.el │ │ ├── qe-mode.el │ │ └── qe-modes.el └── README ├── GWW ├── CMakeLists.txt ├── Makefile ├── bse │ ├── Makefile │ ├── absorption.f90 │ ├── bse_basic_structure.f90 │ ├── bse_main.f90 │ ├── bse_wannier.f90 │ ├── cgsolve.f90 │ ├── check_basis.f90 │ ├── conj_grad_stuff.f90 │ ├── conjgrad.f90 │ ├── contract_w_exc.f90 │ ├── diago_exc.f90 │ ├── direct_v_exc.f90 │ ├── direct_w_exc.f90 │ ├── direct_www.f90 │ ├── dvpsi_bse.f90 │ ├── exc_h_a.f90 │ ├── exchange_exc.f90 │ ├── exciton.f90 │ ├── find_eig.f90 │ ├── h_h.f90 │ ├── lanczos.f90 │ ├── openfil_bse.f90 │ ├── plot_excwfn.f90 │ ├── print_bse.f90 │ ├── print_spectrum.f90 │ ├── qpcorrections.f90 │ ├── qpe_exc.f90 │ ├── read_export.f90 │ ├── rotate_wannier.f90 │ ├── sdescent.f90 │ ├── spectrum.f90 │ ├── start_bse.f90 │ ├── tmp.f90 │ ├── transitions.f90 │ ├── tspace.f90 │ └── write_wannier_matrix.f90 ├── doc │ ├── README │ └── make.sys_SCALAPACK ├── examples │ ├── README │ ├── example01 │ │ ├── methane_gww.in │ │ ├── methane_gww_steps.in │ │ ├── methane_pw4gww.in │ │ ├── methane_pw4gww_basis.in │ │ ├── methane_pw4gww_steps.in │ │ ├── methane_scf.in │ │ ├── methane_scf_25.in │ │ ├── methane_scf_35.in │ │ ├── reference │ │ │ ├── methane_gww.out │ │ │ ├── methane_pw4gww.out │ │ │ └── methane_scf.out │ │ └── run_example │ ├── example02 │ │ ├── reference │ │ │ ├── si_gww.out │ │ │ ├── si_head.out │ │ │ ├── si_nscf.out │ │ │ ├── si_pw4gww.out │ │ │ └── si_scf_k.out │ │ ├── run_example │ │ ├── si_gww.in │ │ ├── si_head.in │ │ ├── si_nscf.in │ │ ├── si_pw4gww.in │ │ ├── si_pw4gww_planewaves.in │ │ └── si_scf_k.in │ ├── example03 │ │ └── run_example │ ├── example04 │ │ ├── Ag_ONCV_PBE-1.0.upf │ │ ├── README │ │ ├── reference │ │ │ ├── ag.dos_broadening.dat │ │ │ ├── ag.eels.dat │ │ │ ├── ag.eps_inter_im.dat │ │ │ ├── ag.eps_inter_re.dat │ │ │ ├── ag.eps_tot_im.dat │ │ │ ├── ag.eps_tot_re.dat │ │ │ ├── ag.jdos.dat │ │ │ ├── ag.optical_constants.dat │ │ │ ├── ag_nscf.in │ │ │ ├── ag_nscf.out │ │ │ ├── ag_scf.in │ │ │ ├── ag_scf.out │ │ │ ├── ag_simple.in │ │ │ ├── ag_simple.out │ │ │ ├── ag_simple_ip.in │ │ │ ├── ag_simple_ip.out │ │ │ └── pippo.txt │ │ └── run_example │ ├── example05 │ │ ├── reference │ │ │ ├── ab_coeff.dat │ │ │ ├── abcoeff_to_eps.in │ │ │ ├── abcoeff_to_eps.tmp │ │ │ ├── lanczos.eps1x.dat │ │ │ ├── lanczos.eps1y.dat │ │ │ ├── lanczos.eps1z.dat │ │ │ ├── lanczos.eps2x.dat │ │ │ ├── lanczos.eps2y.dat │ │ │ ├── lanczos.eps2z.dat │ │ │ ├── si_gww.in │ │ │ ├── si_gww.out │ │ │ ├── si_head.in │ │ │ ├── si_head.out │ │ │ ├── si_nscf.in │ │ │ ├── si_nscf.out │ │ │ ├── si_nscf_k.in │ │ │ ├── si_nscf_k.out │ │ │ ├── si_pw4gww.in │ │ │ ├── si_pw4gww.out │ │ │ ├── si_scf_k.in │ │ │ ├── si_scf_k.out │ │ │ ├── si_simple.in │ │ │ ├── si_simple.out │ │ │ ├── si_simple_bse.in │ │ │ └── si_simple_bse.out │ │ └── run_example │ └── example06 │ │ ├── reference │ │ ├── silane_bse.out │ │ ├── silane_pw4gww.out │ │ └── silane_scf.out │ │ └── run_example ├── gww │ ├── Makefile │ ├── basic_structures.f90 │ ├── compact_product.f90 │ ├── contour.f90 │ ├── create_hf.f90 │ ├── create_quasi_particle.f90 │ ├── create_quasi_particle_off.f90 │ ├── do_contour.f90 │ ├── do_polarization_lanczos.f90 │ ├── do_self_lanczos.f90 │ ├── do_self_lanczos_full.f90 │ ├── do_self_lanczos_time.f90 │ ├── energies_gww.f90 │ ├── expansion.f90 │ ├── fft_gw.f90 │ ├── fit_multipole.f90 │ ├── fit_polynomial.f90 │ ├── go_dressed_w.f90 │ ├── go_exchange.f90 │ ├── go_fft.f90 │ ├── go_green.f90 │ ├── go_polarization.f90 │ ├── green_function.f90 │ ├── gv_time.f90 │ ├── gww.f90 │ ├── gww_fit.f90 │ ├── input_gw.f90 │ ├── lanczos_polarization.f90 │ ├── para_gww.f90 │ ├── polarization.f90 │ ├── read_data_pw.f90 │ ├── remainder.f90 │ ├── self_energy.f90 │ ├── self_energy_storage.f90 │ ├── start_end.f90 │ ├── times_gw.f90 │ └── vcprim.f90 ├── head │ ├── Makefile │ ├── bcast_gwl_input.f90 │ ├── close_gwl.f90 │ ├── gwl_readin.f90 │ ├── head.f90 │ ├── lanczos_k.f90 │ ├── openfilq_gwl.f90 │ └── solve_head.f90 ├── minpack │ ├── Makefile │ ├── dpmpar.f90 │ ├── enorm.f90 │ ├── fdjac2.f90 │ ├── lmder.f90 │ ├── lmder1.f90 │ ├── lmdif.f90 │ ├── lmdif1.f90 │ ├── lmpar.f90 │ ├── mlagzo.f90 │ ├── mlegzo.f90 │ ├── qrfac.f90 │ ├── qrsolv.f90 │ └── test.f90 ├── pw4gww │ ├── Makefile │ ├── allocate_wannier.f90 │ ├── calculate_wing.f90 │ ├── cgsolve_all_gamma.f90 │ ├── contour_terms.f90 │ ├── convergence.f90 │ ├── dft_exchange.f90 │ ├── diago_cg.f90 │ ├── diago_cg_g.f90 │ ├── easy_gw.f90 │ ├── energies_xc.f90 │ ├── exchange_custom.f90 │ ├── fake_conduction.f90 │ ├── fft_custom.f90 │ ├── full.f90 │ ├── gww_realus.f90 │ ├── hpsi_pw4gww.f90 │ ├── lanczos_chains.f90 │ ├── matrix_wannier_gamma.f90 │ ├── mp_wave_parallel.f90 │ ├── o_1psi.f90 │ ├── o_bands.f90 │ ├── o_rinitcgg.f90 │ ├── openfil_pw4gww.f90 │ ├── operator_1_vp.f90 │ ├── operator_debug.f90 │ ├── optimal.f90 │ ├── pola_lanczos.f90 │ ├── pola_partial.f90 │ ├── produce_wannier_gamma.f90 │ ├── pw4gww.f90 │ ├── rotate_wannier.f90 │ ├── self_lanczos.f90 │ ├── semicore.f90 │ ├── semicore_read.f90 │ ├── start_pw4gww.f90 │ ├── stop_pp.f90 │ ├── v_basis.f90 │ ├── wannier.f90 │ ├── wannier_bse.f90 │ ├── wannier_uterms.f90 │ ├── wfc_real.f90 │ ├── write_vpot_matrix.f90 │ └── write_wannier_matrix.f90 ├── simple │ ├── Makefile │ ├── commutator.f90 │ ├── epe.f90 │ ├── gk_sort_limit.f90 │ ├── input_simple.f90 │ ├── khamiltonian.f90 │ ├── openfile_simple.f90 │ ├── product_basis.f90 │ ├── read_export.f90 │ ├── simple.f90 │ ├── stop_pp.f90 │ ├── v_product.f90 │ └── wfc_basis.f90 ├── simple_bse │ ├── Makefile │ ├── build_eemat.f90 │ ├── derived_object.f90 │ ├── diago_exc_cg.f90 │ ├── diago_exc_sd.f90 │ ├── hamiltonian.f90 │ ├── input_simple_exc.f90 │ ├── lanczos.f90 │ ├── simple_bse.f90 │ ├── simple_eigen.f90 │ ├── simple_object.f90 │ ├── spectrum.f90 │ └── start_end.f90 ├── simple_ip │ ├── Makefile │ ├── diagonalization.f90 │ ├── dielectric.f90 │ ├── input_simple_ip.f90 │ ├── interpolation.f90 │ ├── simple_ip.f90 │ ├── simple_ip_objects.f90 │ ├── start_end.f90 │ ├── tetra_mod1.f90 │ └── tetra_mod2.f90 └── util │ ├── Makefile │ ├── abcoeff_to_eps.f90 │ ├── graph.f90 │ └── memory_pw4gww.f90 ├── HP ├── CMakeLists.txt ├── Doc │ ├── INPUT_HP.def │ ├── INPUT_HP.html │ ├── INPUT_HP.txt │ ├── Makefile │ └── README ├── Makefile ├── examples │ ├── README │ ├── clean_all │ ├── example01 │ │ ├── reference │ │ │ ├── LiCoO2.Hubbard_parameters.dat │ │ │ ├── LiCoO2.hp.in │ │ │ └── LiCoO2.scf.in │ │ └── run_example │ ├── example02 │ │ ├── README │ │ ├── reference │ │ │ ├── NiO.Hubbard_parameters.dat │ │ │ ├── NiO.hp.in │ │ │ ├── NiO.scf1.in │ │ │ └── NiO.scf2.in │ │ └── run_example │ ├── example03 │ │ ├── reference │ │ │ ├── CrI3.Hubbard_parameters.dat │ │ │ ├── CrI3.hp.in │ │ │ ├── CrI3.scf1.in │ │ │ └── CrI3.scf2.in │ │ └── run_example │ ├── example04 │ │ ├── reference │ │ │ ├── Ni.Hubbard_parameters.dat │ │ │ ├── Ni.hp.in │ │ │ └── Ni.scf.in │ │ └── run_example │ ├── example05 │ │ ├── reference │ │ │ ├── LiCoO2.Hubbard_parameters.dat │ │ │ ├── LiCoO2.hp.in │ │ │ └── LiCoO2.scf.in │ │ └── run_example │ ├── example06 │ │ ├── reference │ │ │ ├── Ni2MnGa.Hubbard_parameters.dat │ │ │ ├── Ni2MnGa.hp.Mn.in │ │ │ ├── Ni2MnGa.hp.Ni.in │ │ │ ├── Ni2MnGa.hp.final.in │ │ │ └── Ni2MnGa.scf.in │ │ └── run_example │ ├── example07 │ │ ├── reference │ │ │ ├── Ni2MnGa.Hubbard_parameters.dat │ │ │ ├── Ni2MnGa.hp.Mn.step1.in │ │ │ ├── Ni2MnGa.hp.Mn.step2.in │ │ │ ├── Ni2MnGa.hp.Mn.step3.in │ │ │ ├── Ni2MnGa.hp.Ni.step1.in │ │ │ ├── Ni2MnGa.hp.Ni.step2.in │ │ │ ├── Ni2MnGa.hp.Ni.step3.in │ │ │ ├── Ni2MnGa.hp.final.in │ │ │ └── Ni2MnGa.scf.in │ │ └── run_example │ ├── example08 │ │ ├── reference │ │ │ ├── NiO2.Hubbard_parameters.dat │ │ │ ├── NiO2.hp.in │ │ │ └── NiO2.scf.in │ │ └── run_example │ ├── example09 │ │ ├── reference │ │ │ ├── CoO2.Hubbard_parameters.dat │ │ │ ├── CoO2.hp.in │ │ │ └── CoO2.scf.in │ │ └── run_example │ ├── example10 │ │ ├── reference │ │ │ ├── HUBBARD.dat │ │ │ ├── LiCoO2.Hubbard_parameters.dat │ │ │ ├── LiCoO2.hp.in │ │ │ └── LiCoO2.scf.in │ │ └── run_example │ └── run_all_examples └── src │ ├── Makefile │ ├── hp_R_points.f90 │ ├── hp_allocate_q.f90 │ ├── hp_bcast_input.f90 │ ├── hp_calc_chi.f90 │ ├── hp_check_pert.f90 │ ├── hp_check_type.f90 │ ├── hp_clean_q.f90 │ ├── hp_close_q.f90 │ ├── hp_dealloc_1.f90 │ ├── hp_dealloc_2.f90 │ ├── hp_dealloc_q.f90 │ ├── hp_dnsq.f90 │ ├── hp_dnstot_sum_q.f90 │ ├── hp_dvpsi_pert.f90 │ ├── hp_find_inequiv_sites.f90 │ ├── hp_generate_grids.f90 │ ├── hp_init.f90 │ ├── hp_init_q.f90 │ ├── hp_load_q.f90 │ ├── hp_main.f90 │ ├── hp_ns_trace.f90 │ ├── hp_openfil_q.f90 │ ├── hp_postproc.f90 │ ├── hp_prepare_q.f90 │ ├── hp_print_clock.f90 │ ├── hp_psym_dmag.f90 │ ├── hp_psymdvscf.f90 │ ├── hp_q_points.f90 │ ├── hp_read_chi.f90 │ ├── hp_read_dnsq.f90 │ ├── hp_readin.f90 │ ├── hp_rotate_dnsq.f90 │ ├── hp_run_nscf.f90 │ ├── hp_setup_q.f90 │ ├── hp_solve_linear_system.f90 │ ├── hp_stop_smoothly.f90 │ ├── hp_summary.f90 │ ├── hp_summary_q.f90 │ ├── hp_sym_dmag.f90 │ ├── hp_symdnsq.f90 │ ├── hp_symdvscf.f90 │ ├── hp_write_chi.f90 │ ├── hp_write_chi_full.f90 │ ├── hp_write_dnsq.f90 │ └── hpcom.f90 ├── KCW ├── CMakeLists.txt ├── Doc │ ├── INPUT_kcw.def │ ├── INPUT_kcw.html │ ├── INPUT_kcw.txt │ ├── Makefile │ └── input_xx.xsl ├── Makefile ├── PP │ ├── CMakeLists.txt │ ├── Makefile │ ├── bcast_kcw_pp_input.f90 │ ├── compute_self_hartree.f90 │ ├── input_pp_summary.f90 │ ├── interp_r_to_k.f90 │ ├── kcw_bands.f90 │ ├── kcw_pp_readin.f90 │ ├── makedeps.sh │ ├── read_hr.f90 │ ├── sh_setup.f90 │ └── ups.f90 ├── examples │ └── run_all.sh ├── kcw.md └── src │ ├── CMakeLists.txt │ ├── Makefile │ ├── alpha_corr.f90 │ ├── apply_u_matrix.f90 │ ├── bare_pot.f90 │ ├── bcast_kcw_input.f90 │ ├── bcast_wfc.f90 │ ├── calculate_phase.f90 │ ├── clean_pw_kcw.f90 │ ├── close_kcw.f90 │ ├── compute_map_ikq.f90 │ ├── compute_map_ikq_single.f90 │ ├── convert_kpts_names.f90 │ ├── coulomb.f90 │ ├── full_ham.f90 │ ├── group_orbitals.f90 │ ├── ham_R0_2nd.f90 │ ├── hamilt.f90 │ ├── input_summary.f90 │ ├── interpolation.f90 │ ├── kcw.f90 │ ├── kcw_R_points.f90 │ ├── kcw_allocate_q.f90 │ ├── kcw_comm.f90 │ ├── kcw_deallocate_q.f90 │ ├── kcw_ham.f90 │ ├── kcw_init_q.f90 │ ├── kcw_initialize_ph.f90 │ ├── kcw_io_new.f90 │ ├── kcw_openfilq.f90 │ ├── kcw_prepare_q.f90 │ ├── kcw_q_setup.f90 │ ├── kcw_readin.f90 │ ├── kcw_run_nscf.f90 │ ├── kcw_screen.f90 │ ├── kcw_setup.f90 │ ├── kcw_setup_ham.f90 │ ├── kcw_setup_screen.f90 │ ├── koopmans_ham.f90 │ ├── ks_hamiltonian.f90 │ ├── makedeps.sh │ ├── print_clock_kcw.f90 │ ├── read_alpha.f90 │ ├── read_wannier.f90 │ ├── rho_of_q.f90 │ ├── rotate_ks.f90 │ ├── screen_coeff.f90 │ ├── self_hartree.f90 │ ├── setup_coulomb.f90 │ ├── setup_coulomb_exx.f90 │ ├── solve_linter_koop_mod.f90 │ ├── structure_factor.f90 │ ├── wann2kcw.f90 │ └── write_hr_to_file.f90 ├── KS_Solvers ├── CG │ ├── Makefile │ ├── ccgdiagg.f90 │ ├── ccgdiagg_gpu.f90 │ ├── rcgdiagg.f90 │ └── rcgdiagg_gpu.f90 ├── CMakeLists.txt ├── DENSE │ ├── Makefile │ ├── gram_schmidt_gamma.f90 │ ├── gram_schmidt_gamma_gpu.f90 │ ├── gram_schmidt_k.f90 │ ├── gram_schmidt_k_gpu.f90 │ ├── rotate_HSpsi_gamma.f90 │ ├── rotate_HSpsi_k.f90 │ ├── rotate_driver.f90 │ ├── rotate_driver_cuf.f90 │ ├── rotate_wfc_gamma.f90 │ ├── rotate_wfc_gamma_gpu.f90 │ ├── rotate_wfc_k.f90 │ ├── rotate_wfc_k_gpu.f90 │ ├── rotate_xpsi_gamma.f90 │ ├── rotate_xpsi_gamma_gpu.f90 │ ├── rotate_xpsi_k.f90 │ └── rotate_xpsi_k_gpu.f90 ├── Davidson │ ├── Makefile │ ├── cegterg.f90 │ ├── cegterg_gpu.f90 │ ├── regterg.f90 │ └── regterg_gpu.f90 ├── Davidson_RCI │ ├── Makefile │ └── david_rci.f90 ├── Makefile ├── PPCG │ ├── Makefile │ ├── generic_cublas.f90 │ ├── ppcg_gamma.f90 │ ├── ppcg_gamma_gpu.f90 │ ├── ppcg_k.f90 │ └── ppcg_k_gpu.f90 ├── ParO │ ├── Makefile │ ├── bpcg_gamma.f90 │ ├── bpcg_k.f90 │ ├── paro_gamma.f90 │ ├── paro_gamma_new.f90 │ ├── paro_k.f90 │ ├── paro_k_new.f90 │ ├── pcg_gamma.f90 │ └── pcg_k.f90 ├── RMM │ ├── Makefile │ ├── crmmdiagg.f90 │ ├── crmmdiagg_gpu.f90 │ ├── rrmmdiagg.f90 │ └── rrmmdiagg_gpu.f90 └── ks_solver_interfaces.h ├── LAXlib ├── CMakeLists.txt ├── Makefile ├── README.TEST ├── cdiaghg.f90 ├── distools.f90 ├── dspev_drv.f90 ├── la_error.f90 ├── la_helper.f90 ├── la_module.f90 ├── la_param.f90 ├── la_types.f90 ├── laxlib.h ├── laxlib_hi.h ├── laxlib_kinds.h ├── laxlib_low.h ├── laxlib_mid.h ├── laxlib_param.h ├── mp_diag.f90 ├── ptoolkit.f90 ├── rdiaghg.f90 ├── test.f90 ├── tests │ ├── .gitattributes │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── ZnOG1.bin │ ├── ZnOG2.bin │ ├── ZnOK1.bin │ ├── ZnOK2.bin │ ├── mp_world.f90 │ ├── test_diaghg_1.f90 │ ├── test_diaghg_2.f90 │ ├── test_diaghg_3.f90 │ ├── test_diaghg_4.f90 │ ├── test_diaghg_gpu_1.f90 │ ├── test_diaghg_gpu_2.f90 │ ├── test_diaghg_gpu_3.f90 │ ├── test_diaghg_gpu_4.f90 │ ├── test_helpers.f90 │ ├── test_io.f90 │ ├── test_lapack_zdotc.f90 │ ├── tester.f90 │ └── utils.f90 ├── transto.f90 └── zhpev_drv.f90 ├── LR_Modules ├── CMakeLists.txt ├── Coul_cut_2D_ph.f90 ├── Makefile ├── adddvepsi_us.f90 ├── adddvhubscf.f90 ├── adddvscf.f90 ├── addusdbec.f90 ├── addusdbec_nc.f90 ├── addusddenseq.f90 ├── addusldos.f90 ├── apply_dpot.f90 ├── apply_dpot_mod.f90 ├── apply_trev.f90 ├── c_bands_ph.f90 ├── ccg_psi.f90 ├── ccgsolve_all.f90 ├── cft_wave.f90 ├── cg_psi.f90 ├── cgsolve_all.f90 ├── ch_psi_all.f90 ├── ch_psi_all_complex.f90 ├── check_q_points_sym.f90 ├── compute_vsgga.f90 ├── dfpt_tetra_mod.f90 ├── dgradcorr.f90 ├── dnonloccorr.f90 ├── dv_of_drho.f90 ├── dv_rVV10.f90 ├── dv_vdW_DF.f90 ├── dynmat_sub.f90 ├── efermi_shift.f90 ├── h_prec.f90 ├── incdrhoscf.f90 ├── incdrhoscf_nc.f90 ├── lanczos_nonhermitian.f90 ├── lanczos_nonhermitian_c.f90 ├── lanczos_pseudohermitian.f90 ├── lanczos_pseudohermitian_c.f90 ├── localdos.f90 ├── lr_addusddens.f90 ├── lr_dot.f90 ├── lr_dot_magnons.f90 ├── lr_orthoUwfc.f90 ├── lr_sm1_psi.f90 ├── lr_sym_mod.f90 ├── lrcom.f90 ├── mix_pot.f90 ├── mode_group.f90 ├── newdq.f90 ├── non_scf_ph.f90 ├── orthogonalize.f90 ├── qdipol_cryst.f90 ├── response_kernels.f90 ├── set_dbecsum_nc.f90 ├── set_int3_nc.f90 ├── set_intq_nc.f90 ├── set_kplusq_nc.f90 ├── set_small_group_of_q.f90 ├── setqmod.f90 ├── setup_alpha_pv.f90 ├── setup_dgc.f90 ├── setup_dmuxc.f90 ├── setup_nbnd_occ.f90 ├── setup_nscf.f90 ├── sgam_lr.f90 ├── smallgq.f90 └── star_q.f90 ├── License ├── Makefile ├── Modules ├── CMakeLists.txt ├── Makefile ├── additional_kpoints.f90 ├── allocate_fft_3drism.f90 ├── atom_weight.f90 ├── atomic_wfc_mod.f90 ├── autopilot.f90 ├── basic_algebra_routines.f90 ├── becmod.f90 ├── bfgs_module.f90 ├── bspline.f90 ├── bz_form.f90 ├── capital.f90 ├── cell_base.f90 ├── check_stop.f90 ├── chempot.f90 ├── chempot_lauerism.f90 ├── closure.f90 ├── command_line_options.f90 ├── compute_dipole.f90 ├── constants.f90 ├── constraints_module.f90 ├── control_flags.f90 ├── corrdipole_laue.f90 ├── correctat0_vv.f90 ├── corrgxy0_laue.f90 ├── coulomb_vcut.f90 ├── cryst_to_car.f90 ├── cryst_to_car_2d.f90 ├── cuda_subroutines.f90 ├── customize_signals.c ├── data_structure_3drism.f90 ├── date_and_tim.f90 ├── deviatoric.f90 ├── dist.f90 ├── do_1drism.f90 ├── do_3drism.f90 ├── do_lauerism.f90 ├── electrons_base.f90 ├── environ_api_stub.f90 ├── environ_base_module.f90 ├── environment.f90 ├── eqn_1drism.f90 ├── eqn_3drism.f90 ├── eqn_lauedipole.f90 ├── eqn_lauegxy0.f90 ├── eqn_lauelong.f90 ├── eqn_lauerism.f90 ├── eqn_laueshort.f90 ├── eqn_lauevoid.f90 ├── err_rism.f90 ├── expint.f90 ├── extffield.f90 ├── fd_gradient.f90 ├── fft_base.f90 ├── fft_rho.f90 ├── fft_wave.f90 ├── fox_init_module.f90 ├── fsockets.f90 ├── funct.f90 ├── generate_function.f90 ├── generate_k_along_lines.f90 ├── gradutils.f90 ├── guess_3drism.f90 ├── gvecw.f90 ├── has_xml.f90 ├── hdf5_qe.f90 ├── init_1drism.f90 ├── init_3drism.f90 ├── inpfile.f90 ├── input_1drism.f90 ├── input_3drism.f90 ├── input_parameters.f90 ├── int_to_char.f90 ├── invmat.f90 ├── io_base.f90 ├── io_files.f90 ├── io_global.f90 ├── io_rism_xml.f90 ├── ions_base.f90 ├── kind.f90 ├── latgen.f90 ├── lauefft.f90 ├── lauefft_subs.f90 ├── linpack.f90 ├── lj_forcefield.f90 ├── lj_solute.f90 ├── lmdif.f90 ├── makov_payne.f90 ├── matches.f90 ├── mbdlib.f90 ├── mdiis.f90 ├── mm_dispersion.f90 ├── molebridge_vv.f90 ├── molecorr_vv.f90 ├── molecule_const.f90 ├── molecule_types.f90 ├── more_functionals.f90 ├── mp_bands.f90 ├── mp_exx.f90 ├── mp_global.f90 ├── mp_images.f90 ├── mp_pools.f90 ├── mp_rism.f90 ├── mp_swap_ax_rism.f90 ├── mp_wave.f90 ├── mp_world.f90 ├── noncol.f90 ├── normalize_lauerism.f90 ├── open_close_input_file.f90 ├── parameters.f90 ├── parser.f90 ├── plot_io.f90 ├── plot_rism.f90 ├── plugin_arguments.f90 ├── plugin_flags.f90 ├── plugin_variables.f90 ├── potential_3drism.f90 ├── potential_esm.f90 ├── potential_vv.f90 ├── print_chempot_3drism.f90 ├── print_chempot_lauerism.f90 ├── print_chempot_vv.f90 ├── print_corr_vv.f90 ├── print_solvavg.f90 ├── printout_base.f90 ├── pw_dot.f90 ├── qeh5_module.f90 ├── qes_bcast_module.f90 ├── qes_init_module.f90 ├── qes_libs_module.f90 ├── qes_read_module.f90 ├── qes_reset_module.f90 ├── qes_types_module.f90 ├── qes_write_module.f90 ├── qexsd.f90 ├── qexsd_copy.f90 ├── qexsd_init.f90 ├── qexsd_input.f90 ├── qmmm.f90 ├── qmmm_aux.c ├── radfft.f90 ├── radial_gradients.f90 ├── random_numbers.f90 ├── random_numbers_gpu.f90 ├── read_cards.f90 ├── read_input.f90 ├── read_mol.f90 ├── read_namelists.f90 ├── read_pseudo.f90 ├── read_solv.f90 ├── recips.f90 ├── recvec.f90 ├── recvec_3drism.f90 ├── recvec_subs.f90 ├── remove_tot_torque.f90 ├── rgen.f90 ├── rism.f90 ├── rism1d_facade.f90 ├── rism3d_facade.f90 ├── rms_residual.f90 ├── run_info.f90 ├── scale_fft_3drism.f90 ├── scale_fft_lauerism.f90 ├── set_para_diag.f90 ├── set_signal.f90 ├── set_vdw_corr.f90 ├── setqf.f90 ├── sockets.c ├── solute.f90 ├── solvation_3drism.f90 ├── solvation_esm.f90 ├── solvation_force.f90 ├── solvation_lauerism.f90 ├── solvation_pbc.f90 ├── solvation_stress.f90 ├── solvavg.f90 ├── solvmol.f90 ├── sort.f90 ├── space_group.f90 ├── stack.c ├── summary_1drism.f90 ├── summary_3drism.f90 ├── suscept_g0.f90 ├── suscept_laue.f90 ├── suscept_laueint.f90 ├── suscept_vv.f90 ├── test_input_file.f90 ├── timestep.f90 ├── trimcheck.f90 ├── tsvdw.f90 ├── version.f90 ├── volume.f90 ├── w0gauss.f90 ├── w1gauss.f90 ├── wannier_gw.f90 ├── wannier_new.f90 ├── wave_gauge.f90 ├── wavefunctions.f90 ├── wavefunctions_gpu.f90 ├── wgauss.f90 ├── write_rism_type.f90 ├── ws_base.f90 ├── wyckoff.f90 ├── wypos.f90 ├── xc_rVV10.f90 ├── xc_vdW_DF.f90 ├── xml_io_rism.f90 ├── xsf.f90 └── zvscal.f90 ├── NEB ├── CMakeLists.txt ├── Doc │ ├── INPUT_NEB.def │ ├── INPUT_NEB.html │ ├── INPUT_NEB.txt │ ├── Makefile │ ├── user_guide.pdf │ └── user_guide.tex ├── Makefile ├── examples │ ├── ESM_example │ │ ├── README │ │ ├── reference │ │ │ ├── Al001+H_FCP_vm05.axsf │ │ │ ├── Al001+H_FCP_vm05.crd │ │ │ ├── Al001+H_FCP_vm05.dat │ │ │ ├── Al001+H_FCP_vm05.int │ │ │ ├── Al001+H_FCP_vm05.path │ │ │ ├── Al001+H_FCP_vm05.xyz │ │ │ ├── Al001+H_FCP_vm05_1 │ │ │ │ ├── Al001+H_FCP_vm05.esm1 │ │ │ │ └── Al001+H_FCP_vm05.xml │ │ │ ├── Al001+H_FCP_vm05_2 │ │ │ │ ├── Al001+H_FCP_vm05.esm1 │ │ │ │ └── Al001+H_FCP_vm05.xml │ │ │ ├── Al001+H_FCP_vm05_3 │ │ │ │ ├── Al001+H_FCP_vm05.esm1 │ │ │ │ └── Al001+H_FCP_vm05.xml │ │ │ ├── Al001+H_FCP_vm05_4 │ │ │ │ ├── Al001+H_FCP_vm05.esm1 │ │ │ │ └── Al001+H_FCP_vm05.xml │ │ │ ├── Al001+H_FCP_vm05_5 │ │ │ │ ├── Al001+H_FCP_vm05.esm1 │ │ │ │ └── Al001+H_FCP_vm05.xml │ │ │ ├── Al001+H_GCSCF_vm05.axsf │ │ │ ├── Al001+H_GCSCF_vm05.crd │ │ │ ├── Al001+H_GCSCF_vm05.dat │ │ │ ├── Al001+H_GCSCF_vm05.int │ │ │ ├── Al001+H_GCSCF_vm05.path │ │ │ ├── Al001+H_GCSCF_vm05.xyz │ │ │ ├── Al001+H_GCSCF_vm05_1 │ │ │ │ ├── Al001+H_GCSCF_vm05.esm1 │ │ │ │ └── Al001+H_GCSCF_vm05.xml │ │ │ ├── Al001+H_GCSCF_vm05_2 │ │ │ │ ├── Al001+H_GCSCF_vm05.esm1 │ │ │ │ └── Al001+H_GCSCF_vm05.xml │ │ │ ├── Al001+H_GCSCF_vm05_3 │ │ │ │ ├── Al001+H_GCSCF_vm05.esm1 │ │ │ │ └── Al001+H_GCSCF_vm05.xml │ │ │ ├── Al001+H_GCSCF_vm05_4 │ │ │ │ ├── Al001+H_GCSCF_vm05.esm1 │ │ │ │ └── Al001+H_GCSCF_vm05.xml │ │ │ ├── Al001+H_GCSCF_vm05_5 │ │ │ │ ├── Al001+H_GCSCF_vm05.esm1 │ │ │ │ └── Al001+H_GCSCF_vm05.xml │ │ │ ├── Al001+H_bc3.axsf │ │ │ ├── Al001+H_bc3.crd │ │ │ ├── Al001+H_bc3.dat │ │ │ ├── Al001+H_bc3.int │ │ │ ├── Al001+H_bc3.path │ │ │ ├── Al001+H_bc3.xyz │ │ │ ├── Al001+H_bc3_1 │ │ │ │ ├── Al001+H_bc3.esm1 │ │ │ │ └── Al001+H_bc3.xml │ │ │ ├── Al001+H_bc3_2 │ │ │ │ ├── Al001+H_bc3.esm1 │ │ │ │ └── Al001+H_bc3.xml │ │ │ ├── Al001+H_bc3_3 │ │ │ │ ├── Al001+H_bc3.esm1 │ │ │ │ └── Al001+H_bc3.xml │ │ │ ├── Al001+H_bc3_4 │ │ │ │ ├── Al001+H_bc3.esm1 │ │ │ │ └── Al001+H_bc3.xml │ │ │ ├── Al001+H_bc3_5 │ │ │ │ ├── Al001+H_bc3.esm1 │ │ │ │ └── Al001+H_bc3.xml │ │ │ ├── Al001+H_bc3_n215.axsf │ │ │ ├── Al001+H_bc3_n215.crd │ │ │ ├── Al001+H_bc3_n215.dat │ │ │ ├── Al001+H_bc3_n215.int │ │ │ ├── Al001+H_bc3_n215.path │ │ │ ├── Al001+H_bc3_n215.xyz │ │ │ ├── Al001+H_bc3_n215_1 │ │ │ │ ├── Al001+H_bc3_n215.esm1 │ │ │ │ └── Al001+H_bc3_n215.xml │ │ │ ├── Al001+H_bc3_n215_2 │ │ │ │ ├── Al001+H_bc3_n215.esm1 │ │ │ │ └── Al001+H_bc3_n215.xml │ │ │ ├── Al001+H_bc3_n215_3 │ │ │ │ ├── Al001+H_bc3_n215.esm1 │ │ │ │ └── Al001+H_bc3_n215.xml │ │ │ ├── Al001+H_bc3_n215_4 │ │ │ │ ├── Al001+H_bc3_n215.esm1 │ │ │ │ └── Al001+H_bc3_n215.xml │ │ │ └── Al001+H_bc3_n215_5 │ │ │ │ ├── Al001+H_bc3_n215.esm1 │ │ │ │ └── Al001+H_bc3_n215.xml │ │ ├── run_example │ │ ├── run_example_ESM │ │ ├── run_example_FCP │ │ └── run_example_GCSCF │ ├── check-neb.x.j │ ├── clean_all │ ├── example01 │ │ ├── README │ │ ├── reference │ │ │ ├── H2+H.axsf │ │ │ ├── H2+H.dat │ │ │ ├── H2+H.int │ │ │ ├── H2+H.out │ │ │ ├── H2+H.path │ │ │ ├── H2+H.xyz │ │ │ ├── asymmetric_H2+H.axsf │ │ │ ├── asymmetric_H2+H.dat │ │ │ ├── asymmetric_H2+H.int │ │ │ ├── asymmetric_H2+H.out │ │ │ ├── asymmetric_H2+H.path │ │ │ ├── asymmetric_H2+H.xyz │ │ │ ├── symmetric_H2+H.axsf │ │ │ ├── symmetric_H2+H.dat │ │ │ ├── symmetric_H2+H.int │ │ │ ├── symmetric_H2+H.out │ │ │ ├── symmetric_H2+H.path │ │ │ └── symmetric_H2+H.xyz │ │ └── run_example │ ├── neb0.in │ ├── neb0.ref │ ├── neb1.in │ ├── neb1.ref │ ├── neb2.in │ └── neb2.ref ├── src │ ├── Makefile │ ├── bcast_file.f90 │ ├── compute_scf.f90 │ ├── engine_to_path_alat.f90 │ ├── engine_to_path_fix_atom_pos.f90 │ ├── engine_to_path_nat.f90 │ ├── engine_to_path_pos.f90 │ ├── engine_to_path_tot_charge.f90 │ ├── fcp_opt_routines.f90 │ ├── fcp_variables.f90 │ ├── gcscf_variables.f90 │ ├── neb.f90 │ ├── neb_input.f90 │ ├── path_base.f90 │ ├── path_formats.f90 │ ├── path_gen_inputs.f90 │ ├── path_input_parameters_module.f90 │ ├── path_interpolation.f90 │ ├── path_io_routines.f90 │ ├── path_io_tools.f90 │ ├── path_io_units_module.f90 │ ├── path_opt_routines.f90 │ ├── path_read_cards_module.f90 │ ├── path_read_namelists_module.f90 │ ├── path_reparametrisation.f90 │ ├── path_to_engine_fix_atom_pos.f90 │ ├── path_variables.f90 │ ├── set_defaults.f90 │ └── stop_run_path.f90 └── tools │ ├── path_interpolation.sh │ └── path_merge.sh ├── PHonon ├── CMakeLists.txt ├── Doc │ ├── INPUT_DYNMAT.def │ ├── INPUT_DYNMAT.html │ ├── INPUT_DYNMAT.txt │ ├── INPUT_DYNMAT.xml │ ├── INPUT_Gamma │ ├── INPUT_MATDYN.def │ ├── INPUT_MATDYN.html │ ├── INPUT_MATDYN.txt │ ├── INPUT_MATDYN.xml │ ├── INPUT_PH.def │ ├── INPUT_PH.html │ ├── INPUT_PH.txt │ ├── INPUT_PH.xml │ ├── INPUT_POSTAHC.def │ ├── INPUT_POSTAHC.html │ ├── INPUT_POSTAHC.txt │ ├── INPUT_POSTAHC.xml │ ├── INPUT_Q2R.def │ ├── INPUT_Q2R.html │ ├── INPUT_Q2R.txt │ ├── INPUT_Q2R.xml │ ├── Makefile │ ├── developer_man.pdf │ ├── dfpt_self_energy.pdf │ ├── dfpt_self_energy.tex │ ├── dfpt_tetra.pdf │ ├── dfpt_tetra.tex │ ├── input_xx.xsl │ ├── pic │ │ └── elph_tetra.pdf │ ├── user_guide.pdf │ └── user_guide.tex ├── FD │ ├── Makefile │ ├── example │ │ ├── README │ │ └── Si_example │ │ │ ├── Si.vbc.UPF │ │ │ ├── fd.in │ │ │ ├── fd_ifc.in │ │ │ ├── run_fd │ │ │ └── si.scf.in │ ├── fd.f90 │ ├── fd_ef.f90 │ ├── fd_ifc.f90 │ ├── run_fd │ └── stop_pp.f90 ├── Ford.md ├── Ford │ └── index.md ├── Gamma │ ├── Makefile │ ├── a_h.f90 │ ├── cg_readin.f90 │ ├── cg_setup.f90 │ ├── cgcom.f90 │ ├── cgsolve.f90 │ ├── d2ion.f90 │ ├── dgradcorr.f90 │ ├── dielec.f90 │ ├── drhodv.f90 │ ├── dvb_cc.f90 │ ├── dvpsi_e.f90 │ ├── dvpsi_kb.f90 │ ├── dyndiar.f90 │ ├── dynmat_init.f90 │ ├── dynmatcc.f90 │ ├── find_equiv_sites.f90 │ ├── generate_dynamical_matrix.f90 │ ├── generate_effective_charges.f90 │ ├── h_h.f90 │ ├── macro.f90 │ ├── phcg.f90 │ ├── rhod2vkb.f90 │ ├── solve_e.f90 │ ├── solve_ph.f90 │ └── writedyn.f90 ├── Makefile ├── PH │ ├── Makefile │ ├── acfdtest.f90 │ ├── add_dkmds.f90 │ ├── add_for_charges.f90 │ ├── add_zstar_ue.f90 │ ├── add_zstar_ue_us.f90 │ ├── addcore.f90 │ ├── addnlcc.f90 │ ├── addnlcc_zstar_eu_us.f90 │ ├── addusddens.f90 │ ├── addusddense.f90 │ ├── addusdynmat.f90 │ ├── ahc.f90 │ ├── allocate_part.f90 │ ├── allocate_pert.f90 │ ├── allocate_phq.f90 │ ├── alpha2f.f90 │ ├── bcast_ph_input.f90 │ ├── cch_psi_all.f90 │ ├── check_if_partial_dyn.f90 │ ├── check_initial_status.f90 │ ├── check_restart_recover.f90 │ ├── chi_test.f90 │ ├── clean_pw_ph.f90 │ ├── clinear.f90 │ ├── close_phq.f90 │ ├── compute_alphasum.f90 │ ├── compute_becalp.f90 │ ├── compute_becsum_ph.f90 │ ├── compute_drhous.f90 │ ├── compute_drhous_nc.f90 │ ├── compute_dvloc.f90 │ ├── compute_nldyn.f90 │ ├── compute_weight.f90 │ ├── d2ionq.f90 │ ├── d2ionq_disp.f90 │ ├── d2mxc.f90 │ ├── d2nsq_bare.f90 │ ├── davcio_drho.f90 │ ├── deallocate_part.f90 │ ├── deallocate_phq.f90 │ ├── delta_sphi.f90 │ ├── dfile_autoname.f90 │ ├── dfile_star.f90 │ ├── dhdrhopsi.f90 │ ├── dielec.f90 │ ├── dielec_test.f90 │ ├── dnsq_bare.f90 │ ├── dnsq_orth.f90 │ ├── dnsq_scf.f90 │ ├── do_phonon.f90 │ ├── do_q2r.f90 │ ├── dpsi_orth.f90 │ ├── drho.f90 │ ├── drhodv.f90 │ ├── drhodvloc.f90 │ ├── drhodvnl.f90 │ ├── drhodvus.f90 │ ├── dvanqq.f90 │ ├── dvkb3.f90 │ ├── dvpsi_e.f90 │ ├── dvpsi_e2.f90 │ ├── dvqhub_barepsi_us.f90 │ ├── dvqhub_barepsi_us2.f90 │ ├── dvqpsi_us.f90 │ ├── dvqpsi_us_only.f90 │ ├── dvscf_interpolate.f90 │ ├── dvscf_q2r.f90 │ ├── dwfc.f90 │ ├── dyndia.f90 │ ├── dynmat.f90 │ ├── dynmat0.f90 │ ├── dynmat_hub_bare.f90 │ ├── dynmat_hub_scf.f90 │ ├── dynmat_us.f90 │ ├── dynmatcc.f90 │ ├── dynmatrix.f90 │ ├── el_opt.f90 │ ├── el_ph_collect.f90 │ ├── elph.f90 │ ├── elph_scdft_mod.f90 │ ├── elph_tetra_mod.f90 │ ├── elphon.f90 │ ├── ep_matrix_element_wannier.f90 │ ├── epa.f90 │ ├── find_equiv_sites.f90 │ ├── find_irrep.f90 │ ├── find_mode_sym.f90 │ ├── fqha.f90 │ ├── generate_dynamical_matrix_c.f90 │ ├── generate_effective_charges_c.f90 │ ├── gmressolve_all.f90 │ ├── hdiag.f90 │ ├── incdrhous.f90 │ ├── incdrhous_nc.f90 │ ├── init_representations.f90 │ ├── initialize_ph.f90 │ ├── io_dyn_mat.f90 │ ├── io_dyn_mat_old.f90 │ ├── io_pattern.f90 │ ├── lambda.f90 │ ├── matdyn.f90 │ ├── obsolete.f90 │ ├── openfilq.f90 │ ├── pcgreen.f90 │ ├── ph_restart.f90 │ ├── phcom.f90 │ ├── phescf.f90 │ ├── phonon.f90 │ ├── phq_init.f90 │ ├── phq_readin.f90 │ ├── phq_recover.f90 │ ├── phq_setup.f90 │ ├── phq_summary.f90 │ ├── phqscf.f90 │ ├── polariz.f90 │ ├── postahc.f90 │ ├── prepare_q.f90 │ ├── prepare_sym_analysis.f90 │ ├── print_clock_ph.f90 │ ├── psidspsi.f90 │ ├── psym_dmag.f90 │ ├── psym_dmage.f90 │ ├── psymdvscf.f90 │ ├── psyme.f90 │ ├── psyme2.f90 │ ├── punch_plot_e.f90 │ ├── q2qstar.f90 │ ├── q2qstar_ph.f90 │ ├── q2r.f90 │ ├── q_points.f90 │ ├── q_points_wannier.f90 │ ├── raman.f90 │ ├── raman_mat.f90 │ ├── ramanm.f90 │ ├── random_matrix.f90 │ ├── read_wfc_rspace_and_fwfft.f90 │ ├── rigid.f90 │ ├── rotate_and_add_dyn.f90 │ ├── rotate_dvscf_star.f90 │ ├── rotate_pattern_add.f90 │ ├── run_nscf.f90 │ ├── save_ph_input.f90 │ ├── set_asr_c.f90 │ ├── set_drhoc.f90 │ ├── set_dvscf.f90 │ ├── set_int12_nc.f90 │ ├── set_irr.f90 │ ├── set_irr_nosym.f90 │ ├── set_irr_sym.f90 │ ├── setlocq.f90 │ ├── solve_e.f90 │ ├── solve_e2.f90 │ ├── solve_e_fpol.f90 │ ├── solve_e_nscf.f90 │ ├── solve_linter.f90 │ ├── stop_ph.f90 │ ├── summarize.f90 │ ├── swfc.f90 │ ├── sym_and_write_zue.f90 │ ├── sym_def.f90 │ ├── sym_dmag.f90 │ ├── sym_dmage.f90 │ ├── sym_dns.f90 │ ├── sym_dns_wrapper.f90 │ ├── symdvscf.f90 │ ├── symdyn_munu.f90 │ ├── symdynph_gq.f90 │ ├── syme.f90 │ ├── syme2.f90 │ ├── syme_dns.f90 │ ├── symm.f90 │ ├── symmorphic_or_nzb.f90 │ ├── tra_write_matrix.f90 │ ├── transform_alphasum_nc.f90 │ ├── transform_alphasum_so.f90 │ ├── transform_int_nc.f90 │ ├── transform_int_so.f90 │ ├── trntnsc.f90 │ ├── write_eigenvectors.f90 │ ├── write_epsilon_and_zeu.f90 │ ├── write_hub.f90 │ ├── write_matrix.f90 │ ├── write_modes.f90 │ ├── write_qplot_data.f90 │ ├── write_ramtns.f90 │ ├── write_rec.f90 │ ├── yambo.f90 │ ├── zstar_eu.f90 │ └── zstar_eu_us.f90 └── examples │ ├── GRID_example │ ├── README │ ├── reference │ │ ├── alas.ph.out │ │ ├── alas.ph.out0 │ │ ├── alas.phdos │ │ ├── alas.scf.out │ │ ├── matdyn.out │ │ ├── output.1.1 │ │ ├── output.1.2 │ │ ├── output.1.3 │ │ ├── output.1.4 │ │ ├── output.1.5 │ │ ├── output.1.6 │ │ ├── output.2.1 │ │ ├── output.2.2 │ │ ├── output.2.3 │ │ ├── output.2.4 │ │ ├── output.2.5 │ │ ├── output.2.6 │ │ ├── output.3.1 │ │ ├── output.3.2 │ │ ├── output.3.3 │ │ ├── output.3.4 │ │ ├── output.3.5 │ │ ├── output.3.6 │ │ ├── output.4.1 │ │ ├── output.4.2 │ │ ├── output.4.3 │ │ ├── output.4.4 │ │ ├── output.4.5 │ │ ├── output.4.6 │ │ ├── output.5.1 │ │ ├── output.5.2 │ │ ├── output.5.3 │ │ ├── output.5.4 │ │ ├── output.5.5 │ │ ├── output.5.6 │ │ ├── output.6.1 │ │ ├── output.6.2 │ │ ├── output.6.3 │ │ ├── output.6.4 │ │ ├── output.6.5 │ │ ├── output.6.6 │ │ ├── output.7.1 │ │ ├── output.7.2 │ │ ├── output.7.3 │ │ ├── output.7.4 │ │ ├── output.7.5 │ │ ├── output.7.6 │ │ ├── output.8.1 │ │ ├── output.8.2 │ │ ├── output.8.3 │ │ ├── output.8.4 │ │ ├── output.8.5 │ │ ├── output.8.6 │ │ └── q2r.out │ ├── reference_1 │ │ ├── alas.phdos │ │ ├── alas.scf.out │ │ ├── output.1 │ │ ├── output.2 │ │ ├── output.3 │ │ ├── output.4 │ │ ├── output.5 │ │ ├── output.6 │ │ ├── output.7 │ │ ├── output.8 │ │ └── q2r.out │ ├── reference_2 │ │ ├── al.elph.out.1 │ │ ├── al.elph.out.2 │ │ ├── al.elph.out.3 │ │ ├── al.elph.out.4 │ │ ├── al.elph.out.5 │ │ ├── al.elph.out.6 │ │ ├── al.elph.out.7 │ │ └── al.elph.out.8 │ ├── reference_3 │ │ ├── alas.444.fc.xml │ │ ├── alas.dyn0 │ │ ├── alas.dyn1.xml │ │ ├── alas.dyn2.xml │ │ ├── alas.dyn3.xml │ │ ├── alas.dyn4.xml │ │ ├── alas.dyn5.xml │ │ ├── alas.dyn6.xml │ │ ├── alas.dyn7.xml │ │ ├── alas.dyn8.xml │ │ ├── alas.freq │ │ ├── alas.freq.gp │ │ ├── alas.freq.rap │ │ ├── alas.ph.in0 │ │ ├── alas.ph.out │ │ ├── alas.ph.out0 │ │ ├── alas.phdos │ │ ├── alas.scf.out │ │ ├── freq.plot.1.1 │ │ ├── freq.plot.1.3 │ │ ├── freq.plot.1.4 │ │ ├── freq.plot.2.1 │ │ ├── freq.plot.2.2 │ │ ├── freq.plot.3.1 │ │ ├── freq.plot.3.2 │ │ ├── freq.plot.4.1 │ │ ├── freq.plot.4.2 │ │ ├── freq.plot.5.1 │ │ ├── freq.plot.5.3 │ │ ├── matdyn.freq │ │ ├── matdyn.freq.gp │ │ ├── matdyn.freq.rap │ │ ├── matdyn.modes │ │ ├── matdyn.out │ │ ├── output.1.1 │ │ ├── output.1.2 │ │ ├── output.1.3 │ │ ├── output.1.4 │ │ ├── output.1.5 │ │ ├── output.1.6 │ │ ├── output.2.1 │ │ ├── output.2.2 │ │ ├── output.2.3 │ │ ├── output.2.4 │ │ ├── output.2.5 │ │ ├── output.2.6 │ │ ├── output.3.1 │ │ ├── output.3.2 │ │ ├── output.3.3 │ │ ├── output.3.4 │ │ ├── output.3.5 │ │ ├── output.3.6 │ │ ├── output.4.1 │ │ ├── output.4.2 │ │ ├── output.4.3 │ │ ├── output.4.4 │ │ ├── output.4.5 │ │ ├── output.4.6 │ │ ├── output.5.1 │ │ ├── output.5.2 │ │ ├── output.5.3 │ │ ├── output.5.4 │ │ ├── output.5.5 │ │ ├── output.5.6 │ │ ├── output.6.1 │ │ ├── output.6.2 │ │ ├── output.6.3 │ │ ├── output.6.4 │ │ ├── output.6.5 │ │ ├── output.6.6 │ │ ├── output.7.1 │ │ ├── output.7.2 │ │ ├── output.7.3 │ │ ├── output.7.4 │ │ ├── output.7.5 │ │ ├── output.7.6 │ │ ├── output.8.1 │ │ ├── output.8.2 │ │ ├── output.8.3 │ │ ├── output.8.4 │ │ ├── output.8.5 │ │ ├── output.8.6 │ │ ├── phdos.out │ │ └── q2r.out │ ├── run_example │ ├── run_example_1 │ ├── run_example_2 │ └── run_example_3 │ ├── GRID_recover_example │ ├── README │ ├── reference │ │ ├── alas.444.fc │ │ ├── alas.dispersions.ps │ │ ├── alas.dyn0 │ │ ├── alas.dyn1 │ │ ├── alas.dyn2 │ │ ├── alas.dyn3 │ │ ├── alas.dyn4 │ │ ├── alas.dyn5 │ │ ├── alas.dyn6 │ │ ├── alas.dyn7 │ │ ├── alas.dyn8 │ │ ├── alas.freq │ │ ├── alas.freq.gp │ │ ├── alas.ph.collect.out │ │ ├── alas.ph.out.1.1 │ │ ├── alas.ph.out.1.2 │ │ ├── alas.ph.out.1.3 │ │ ├── alas.ph.out.1.4 │ │ ├── alas.ph.out.1.5 │ │ ├── alas.ph.out.1.6 │ │ ├── alas.ph.out.2.1 │ │ ├── alas.ph.out.2.2 │ │ ├── alas.ph.out.2.3 │ │ ├── alas.ph.out.2.4 │ │ ├── alas.ph.out.2.5 │ │ ├── alas.ph.out.2.6 │ │ ├── alas.ph.out.3.1 │ │ ├── alas.ph.out.3.2 │ │ ├── alas.ph.out.3.3 │ │ ├── alas.ph.out.3.4 │ │ ├── alas.ph.out.3.5 │ │ ├── alas.ph.out.3.6 │ │ ├── alas.ph.out.4.1 │ │ ├── alas.ph.out.4.2 │ │ ├── alas.ph.out.4.3 │ │ ├── alas.ph.out.4.4 │ │ ├── alas.ph.out.4.5 │ │ ├── alas.ph.out.4.6 │ │ ├── alas.ph.out.5.1 │ │ ├── alas.ph.out.5.2 │ │ ├── alas.ph.out.5.3 │ │ ├── alas.ph.out.5.4 │ │ ├── alas.ph.out.5.5 │ │ ├── alas.ph.out.5.6 │ │ ├── alas.ph.out.6.1 │ │ ├── alas.ph.out.6.2 │ │ ├── alas.ph.out.6.3 │ │ ├── alas.ph.out.6.4 │ │ ├── alas.ph.out.6.5 │ │ ├── alas.ph.out.6.6 │ │ ├── alas.ph.out.7.1 │ │ ├── alas.ph.out.7.2 │ │ ├── alas.ph.out.7.3 │ │ ├── alas.ph.out.7.4 │ │ ├── alas.ph.out.7.5 │ │ ├── alas.ph.out.7.6 │ │ ├── alas.ph.out.8.1 │ │ ├── alas.ph.out.8.2 │ │ ├── alas.ph.out.8.3 │ │ ├── alas.ph.out.8.4 │ │ ├── alas.ph.out.8.5 │ │ ├── alas.ph.out.8.6 │ │ ├── alas.ph.prep.out │ │ ├── alas.ph.rec.out.1.1 │ │ ├── alas.ph.rec.out.1.2 │ │ ├── alas.ph.rec.out.1.3 │ │ ├── alas.ph.rec.out.1.4 │ │ ├── alas.ph.rec.out.1.5 │ │ ├── alas.ph.rec.out.1.6 │ │ ├── alas.ph.rec.out.2.1 │ │ ├── alas.ph.rec.out.2.2 │ │ ├── alas.ph.rec.out.2.3 │ │ ├── alas.ph.rec.out.2.4 │ │ ├── alas.ph.rec.out.2.5 │ │ ├── alas.ph.rec.out.2.6 │ │ ├── alas.ph.rec.out.3.1 │ │ ├── alas.ph.rec.out.3.2 │ │ ├── alas.ph.rec.out.3.3 │ │ ├── alas.ph.rec.out.3.4 │ │ ├── alas.ph.rec.out.3.5 │ │ ├── alas.ph.rec.out.3.6 │ │ ├── alas.ph.rec.out.4.1 │ │ ├── alas.ph.rec.out.4.2 │ │ ├── alas.ph.rec.out.4.3 │ │ ├── alas.ph.rec.out.4.4 │ │ ├── alas.ph.rec.out.4.5 │ │ ├── alas.ph.rec.out.4.6 │ │ ├── alas.ph.rec.out.5.1 │ │ ├── alas.ph.rec.out.5.2 │ │ ├── alas.ph.rec.out.5.3 │ │ ├── alas.ph.rec.out.5.4 │ │ ├── alas.ph.rec.out.5.5 │ │ ├── alas.ph.rec.out.5.6 │ │ ├── alas.ph.rec.out.6.1 │ │ ├── alas.ph.rec.out.6.2 │ │ ├── alas.ph.rec.out.6.3 │ │ ├── alas.ph.rec.out.6.4 │ │ ├── alas.ph.rec.out.6.5 │ │ ├── alas.ph.rec.out.6.6 │ │ ├── alas.ph.rec.out.7.1 │ │ ├── alas.ph.rec.out.7.2 │ │ ├── alas.ph.rec.out.7.3 │ │ ├── alas.ph.rec.out.7.4 │ │ ├── alas.ph.rec.out.7.5 │ │ ├── alas.ph.rec.out.7.6 │ │ ├── alas.ph.rec.out.8.1 │ │ ├── alas.ph.rec.out.8.2 │ │ ├── alas.ph.rec.out.8.3 │ │ ├── alas.ph.rec.out.8.4 │ │ ├── alas.ph.rec.out.8.5 │ │ ├── alas.ph.rec.out.8.6 │ │ ├── alas.phdos │ │ ├── alas.phdos.ps │ │ ├── alas.scf.out │ │ ├── freq.plot │ │ ├── matdyn.freq │ │ ├── matdyn.freq.gp │ │ ├── matdyn.modes │ │ ├── matdyn.out │ │ ├── phdos.out │ │ └── q2r.out │ ├── reference_2 │ │ ├── alas.dispersions.ps │ │ ├── alas.dyn0 │ │ ├── alas.dyn1 │ │ ├── alas.dyn2 │ │ ├── alas.dyn3 │ │ ├── alas.dyn4 │ │ ├── alas.dyn5 │ │ ├── alas.dyn6 │ │ ├── alas.dyn7 │ │ ├── alas.dyn8 │ │ ├── alas.freq │ │ ├── alas.freq.gp │ │ ├── alas.ph.collect.out │ │ ├── alas.ph.out │ │ ├── alas.ph.rec.out │ │ ├── alas.phdos │ │ ├── alas.phdos.ps │ │ ├── alas.scf.out │ │ ├── alas444.fc │ │ ├── freq.plot │ │ ├── matdyn.freq │ │ ├── matdyn.freq.gp │ │ ├── matdyn.modes │ │ ├── matdyn.out │ │ ├── out.1_0 │ │ ├── phdos.out │ │ └── q2r.out │ ├── run_example │ └── run_example_2 │ ├── Image_example │ ├── README │ ├── reference │ │ ├── alas.ph.out │ │ ├── alas.ph.out1 │ │ ├── alas.phdos │ │ ├── alas.scf.out │ │ ├── matdyn.out │ │ ├── out.1_0 │ │ ├── phdos.out │ │ └── q2r.out │ ├── reference_1 │ │ ├── al.disp.dyn0 │ │ ├── al.disp.dyn1 │ │ ├── al.disp.dyn2 │ │ ├── al.disp.dyn3 │ │ ├── al.disp.dyn4 │ │ ├── al.disp.dyn5 │ │ ├── al.disp.dyn6 │ │ ├── al.disp.dyn7 │ │ ├── al.disp.dyn8 │ │ ├── al.dyn0 │ │ ├── al.dyn1 │ │ ├── al.dyn10 │ │ ├── al.dyn11 │ │ ├── al.dyn12 │ │ ├── al.dyn13 │ │ ├── al.dyn14 │ │ ├── al.dyn15 │ │ ├── al.dyn16 │ │ ├── al.dyn17 │ │ ├── al.freq │ │ ├── al.ph.collect.out │ │ ├── al.ph.disp.collect.out │ │ ├── al.ph.disp.out │ │ ├── al.ph.out │ │ └── al.scf.out │ ├── run_example │ └── run_example_1 │ ├── Partial_example │ ├── README │ ├── reference │ │ ├── ch4.phA1.out │ │ ├── ch4.phE.out1 │ │ ├── ch4.phE.out2 │ │ ├── ch4.phG.out │ │ └── ch4.scf.out │ └── run_example │ ├── README │ ├── Recover_example │ ├── README │ ├── reference │ │ ├── Au.phX_rel.out1 │ │ ├── Au.phX_rel.out2 │ │ ├── Au.scf_rel.out │ │ ├── Cu.phG_pbe.out1 │ │ ├── Cu.phG_pbe.out2 │ │ ├── Cu.phX_pbe_one_mode.out1 │ │ ├── Cu.phX_pbe_one_mode.out2 │ │ ├── Cu.scf_pbe.out │ │ ├── ni.phX.out1 │ │ ├── ni.phX.out2 │ │ ├── ni.scf.out │ │ ├── si.phG.out1 │ │ ├── si.phG.out2 │ │ └── si.scf.out │ ├── reference_1 │ │ ├── Al444.fc │ │ ├── Al444.freq │ │ ├── Al444.freq.gp │ │ ├── a2F.dos1 │ │ ├── a2F.dos10 │ │ ├── a2F.dos2 │ │ ├── a2F.dos3 │ │ ├── a2F.dos4 │ │ ├── a2F.dos5 │ │ ├── a2F.dos6 │ │ ├── a2F.dos7 │ │ ├── a2F.dos8 │ │ ├── a2F.dos9 │ │ ├── al.dyn0 │ │ ├── al.dyn1 │ │ ├── al.dyn2 │ │ ├── al.dyn3 │ │ ├── al.dyn4 │ │ ├── al.dyn5 │ │ ├── al.dyn6 │ │ ├── al.dyn7 │ │ ├── al.dyn8 │ │ ├── al.elph.out │ │ ├── al.elph.out1 │ │ ├── al.scf.fit.out │ │ ├── al.scf.out │ │ ├── dyna2F │ │ ├── elph_dir │ │ │ ├── a2Fmatdyn.61 │ │ │ ├── a2Fmatdyn.62 │ │ │ ├── a2Fmatdyn.63 │ │ │ ├── a2Fmatdyn.64 │ │ │ ├── a2Fmatdyn.65 │ │ │ ├── a2Fmatdyn.66 │ │ │ ├── a2Fmatdyn.67 │ │ │ ├── a2Fmatdyn.68 │ │ │ ├── a2Fmatdyn.69 │ │ │ ├── a2Fmatdyn.70 │ │ │ ├── a2Fq2r.51.1 │ │ │ ├── a2Fq2r.51.2 │ │ │ ├── a2Fq2r.51.3 │ │ │ ├── a2Fq2r.51.4 │ │ │ ├── a2Fq2r.51.5 │ │ │ ├── a2Fq2r.51.6 │ │ │ ├── a2Fq2r.51.7 │ │ │ ├── a2Fq2r.51.8 │ │ │ ├── a2Fq2r.52.1 │ │ │ ├── a2Fq2r.52.2 │ │ │ ├── a2Fq2r.52.3 │ │ │ ├── a2Fq2r.52.4 │ │ │ ├── a2Fq2r.52.5 │ │ │ ├── a2Fq2r.52.6 │ │ │ ├── a2Fq2r.52.7 │ │ │ ├── a2Fq2r.52.8 │ │ │ ├── a2Fq2r.53.1 │ │ │ ├── a2Fq2r.53.2 │ │ │ ├── a2Fq2r.53.3 │ │ │ ├── a2Fq2r.53.4 │ │ │ ├── a2Fq2r.53.5 │ │ │ ├── a2Fq2r.53.6 │ │ │ ├── a2Fq2r.53.7 │ │ │ ├── a2Fq2r.53.8 │ │ │ ├── a2Fq2r.54.1 │ │ │ ├── a2Fq2r.54.2 │ │ │ ├── a2Fq2r.54.3 │ │ │ ├── a2Fq2r.54.4 │ │ │ ├── a2Fq2r.54.5 │ │ │ ├── a2Fq2r.54.6 │ │ │ ├── a2Fq2r.54.7 │ │ │ ├── a2Fq2r.54.8 │ │ │ ├── a2Fq2r.55.1 │ │ │ ├── a2Fq2r.55.2 │ │ │ ├── a2Fq2r.55.3 │ │ │ ├── a2Fq2r.55.4 │ │ │ ├── a2Fq2r.55.5 │ │ │ ├── a2Fq2r.55.6 │ │ │ ├── a2Fq2r.55.7 │ │ │ ├── a2Fq2r.55.8 │ │ │ ├── a2Fq2r.56.1 │ │ │ ├── a2Fq2r.56.2 │ │ │ ├── a2Fq2r.56.3 │ │ │ ├── a2Fq2r.56.4 │ │ │ ├── a2Fq2r.56.5 │ │ │ ├── a2Fq2r.56.6 │ │ │ ├── a2Fq2r.56.7 │ │ │ ├── a2Fq2r.56.8 │ │ │ ├── a2Fq2r.57.1 │ │ │ ├── a2Fq2r.57.2 │ │ │ ├── a2Fq2r.57.3 │ │ │ ├── a2Fq2r.57.4 │ │ │ ├── a2Fq2r.57.5 │ │ │ ├── a2Fq2r.57.6 │ │ │ ├── a2Fq2r.57.7 │ │ │ ├── a2Fq2r.57.8 │ │ │ ├── a2Fq2r.58.1 │ │ │ ├── a2Fq2r.58.2 │ │ │ ├── a2Fq2r.58.3 │ │ │ ├── a2Fq2r.58.4 │ │ │ ├── a2Fq2r.58.5 │ │ │ ├── a2Fq2r.58.6 │ │ │ ├── a2Fq2r.58.7 │ │ │ ├── a2Fq2r.58.8 │ │ │ ├── a2Fq2r.59.1 │ │ │ ├── a2Fq2r.59.2 │ │ │ ├── a2Fq2r.59.3 │ │ │ ├── a2Fq2r.59.4 │ │ │ ├── a2Fq2r.59.5 │ │ │ ├── a2Fq2r.59.6 │ │ │ ├── a2Fq2r.59.7 │ │ │ ├── a2Fq2r.59.8 │ │ │ ├── a2Fq2r.60.1 │ │ │ ├── a2Fq2r.60.2 │ │ │ ├── a2Fq2r.60.3 │ │ │ ├── a2Fq2r.60.4 │ │ │ ├── a2Fq2r.60.5 │ │ │ ├── a2Fq2r.60.6 │ │ │ ├── a2Fq2r.60.7 │ │ │ ├── a2Fq2r.60.8 │ │ │ ├── elph.inp_lambda.1 │ │ │ ├── elph.inp_lambda.2 │ │ │ ├── elph.inp_lambda.3 │ │ │ ├── elph.inp_lambda.4 │ │ │ ├── elph.inp_lambda.5 │ │ │ ├── elph.inp_lambda.6 │ │ │ ├── elph.inp_lambda.7 │ │ │ └── elph.inp_lambda.8 │ │ ├── lambda │ │ ├── matdyn.in.dos │ │ ├── matdyn.modes │ │ ├── matdyn.out.dos │ │ ├── phonon.dos │ │ └── q2r.out │ ├── run_example │ └── run_example_1 │ ├── clean_all │ ├── example01 │ ├── README │ ├── reference │ │ ├── c.phG.out │ │ ├── c.scf.out │ │ ├── ni.phX.out │ │ ├── ni.scf.out │ │ ├── si.phG.out │ │ ├── si.phX.out │ │ ├── si.phXsingle.out │ │ └── si.scf.out │ └── run_example │ ├── example014 │ └── run_example_ep_simple │ ├── example02 │ ├── README │ ├── reference │ │ ├── alas.freq │ │ ├── alas.ph.out │ │ ├── alas.phdos │ │ ├── alas.scf.out │ │ ├── matdyn.modes │ │ └── q2r.out │ └── run_example │ ├── example03 │ ├── README │ ├── reference │ │ ├── al.elph.out │ │ ├── al.scf.fit.out │ │ ├── al.scf.out │ │ └── lambda │ └── run_example │ ├── example04 │ ├── README │ ├── reference │ │ ├── ch4.dyn.out │ │ ├── ch4.nm.out │ │ └── ch4.scf.out │ └── run_example │ ├── example05 │ ├── README │ ├── reference │ │ ├── alas.dynG │ │ ├── alas.ph.out │ │ └── alas.scf.out │ └── run_example │ ├── example06 │ ├── README │ ├── reference │ │ ├── pt.ph.out │ │ ├── pt.phX.out │ │ └── pt.scf_ph.out │ └── run_example │ ├── example07 │ ├── README │ ├── reference │ │ ├── ni.phG.out │ │ ├── ni.phX.out │ │ ├── ni.phX2.out │ │ ├── ni.scf.out │ │ ├── ni_so.phG.out │ │ ├── ni_so.phX.out │ │ ├── ni_so.phX2.out │ │ ├── ni_so.scf.out │ │ ├── pt.phG.out │ │ ├── pt.phX.out │ │ └── pt.scf.out │ └── run_example │ ├── example08 │ ├── README │ ├── reference │ │ ├── Cu.phG_pbe.out │ │ ├── Cu.scf_pbe.out │ │ ├── c.phG.out │ │ ├── c.phX.out │ │ ├── c.scf.out │ │ ├── ch4.nm.out │ │ └── ch4.scf.out │ └── run_example │ ├── example09 │ ├── README │ ├── reference │ │ ├── ch4.fpol.out │ │ └── ch4.scf.out │ └── run_example │ ├── example10 │ ├── README │ ├── reference │ │ ├── c.phG.out │ │ ├── c.scf.out │ │ ├── o2.phG.out │ │ ├── o2.scf.out │ │ ├── o2_nc.phG.out │ │ ├── o2_nc.scf.out │ │ ├── si.phG.out │ │ └── si.scf.out │ └── run_example │ ├── example11 │ ├── README │ ├── reference │ │ ├── Au.phG_pz.out │ │ ├── Au.phX_pz.out │ │ └── Au.scf_pz.out │ └── run_example │ ├── example12 │ ├── README │ ├── reference │ │ ├── sih4-gga.dyn.out │ │ ├── sih4-gga.nm.out │ │ ├── sih4-gga.scf.out │ │ ├── sih4.dyn.out │ │ ├── sih4.nm.out │ │ └── sih4.scf.out │ └── run_example │ ├── example13 │ ├── reference │ │ ├── ni.ph.out │ │ └── ni.scf.out │ └── run_example │ ├── example14 │ ├── README │ ├── reference │ │ ├── al.disp.dyn0 │ │ ├── al.disp.dyn1 │ │ ├── al.disp.dyn2 │ │ ├── al.disp.dyn3 │ │ ├── al.disp.dyn4 │ │ ├── al.disp.dyn5 │ │ ├── al.disp.dyn6 │ │ ├── al.disp.dyn7 │ │ ├── al.disp.dyn8 │ │ ├── al.dyn.freq │ │ ├── al.dyn0 │ │ ├── al.dyn1 │ │ ├── al.dyn10 │ │ ├── al.dyn11 │ │ ├── al.dyn12 │ │ ├── al.dyn13 │ │ ├── al.dyn14 │ │ ├── al.dyn15 │ │ ├── al.dyn16 │ │ ├── al.dyn17 │ │ ├── al.dyn2 │ │ ├── al.dyn3 │ │ ├── al.dyn4 │ │ ├── al.dyn5 │ │ ├── al.dyn6 │ │ ├── al.dyn7 │ │ ├── al.dyn8 │ │ ├── al.dyn9 │ │ ├── al.freq │ │ ├── al.freq.gp │ │ ├── al.ph.disp.out │ │ ├── al.ph.out │ │ ├── al.scf.out │ │ ├── freq.disp.plot │ │ ├── freq.plot │ │ ├── matdyn.modes │ │ ├── matdyn.out │ │ └── q2r.out │ └── run_example │ ├── example15 │ ├── README │ ├── reference │ │ ├── co2.dm.in │ │ ├── co2.dm.out │ │ ├── co2.ph.in │ │ ├── co2.ph.out │ │ ├── co2.scf.in │ │ ├── co2.scf.out │ │ ├── dmat.co2 │ │ ├── dmat.zno │ │ ├── dynmat.axsf │ │ ├── dynmat.mold │ │ ├── dynmat.out │ │ ├── plot_command_co2.cmd │ │ ├── plot_command_zno.cmd │ │ ├── plotdata_co2.dat │ │ ├── plotdata_zno.dat │ │ ├── zno.dm.in │ │ ├── zno.dm.out │ │ ├── zno.ph.in │ │ ├── zno.ph.out │ │ ├── zno.scf.in │ │ └── zno.scf.out │ └── run_example │ ├── example16 │ ├── README │ ├── reference │ │ ├── graphite.phG.out │ │ ├── graphite.phK.out │ │ ├── graphite.rvv10.phG.out │ │ ├── graphite.rvv10.phK.out │ │ ├── graphite.rvv10.scf.out │ │ ├── graphite.scf.out │ │ ├── graphite.vdw-df.phG.out │ │ ├── graphite.vdw-df.phK.out │ │ ├── graphite.vdw-df.scf.out │ │ ├── graphite.vdw-df2.phG.out │ │ ├── graphite.vdw-df2.phK.out │ │ └── graphite.vdw-df2.scf.out │ └── run_example │ ├── example17 │ ├── README │ ├── reference │ │ ├── al.dispersions.ps │ │ ├── bn.disp.dyn0 │ │ ├── bn.disp.dyn1 │ │ ├── bn.disp.dyn10 │ │ ├── bn.disp.dyn2 │ │ ├── bn.disp.dyn3 │ │ ├── bn.disp.dyn4 │ │ ├── bn.disp.dyn5 │ │ ├── bn.disp.dyn6 │ │ ├── bn.disp.dyn7 │ │ ├── bn.disp.dyn8 │ │ ├── bn.disp.dyn9 │ │ ├── bn.freq │ │ ├── bn.freq.gp │ │ ├── bn.ph.disp.in │ │ ├── bn.ph.disp.out │ │ ├── bn.scf.in │ │ ├── bn.scf.out │ │ ├── bn881.fc │ │ ├── freq.disp.plot │ │ ├── freq.disp.ps │ │ ├── matdyn.in │ │ ├── matdyn.modes │ │ ├── matdyn.out │ │ ├── plotband.in │ │ ├── q2r.in │ │ └── q2r.out │ └── run_example │ ├── example18 │ ├── README │ ├── reference │ │ ├── LiCoO2.dynG │ │ ├── LiCoO2.dynq │ │ ├── LiCoO2.phG.in │ │ ├── LiCoO2.phq.in │ │ └── LiCoO2.scf.in │ └── run_example │ ├── example19 │ ├── README │ ├── reference │ │ ├── diam.ahc.coarse.in │ │ ├── diam.ahc.coarse.out │ │ ├── diam.ahc.fine.in │ │ ├── diam.ahc.fine.out │ │ ├── diam.dyn0 │ │ ├── diam.dyn1 │ │ ├── diam.dyn2 │ │ ├── diam.dyn3 │ │ ├── diam.dyn4 │ │ ├── diam.ifc │ │ ├── diam.modes_coarse │ │ ├── diam.modes_fine │ │ ├── diam.nscf.in │ │ ├── diam.nscf.out │ │ ├── diam.ph.in │ │ ├── diam.ph.out │ │ ├── diam.scf.in │ │ ├── diam.scf.out │ │ ├── dvscfq2r.in │ │ ├── dvscfq2r.out │ │ ├── matdyn.coarse.in │ │ ├── matdyn.coarse.out │ │ ├── matdyn.fine.in │ │ ├── matdyn.fine.out │ │ ├── postahc.coarse.in │ │ ├── postahc.coarse.out │ │ ├── postahc.fine.in │ │ ├── postahc.fine.out │ │ ├── q2r.in │ │ ├── q2r.out │ │ ├── selfen_coarse_imag.dat │ │ ├── selfen_coarse_real.dat │ │ ├── selfen_fine_imag.dat │ │ └── selfen_fine_real.dat │ └── run_example │ ├── run_all_examples │ └── tetra_example │ ├── README │ ├── reference │ ├── al.dyn0 │ ├── al.dyn1 │ ├── al.dyn1.elph.1 │ ├── al.dyn10 │ ├── al.dyn10.elph.10 │ ├── al.dyn2 │ ├── al.dyn2.elph.2 │ ├── al.dyn3 │ ├── al.dyn3.elph.3 │ ├── al.dyn4 │ ├── al.dyn4.elph.4 │ ├── al.dyn5 │ ├── al.dyn5.elph.5 │ ├── al.dyn6 │ ├── al.dyn6.elph.6 │ ├── al.dyn7 │ ├── al.dyn7.elph.7 │ ├── al.dyn8 │ ├── al.dyn8.elph.8 │ ├── al.dyn9 │ ├── al.dyn9.elph.9 │ ├── al.elph.in │ ├── al.elph.out │ ├── al.ph.in │ ├── al.ph.out │ ├── al.scf.in │ ├── al.scf.out │ ├── aluminum.McMillan.gp │ └── aluminum.a2F.dat │ └── run_example ├── PP ├── CMakeLists.txt ├── Doc │ ├── INPUT_BANDS.def │ ├── INPUT_BANDS.html │ ├── INPUT_BANDS.txt │ ├── INPUT_BANDS.xml │ ├── INPUT_BAND_INTERPOLATION.def │ ├── INPUT_BAND_INTERPOLATION.html │ ├── INPUT_BAND_INTERPOLATION.txt │ ├── INPUT_D3HESS.def │ ├── INPUT_D3HESS.html │ ├── INPUT_D3HESS.txt │ ├── INPUT_DOS.def │ ├── INPUT_DOS.html │ ├── INPUT_DOS.txt │ ├── INPUT_DOS.xml │ ├── INPUT_OSCDFT_ET.def │ ├── INPUT_OSCDFT_ET.html │ ├── INPUT_OSCDFT_ET.txt │ ├── INPUT_OSCDFT_PP.def │ ├── INPUT_OSCDFT_PP.html │ ├── INPUT_OSCDFT_PP.txt │ ├── INPUT_PP.def │ ├── INPUT_PP.html │ ├── INPUT_PP.txt │ ├── INPUT_PPACF.def │ ├── INPUT_PPACF.html │ ├── INPUT_PPACF.txt │ ├── INPUT_PPRISM.def │ ├── INPUT_PPRISM.html │ ├── INPUT_PPRISM.txt │ ├── INPUT_PROJWFC.def │ ├── INPUT_PROJWFC.html │ ├── INPUT_PROJWFC.txt │ ├── INPUT_bgw2pw.def │ ├── INPUT_bgw2pw.html │ ├── INPUT_bgw2pw.txt │ ├── INPUT_molecularpdos.def │ ├── INPUT_molecularpdos.html │ ├── INPUT_molecularpdos.txt │ ├── INPUT_molecularpdos.xml │ ├── INPUT_pw2bgw.def │ ├── INPUT_pw2bgw.html │ ├── INPUT_pw2bgw.txt │ ├── INPUT_pw2gw.def │ ├── INPUT_pw2gw.html │ ├── INPUT_pw2gw.txt │ ├── INPUT_pw2wannier90.def │ ├── INPUT_pw2wannier90.html │ ├── INPUT_pw2wannier90.txt │ ├── Makefile │ ├── eps_man.pdf │ ├── eps_man.tex │ ├── user_guide.pdf │ └── user_guide.tex ├── Makefile ├── examples │ ├── ACF_example │ │ ├── README │ │ ├── reference_pbe │ │ │ ├── atoms.in │ │ │ ├── atoms.out │ │ │ ├── ppacf_fock.in │ │ │ ├── ppacf_fock.out │ │ │ ├── ppacf_plot.in │ │ │ ├── ppacf_plot.out │ │ │ ├── ppacf_scale.in │ │ │ └── ppacf_scale.out │ │ ├── reference_vdw-df-cx │ │ │ ├── atoms.in │ │ │ ├── atoms.out │ │ │ ├── atoms_ppacf.in │ │ │ ├── ppacf_fock.in │ │ │ ├── ppacf_fock.out │ │ │ ├── ppacf_plot.in │ │ │ ├── ppacf_plot.out │ │ │ ├── ppacf_scale.in │ │ │ └── ppacf_scale.out │ │ └── run_example │ ├── BGW_example │ │ ├── README │ │ ├── references │ │ │ ├── si.pw2bgw.in │ │ │ ├── si.pw2bgw.out │ │ │ ├── si.scf.in │ │ │ ├── si.scf.out │ │ │ ├── vxc.dat │ │ │ └── vxc0.dat │ │ └── run_example │ ├── CLS_FS_example │ │ ├── README │ │ ├── reference │ │ │ ├── final-state.txt │ │ │ ├── rh011bulk.scf.out │ │ │ ├── rh011layer1.scf.out │ │ │ └── rh011surf.scf.out │ │ └── run_example │ ├── CLS_IS_example │ │ ├── README │ │ ├── reference │ │ │ ├── initial-state.txt │ │ │ ├── rh011slab.istate.out │ │ │ └── rh011slab.scf.out │ │ └── run_example │ ├── ForceTheorem_example │ │ ├── README │ │ ├── reference │ │ │ ├── eband_par.dat │ │ │ ├── eband_per.dat │ │ │ ├── par.out │ │ │ ├── per.out │ │ │ ├── proj_par.out │ │ │ ├── proj_per.out │ │ │ └── sr.out │ │ └── run_example │ ├── MolDos_example │ │ ├── README │ │ ├── reference │ │ │ ├── H2.bands.out │ │ │ ├── H2.k.projwfc.out │ │ │ ├── H2.projwfc.out │ │ │ ├── H2.scf.out │ │ │ ├── chainH2.bands.out │ │ │ ├── chainH2.k.projwfc.out │ │ │ ├── chainH2.projwfc.out │ │ │ ├── chainH2.scf.out │ │ │ ├── chainH2_onto_H2.k.out │ │ │ ├── chainH2_onto_H2.out │ │ │ ├── gnuplot.tmp │ │ │ └── project_chainH2_onto_H2.ps │ │ └── run_example │ ├── README │ ├── W90_open_grid_example │ │ ├── README │ │ ├── reference │ │ │ ├── diamond.lib.win │ │ │ ├── diamond.openg.sa.in │ │ │ ├── diamond.openg.sa.out │ │ │ ├── diamond.pw2wan.lib.in │ │ │ ├── diamond.pw2wan.sa.in │ │ │ ├── diamond.pw2wan.sa.out │ │ │ ├── diamond.sa.eig │ │ │ ├── diamond.sa.nnkp │ │ │ ├── diamond.sa.win │ │ │ ├── diamond.sa.wout │ │ │ ├── diamond.scf.in │ │ │ ├── diamond.scf.out │ │ │ └── k_points.txt │ │ └── run_example │ ├── WAN90_example │ │ ├── README │ │ ├── reference │ │ │ ├── diamond.lib.win │ │ │ ├── diamond.lib.wout │ │ │ ├── diamond.nscf.out │ │ │ ├── diamond.pw2wan.lib.out │ │ │ ├── diamond.pw2wan.sa.out │ │ │ ├── diamond.sa.eig │ │ │ ├── diamond.sa.nnkp │ │ │ ├── diamond.sa.win │ │ │ ├── diamond.sa.wout │ │ │ └── diamond.scf.out │ │ └── run_example │ ├── WannierHam_example │ │ ├── README │ │ ├── reference │ │ │ ├── NiO.nscf.out │ │ │ ├── NiO.scf.out │ │ │ ├── hamilt.gz │ │ │ └── wannier_hamilt.out │ │ └── run_example │ ├── WorkFct_example │ │ ├── reference │ │ │ ├── Al.bulkref.avg.in │ │ │ ├── Al.bulkref.avg.out │ │ │ ├── Al.bulkref.in │ │ │ ├── Al.bulkref.out │ │ │ ├── Al.bulkref.pp.in │ │ │ ├── Al.bulkref.pp.out │ │ │ ├── Al100.avg.in │ │ │ ├── Al100.avg.out │ │ │ ├── Al100.in │ │ │ ├── Al100.out │ │ │ ├── Al100.pot │ │ │ ├── Al100.pp.in │ │ │ ├── Al100.pp.out │ │ │ ├── Al100.wf.data │ │ │ ├── Al100.wf.eps │ │ │ └── Albulkrefpot │ │ └── run_example │ ├── clean_all │ ├── dipole_example │ │ ├── README │ │ ├── reference │ │ │ ├── ni+co.avg.in │ │ │ ├── ni+co.eps │ │ │ ├── ni+co.pp.in │ │ │ ├── ni+co.pp.out │ │ │ ├── ni+co.scf.in │ │ │ ├── ni+co.scf.out │ │ │ ├── ni+co.vpot-z │ │ │ ├── water.avg.in │ │ │ ├── water.eps │ │ │ ├── water.pp.in │ │ │ ├── water.pp.out │ │ │ ├── water.scf.in │ │ │ ├── water.scf.out │ │ │ └── water.vpot-z │ │ └── run_example │ ├── example01 │ │ ├── README │ │ ├── reference │ │ │ ├── si.band.out │ │ │ ├── si.bands.out │ │ │ ├── si.plotband.out │ │ │ ├── si.plotrho.out │ │ │ ├── si.pp_rho.out │ │ │ ├── si.rho.dat │ │ │ ├── si.rho.ps │ │ │ ├── si.scf.out │ │ │ ├── sibands.dat │ │ │ ├── sibands.dat.rap │ │ │ ├── sibands.ps │ │ │ └── sicharge │ │ └── run_example │ ├── example02 │ │ ├── README │ │ ├── reference │ │ │ ├── FS.in │ │ │ ├── FS.out │ │ │ ├── ni.dos │ │ │ ├── ni.dos.in │ │ │ ├── ni.dos.out │ │ │ ├── ni.dos2.in │ │ │ ├── ni.dos2.out │ │ │ ├── ni.fs_NSP.in │ │ │ ├── ni.fs_NSP.out │ │ │ ├── ni.fs_SP.in │ │ │ ├── ni.fs_SP.out │ │ │ ├── ni.pdos.in │ │ │ ├── ni.pdos.out │ │ │ ├── ni.pdos_atm#1(Ni)_wfc#1(s) │ │ │ ├── ni.pdos_atm#1(Ni)_wfc#2(d) │ │ │ ├── ni.pdos_tot │ │ │ ├── ni.scf.in │ │ │ ├── ni.scf.out │ │ │ ├── ni.scf0.NSP.out │ │ │ ├── ni.scf0.SP.out │ │ │ ├── ni.scf_NSP.in │ │ │ ├── ni.scf_SP.in │ │ │ ├── ni_fs.bxsf │ │ │ ├── ni_fsdw.bxsf │ │ │ └── ni_fsup.bxsf │ │ └── run_example │ ├── example03 │ │ ├── README │ │ ├── reference │ │ │ ├── AlAs110+1.0eV.ps │ │ │ ├── AlAs110-1.0eV.ps │ │ │ ├── AlAs110.box.projwfc.out │ │ │ ├── AlAs110.box.projwfc.ps │ │ │ ├── AlAs110.ldos_boxes │ │ │ ├── AlAs110.pp_stm+.out │ │ │ ├── AlAs110.pp_stm-.out │ │ │ ├── AlAs110re.nonscf.out │ │ │ └── AlAs110re.scf.out │ │ └── run_example │ ├── example04 │ │ ├── README │ │ ├── reference │ │ │ ├── pt.bands.out │ │ │ ├── pt.nscf.out │ │ │ ├── pt.pdos.out │ │ │ └── pt.scf.out │ │ └── run_example │ ├── example05 │ │ ├── README │ │ ├── reference │ │ │ ├── feo_LDA.in │ │ │ ├── feo_wannier.in │ │ │ └── pmw.in │ │ └── run_example │ ├── example06 │ │ ├── README │ │ ├── reference │ │ │ ├── Fe.band_pbe.out │ │ │ ├── Fe.bands.out │ │ │ ├── Fe.scf_pbe.out │ │ │ ├── fe.bands.ps │ │ │ └── plotband.out │ │ └── run_example │ ├── exx_interpolated_bands_example │ │ ├── README │ │ ├── pbe0_fourier │ │ │ ├── filexml.tar.gz │ │ │ ├── fourier-diff.dat │ │ │ ├── fourier-diff.in │ │ │ ├── fourier.dat │ │ │ ├── fourier.in │ │ │ ├── log.pbe0.scf.in │ │ │ ├── out.fourier-diff.in │ │ │ ├── out.fourier.in │ │ │ └── pbe0.scf.in │ │ ├── pbe_fourier │ │ │ ├── filexml.tar.gz │ │ │ ├── fourier-diff.dat │ │ │ ├── fourier-diff.in │ │ │ ├── fourier.dat │ │ │ ├── fourier.in │ │ │ ├── log.pbe.scf.in │ │ │ ├── out.fourier-diff.in │ │ │ ├── out.fourier.in │ │ │ └── pbe.scf.in │ │ ├── pbe_idw │ │ │ ├── filexml.tar.gz │ │ │ ├── idw-sphere.dat │ │ │ ├── idw-sphere.in │ │ │ ├── idw.dat │ │ │ ├── idw.in │ │ │ ├── log.pbe.scf.nosym.in │ │ │ ├── out.idw-sphere.in │ │ │ ├── out.idw.in │ │ │ └── pbe.scf.nosym.in │ │ └── pbe_reference_bands │ │ │ ├── filexml.tar.gz │ │ │ ├── log.pbe.bands.in │ │ │ ├── log.pbe.nscf.in │ │ │ ├── log.pbe.pp.in │ │ │ ├── log.pbe.scf.in │ │ │ ├── pbe.bands.dat │ │ │ ├── pbe.bands.dat.gnu │ │ │ ├── pbe.bands.dat.rap │ │ │ ├── pbe.bands.in │ │ │ ├── pbe.nscf.in │ │ │ ├── pbe.pp.in │ │ │ └── pbe.scf.in │ ├── exx_scf_bands_example │ │ ├── README │ │ ├── reference │ │ │ ├── bands.dat │ │ │ ├── si.bands.in │ │ │ ├── si.bands.out │ │ │ ├── si.plotband.in │ │ │ ├── si.plotband.out │ │ │ ├── si.scf.in │ │ │ ├── si.scf.out │ │ │ ├── sibands-p.dat │ │ │ ├── sibands.dat │ │ │ └── sibands.dat.gnu │ │ └── run_example │ ├── fermisurf_example │ │ ├── README │ │ ├── reference │ │ │ ├── FS_b2pz.out │ │ │ ├── FS_vf.out │ │ │ ├── b2pz.frmsf │ │ │ ├── mgb2.pdos_atm#1(Mg)_wfc#1(s) │ │ │ ├── mgb2.pdos_atm#1(Mg)_wfc#2(p) │ │ │ ├── mgb2.pdos_atm#2(B)_wfc#1(s) │ │ │ ├── mgb2.pdos_atm#2(B)_wfc#2(p) │ │ │ ├── mgb2.pdos_atm#3(B)_wfc#1(s) │ │ │ ├── mgb2.pdos_atm#3(B)_wfc#2(p) │ │ │ ├── mgb2.pdos_tot │ │ │ ├── mgb2.proj.in │ │ │ ├── mgb2.proj.out │ │ │ ├── mgb2.scf.in │ │ │ ├── mgb2.scf.out │ │ │ └── vfermi.frmsf │ │ └── run_example │ ├── projected_bands_example │ │ ├── README │ │ ├── projwfc_to_bands.awk │ │ ├── reference │ │ │ ├── ni.kpdos_dw.png │ │ │ ├── ni.kpdos_up.png │ │ │ ├── pt.s-bands.png │ │ │ └── silicene.projbands.png │ │ └── run_example │ ├── pw2gw_example │ │ ├── README │ │ ├── reference │ │ │ ├── bn.nscf.out.xz │ │ │ ├── bn.pw2gw.out.xz │ │ │ ├── bn.scf.out │ │ │ ├── epsTOT.dat │ │ │ ├── epsX.dat │ │ │ ├── epsY.dat │ │ │ ├── epsZ.dat │ │ │ ├── k.dat │ │ │ └── matrixelements.xz │ │ └── run_example │ └── run_all_examples ├── simple_transport │ ├── README │ ├── examples │ │ ├── eg_ef │ │ │ ├── out.32 │ │ │ └── run_ef │ │ ├── eg_fermi_int_0 │ │ │ ├── README │ │ │ ├── reference │ │ │ │ ├── Def_0.out │ │ │ │ ├── Se_0.out │ │ │ │ └── sig_0.out │ │ │ └── run_0 │ │ ├── eg_fermi_int_1 │ │ │ ├── README │ │ │ ├── dop_vs_ef │ │ │ ├── reference │ │ │ │ ├── Def.1e+18.out │ │ │ │ ├── Def.1e+19.out │ │ │ │ ├── Def.1e+20.out │ │ │ │ ├── Def.1e+21.out │ │ │ │ ├── Se.1e+18.out │ │ │ │ ├── Se.1e+19.out │ │ │ │ ├── Se.1e+20.out │ │ │ │ ├── Se.1e+21.out │ │ │ │ ├── report.1e+18 │ │ │ │ ├── report.1e+19 │ │ │ │ ├── report.1e+20 │ │ │ │ ├── report.1e+21 │ │ │ │ ├── sig.1e+18.out │ │ │ │ ├── sig.1e+19.out │ │ │ │ ├── sig.1e+20.out │ │ │ │ └── sig.1e+21.out │ │ │ └── run_1 │ │ └── scf │ │ │ ├── As.pbe-n-kjpaw_psl.0.2.upf │ │ │ ├── Ga.pbe-dn-kjpaw_psl.0.2.upf │ │ │ ├── info-q │ │ │ ├── reference │ │ │ ├── GaAs.32.a2Fsave │ │ │ └── GaAs.scf.out │ │ │ └── run_GaAs_scf │ └── src │ │ ├── Makefile │ │ ├── cryst_to_car.f90 │ │ ├── dos.f90 │ │ ├── ef.f90 │ │ ├── fermi_int_0.f90 │ │ ├── fermi_int_1.f90 │ │ ├── lint.f90 │ │ ├── reducegrid.f90 │ │ ├── smearing_mod.f90 │ │ └── vband_ibz.f90 ├── src │ ├── Makefile │ ├── add_shift_cc.f90 │ ├── add_shift_lc.f90 │ ├── add_shift_us.f90 │ ├── adduscore.f90 │ ├── addusdens1d.f90 │ ├── atomic_wfc_nc_proj.f90 │ ├── average.f90 │ ├── band_interpolation.f90 │ ├── bands.f90 │ ├── chdens_bspline.f90 │ ├── chdens_bspline_sphere.f90 │ ├── chdens_module.f90 │ ├── compute_ppsi.f90 │ ├── compute_sigma_avg.f90 │ ├── cube.f90 │ ├── d3hess.f90 │ ├── d_matrix_nc.f90 │ ├── d_matrix_so.f90 │ ├── do_initial_state.f90 │ ├── do_shift_ew.f90 │ ├── dos.f90 │ ├── dosg.f90 │ ├── elf.f90 │ ├── epsilon.f90 │ ├── fermi_proj.f90 │ ├── fermi_velocity.f90 │ ├── fermisurface.f90 │ ├── fermisurfer_common.f90 │ ├── fft_interpolation_mod.f90 │ ├── fouriermod.f90 │ ├── ggen1d.f90 │ ├── globalmod.f90 │ ├── idwmod.f90 │ ├── initial_state.f90 │ ├── lebedev.f90 │ ├── local_dos.f90 │ ├── local_dos1d.f90 │ ├── local_dos_mag.f90 │ ├── molecularpdos.f90 │ ├── open_grid.f90 │ ├── openfil_pp.f90 │ ├── oscdft_et.f90 │ ├── oscdft_et_mod.f90 │ ├── oscdft_pp.f90 │ ├── oscdft_pp_mod.f90 │ ├── partialdos.f90 │ ├── paw_postproc.f90 │ ├── pawplot.f90 │ ├── plan_avg.f90 │ ├── plotband.f90 │ ├── plotproj.f90 │ ├── plotrho.f90 │ ├── poormanwannier.f90 │ ├── postproc.f90 │ ├── postrism.f90 │ ├── pp_example.f90 │ ├── ppacf.f90 │ ├── projections_mod.f90 │ ├── projwfc.f90 │ ├── projwfc_box.f90 │ ├── punch_plot.f90 │ ├── punch_rism.f90 │ ├── pw2bgw.f90 │ ├── pw2critic.f90 │ ├── pw2gt.f90 │ ├── pw2gw.f90 │ ├── pw2wannier90.f90 │ ├── read_proj.f90 │ ├── smallgk.f90 │ ├── solvdens.f90 │ ├── stm.f90 │ ├── stop_pp.f90 │ ├── sum_band_kin.f90 │ ├── sumpdos.f90 │ ├── sym_band.f90 │ ├── vasp_read_chgcar_mod.f90 │ ├── vasp_xml_module.f90 │ ├── wannier_enrg.f90 │ ├── wannier_ham.f90 │ ├── wannier_plot.f90 │ ├── wannier_proj.f90 │ ├── wfck2r.f90 │ ├── work_function.f90 │ ├── write_hamiltonians.f90 │ ├── write_io_header.f90 │ ├── write_p_avg.f90 │ ├── write_proj.f90 │ └── xc_vdW_scale_mod.f90 └── tools │ └── sum_states.py ├── PW ├── CMakeLists.txt ├── Doc │ ├── INPUT_MANYPW.txt │ ├── INPUT_OSCDFT.def │ ├── INPUT_OSCDFT.html │ ├── INPUT_OSCDFT.txt │ ├── INPUT_PW.def │ ├── INPUT_PW.html │ ├── INPUT_PW.txt │ ├── Makefile │ ├── user_guide.pdf │ └── user_guide.tex ├── Ford.md ├── Ford │ └── index.md ├── Makefile ├── examples │ ├── ESM_example │ │ ├── README │ │ ├── reference │ │ │ ├── Al001_bc1.esm1 │ │ │ ├── Al001_bc1.out │ │ │ ├── Al001_bc1.xml │ │ │ ├── Al001_bc2.esm1 │ │ │ ├── Al001_bc2.out │ │ │ ├── Al001_bc2.xml │ │ │ ├── Al001_bc2_FCP_v00.esm1 │ │ │ ├── Al001_bc2_FCP_v00.out │ │ │ ├── Al001_bc2_FCP_v00.xml │ │ │ ├── Al001_bc2_FCP_vm05.esm1 │ │ │ ├── Al001_bc2_FCP_vm05.out │ │ │ ├── Al001_bc2_FCP_vm05.xml │ │ │ ├── Al001_bc2_FCP_vp05.esm1 │ │ │ ├── Al001_bc2_FCP_vp05.out │ │ │ ├── Al001_bc2_FCP_vp05.xml │ │ │ ├── Al001_bc2_GCSCF_v00.esm1 │ │ │ ├── Al001_bc2_GCSCF_v00.out │ │ │ ├── Al001_bc2_GCSCF_v00.xml │ │ │ ├── Al001_bc2_GCSCF_vm05.esm1 │ │ │ ├── Al001_bc2_GCSCF_vm05.out │ │ │ ├── Al001_bc2_GCSCF_vm05.xml │ │ │ ├── Al001_bc2_GCSCF_vp05.esm1 │ │ │ ├── Al001_bc2_GCSCF_vp05.out │ │ │ ├── Al001_bc2_GCSCF_vp05.xml │ │ │ ├── Al001_bc2_efield.esm1 │ │ │ ├── Al001_bc2_efield.out │ │ │ ├── Al001_bc2_efield.xml │ │ │ ├── Al001_bc3.esm1 │ │ │ ├── Al001_bc3.out │ │ │ ├── Al001_bc3.xml │ │ │ ├── Al001_bc3_FCP_v00.esm1 │ │ │ ├── Al001_bc3_FCP_v00.out │ │ │ ├── Al001_bc3_FCP_v00.xml │ │ │ ├── Al001_bc3_FCP_vm05.esm1 │ │ │ ├── Al001_bc3_FCP_vm05.out │ │ │ ├── Al001_bc3_FCP_vm05.xml │ │ │ ├── Al001_bc3_FCP_vp05.esm1 │ │ │ ├── Al001_bc3_FCP_vp05.out │ │ │ ├── Al001_bc3_FCP_vp05.xml │ │ │ ├── Al001_bc3_GCSCF_v00.esm1 │ │ │ ├── Al001_bc3_GCSCF_v00.out │ │ │ ├── Al001_bc3_GCSCF_v00.xml │ │ │ ├── Al001_bc3_GCSCF_vm05.esm1 │ │ │ ├── Al001_bc3_GCSCF_vm05.out │ │ │ ├── Al001_bc3_GCSCF_vm05.xml │ │ │ ├── Al001_bc3_GCSCF_vp05.esm1 │ │ │ ├── Al001_bc3_GCSCF_vp05.out │ │ │ ├── Al001_bc3_GCSCF_vp05.xml │ │ │ ├── Al001_bc3_m002.esm1 │ │ │ ├── Al001_bc3_m002.out │ │ │ ├── Al001_bc3_m002.xml │ │ │ ├── Al001_bc3_p002.esm1 │ │ │ ├── Al001_bc3_p002.out │ │ │ ├── Al001_bc3_p002.xml │ │ │ ├── Al001_pbc.esm1 │ │ │ ├── Al001_pbc.out │ │ │ ├── Al001_pbc.xml │ │ │ ├── H2O_bc1.esm1 │ │ │ ├── H2O_bc1.out │ │ │ ├── H2O_bc1.xml │ │ │ ├── H2O_pbc.esm1 │ │ │ ├── H2O_pbc.out │ │ │ └── H2O_pbc.xml │ │ ├── run_example │ │ ├── run_example_ESM │ │ ├── run_example_FCP │ │ └── run_example_GCSCF │ ├── EXX_example │ │ ├── Pseudo │ │ │ ├── CPBE085nlcc.RRKJ3 │ │ │ ├── CPBE1nlcc.RRKJ3 │ │ │ ├── NPBE085nlcc.RRKJ3 │ │ │ ├── NPBE1nlcc.RRKJ3 │ │ │ ├── OPBE085nlcc.RRKJ3 │ │ │ └── OPBE1nlcc.RRKJ3 │ │ ├── README │ │ ├── README.gaupbe │ │ ├── reference │ │ │ ├── c.gaupbe.1nlcc.out-80 │ │ │ ├── c.hse.1nlcc.out-80 │ │ │ ├── c.pbe0.1nlcc.out-80 │ │ │ ├── co.gaupbe.1nlcc.out-80 │ │ │ ├── co.hse.1nlcc.out-80 │ │ │ ├── co.pbe0.1nlcc.out-80 │ │ │ ├── n.gaupbe.1nlcc.out-80 │ │ │ ├── n.hse.1nlcc.out-80 │ │ │ ├── n.pbe0.1nlcc.out-80 │ │ │ ├── n2.gaupbe.1nlcc.out-80 │ │ │ ├── n2.hse.1nlcc.out-80 │ │ │ ├── n2.pbe0.1nlcc.out-80 │ │ │ ├── o.gaupbe.1nlcc.out-80 │ │ │ ├── o.hse.1nlcc.out-80 │ │ │ ├── o.pbe0.1nlcc.out-80 │ │ │ ├── o2.gaupbe.1nlcc.out-80 │ │ │ ├── o2.hse.1nlcc.out-80 │ │ │ ├── o2.pbe0.1nlcc.out-80 │ │ │ ├── si.PBE0_nq=1.out │ │ │ ├── si.PBE0_nq=2.out │ │ │ ├── si.PBE0_nq=4.out │ │ │ ├── si.gaupbe_nq=1.out │ │ │ ├── si.gaupbe_nq=2.out │ │ │ ├── si.gaupbe_nq=4.out │ │ │ ├── si.hse_nq=1.out │ │ │ ├── si.hse_nq=2.out │ │ │ ├── si.hse_nq=4.out │ │ │ └── summarize │ │ └── run_example │ ├── Extffield_example │ │ ├── README │ │ ├── reference │ │ │ ├── SiH4.extffield │ │ │ ├── SiH4.inp │ │ │ └── extffield.dat │ │ └── run_example │ ├── README │ ├── RISM_example │ │ ├── MOL │ │ │ ├── Cl-.aq.MOL │ │ │ ├── Ethanol.oplsua.MOL │ │ │ ├── H2O.spc.MOL │ │ │ └── Na+.aq.MOL │ │ ├── README │ │ ├── reference │ │ │ ├── Al-NaCl_aq.1drism │ │ │ ├── Al-NaCl_aq.esm1 │ │ │ ├── Al-NaCl_aq.rism1 │ │ │ ├── Al-NaCl_aq.xml │ │ │ ├── Cl-_NaCl_aq.1drism │ │ │ ├── Cl-_NaCl_aq.esm1 │ │ │ ├── Cl-_NaCl_aq.rism1 │ │ │ ├── Cl-_NaCl_aq.xml │ │ │ ├── H2O.NaCl_aq.1drism │ │ │ ├── H2O.NaCl_aq.xml │ │ │ ├── HCHO.aq.1drism │ │ │ ├── HCHO.aq.xml │ │ │ ├── Li-EtOH.1drism │ │ │ ├── Li-EtOH.esm1 │ │ │ ├── Li-EtOH.rism1 │ │ │ └── Li-EtOH.xml │ │ ├── run_example │ │ ├── run_example_3D-RISM │ │ └── run_example_ESM-RISM │ ├── VCSexample │ │ ├── README │ │ ├── reference │ │ │ ├── As.bfgs00.out │ │ │ ├── As.bfgs500.out │ │ │ ├── As.vcs00.out │ │ │ └── As.vcs500.out │ │ └── run_example │ ├── clean_all │ ├── cluster_example │ │ ├── README │ │ ├── reference │ │ │ ├── h2o.eigenvalues │ │ │ ├── h2o.out-12 │ │ │ ├── h2o.out-16 │ │ │ ├── h2o.out-20 │ │ │ ├── h2o.out-24 │ │ │ ├── n.eigenvalues │ │ │ ├── n.out-12 │ │ │ ├── n.out-16 │ │ │ ├── n.out-20 │ │ │ ├── n.out-24 │ │ │ ├── nh4+.eigenvalues │ │ │ ├── nh4+.out-12 │ │ │ ├── nh4+.out-16 │ │ │ ├── nh4+.out-20 │ │ │ └── nh4+.out-24 │ │ └── run_example │ ├── dftd3_example │ │ ├── reference │ │ │ ├── graphite_d2.in │ │ │ ├── graphite_d2.out │ │ │ ├── graphite_d3.in │ │ │ └── graphite_d3.out │ │ └── run_example │ ├── example01 │ │ ├── README │ │ ├── reference │ │ │ ├── al.band.cg.out │ │ │ ├── al.band.david.out │ │ │ ├── al.band.ppcg.out │ │ │ ├── al.scf.cg.out │ │ │ ├── al.scf.david.out │ │ │ ├── al.scf.ppcg.out │ │ │ ├── cu.band.cg.out │ │ │ ├── cu.band.david.out │ │ │ ├── cu.band.ppcg.out │ │ │ ├── cu.scf.cg.out │ │ │ ├── cu.scf.david.out │ │ │ ├── cu.scf.ppcg.out │ │ │ ├── ni.band.cg.out │ │ │ ├── ni.band.david.out │ │ │ ├── ni.band.ppcg.out │ │ │ ├── ni.scf.cg.out │ │ │ ├── ni.scf.david.out │ │ │ ├── ni.scf.ppcg.out │ │ │ ├── si.band.cg.out │ │ │ ├── si.band.david.out │ │ │ ├── si.band.ppcg.out │ │ │ ├── si.scf.cg.out │ │ │ ├── si.scf.david.out │ │ │ └── si.scf.ppcg.out │ │ └── run_example │ ├── example02 │ │ ├── README │ │ ├── reference │ │ │ ├── al001.mm.out │ │ │ ├── al001.rx.out │ │ │ └── co.rx.out │ │ └── run_example │ ├── example03 │ │ ├── README │ │ ├── reference │ │ │ ├── si.md2.out │ │ │ ├── si.md2_G3X.out │ │ │ └── si.md8.out │ │ └── run_example │ ├── example04 │ │ ├── README │ │ ├── reference │ │ │ ├── BP.out │ │ │ └── chg.out │ │ └── run_example │ ├── example05 │ │ ├── README │ │ ├── reference │ │ │ ├── Ni_gamma_d8s2.out │ │ │ ├── Ni_gamma_d9s1.out │ │ │ ├── O.out │ │ │ ├── O_gamma.out │ │ │ └── al.out │ │ └── run_example │ ├── example06 │ │ ├── README │ │ ├── reference │ │ │ ├── cu.band.out │ │ │ ├── cu.cg.out │ │ │ ├── cu.scf.out │ │ │ ├── fe.angl.out │ │ │ ├── fe.band.out │ │ │ ├── fe.pen.out │ │ │ ├── fe.scf.out │ │ │ ├── fe.total.out │ │ │ ├── ni.band.out │ │ │ ├── ni.scf.out │ │ │ └── o2.relax.out │ │ └── run_example │ ├── example07 │ │ ├── README │ │ ├── reference │ │ │ ├── bands.pt.re │ │ │ ├── pt.nscf.out │ │ │ └── pt.scf.out │ │ └── run_example │ ├── example08 │ │ ├── README │ │ ├── reference │ │ │ ├── feo_LDA.in │ │ │ ├── feo_standard.in │ │ │ └── feo_user_ns.in │ │ └── run_example │ ├── example09 │ │ ├── README │ │ ├── reference │ │ │ └── c4h6.pw.metaGGA.out │ │ └── run_example │ ├── example10 │ │ ├── README │ │ ├── reference │ │ │ ├── alas.scf.efield.out │ │ │ ├── alas.scf.efield2.out │ │ │ ├── si.scf.efield.out │ │ │ └── si.scf.efield2.out │ │ └── run_example │ ├── example11 │ │ ├── README │ │ ├── reference │ │ │ ├── Fe.band_pbe.out │ │ │ └── Fe.scf_pbe.out │ │ └── run_example │ ├── example12 │ │ ├── README │ │ ├── reference │ │ │ ├── Fe.bands.in │ │ │ └── Fe.scf.in │ │ └── run_example │ ├── example13 │ │ ├── reference │ │ │ ├── LiCoO2.scf.in │ │ │ └── LiCoO2.scf.out │ │ └── run_example │ ├── example14 │ │ ├── README │ │ ├── run_example │ │ └── srvo3_dmft.h5 │ ├── gammaDFT_example │ │ ├── README │ │ ├── reference │ │ │ ├── MgO_1.in │ │ │ ├── MgO_2.in │ │ │ └── MgO_3.in │ │ └── run_example │ ├── gatefield │ │ ├── reference │ │ │ ├── single_+0.10.bands.in │ │ │ ├── single_+0.10.bands.out │ │ │ ├── single_+0.10.in │ │ │ ├── single_+0.10.out │ │ │ ├── single_+0.10_nobarrier.bands.in │ │ │ ├── single_+0.10_nobarrier.bands.out │ │ │ ├── single_+0.10_nobarrier.in │ │ │ ├── single_+0.10_nobarrier.out │ │ │ ├── single_-0.10.in │ │ │ └── single_-0.10.out │ │ └── run_example │ ├── run_all_examples │ └── vdwDF_example │ │ ├── README │ │ ├── reference │ │ ├── Ar.scf.out │ │ ├── graphite.scf.out │ │ └── water.scf.out │ │ ├── reference_dscf │ │ ├── graphite.scf.+1.out │ │ ├── graphite.scf.-1.out │ │ ├── graphite.scf.0.out │ │ ├── water.scf.+1.out │ │ ├── water.scf.-1.out │ │ └── water.scf.0.out │ │ ├── run_example │ │ └── run_example_delta_scf ├── src │ ├── Coul_cut_2D.f90 │ ├── Makefile │ ├── a2fmod.f90 │ ├── acfdt_in_pw.f90 │ ├── add_bfield.f90 │ ├── add_dmft_occ.f90 │ ├── add_efield.f90 │ ├── add_gatefield.f90 │ ├── add_paw_to_deeq.f90 │ ├── add_paw_to_deeq_gpu.f90 │ ├── add_qexsd_step.f90 │ ├── add_vhub_to_deeq.f90 │ ├── add_vhub_to_deeq_gpu.f90 │ ├── add_vuspsi.f90 │ ├── add_vuspsi_gpu.f90 │ ├── addusdens.f90 │ ├── addusforce.f90 │ ├── addusstress.f90 │ ├── allocate_fft.f90 │ ├── allocate_locpot.f90 │ ├── allocate_nlpot.f90 │ ├── allocate_wfc.f90 │ ├── atomic_rho.f90 │ ├── atomic_wfc.f90 │ ├── atomic_wfc_mod.f90 │ ├── average_pp.f90 │ ├── beef.f90 │ ├── bp_c_phase.f90 │ ├── bp_mod.f90 │ ├── bp_strings.f90 │ ├── buffers.f90 │ ├── c_bands.f90 │ ├── c_phase_field.f90 │ ├── cdiagh.f90 │ ├── clean_pw.f90 │ ├── close_files.f90 │ ├── commutator_Hx_psi.f90 │ ├── commutator_Vhubx_psi.f90 │ ├── compute_becsum.f90 │ ├── compute_deff.f90 │ ├── compute_dip.f90 │ ├── compute_qdipol.f90 │ ├── compute_qdipol_so.f90 │ ├── compute_rho.f90 │ ├── compute_ux.f90 │ ├── coset.f90 │ ├── d3hess_mod.f90 │ ├── d_matrix.f90 │ ├── data_structure.f90 │ ├── divide_class.f90 │ ├── divide_class_so.f90 │ ├── divide_et_impera.f90 │ ├── dynamics_module.f90 │ ├── efermig.f90 │ ├── efermit.f90 │ ├── electrons.f90 │ ├── environ_io_stub.f90 │ ├── environ_pw_module.f90 │ ├── eqvect.f90 │ ├── esm.f90 │ ├── esm_common_mod.f90 │ ├── esm_ewald_mod.f90 │ ├── esm_force_mod.f90 │ ├── esm_hartree_mod.f90 │ ├── esm_local_mod.f90 │ ├── esm_stres_mod.f90 │ ├── ewald.f90 │ ├── ewald_dipole.f90 │ ├── extfield.f90 │ ├── exx.f90 │ ├── exx_band.f90 │ ├── exx_base.f90 │ ├── fcp_capacitance.f90 │ ├── fcp_dyn_calcavg.f90 │ ├── fcp_dyn_printavg.f90 │ ├── fcp_dynamics.f90 │ ├── fcp_hessian.f90 │ ├── fcp_input.f90 │ ├── fcp_module.f90 │ ├── fcp_relaxation.f90 │ ├── find_group.f90 │ ├── force_cc.f90 │ ├── force_corr.f90 │ ├── force_ew.f90 │ ├── force_hub.f90 │ ├── force_lc.f90 │ ├── force_us.f90 │ ├── forces.f90 │ ├── forces_bp_efield.f90 │ ├── g2_kin.f90 │ ├── g_psi.f90 │ ├── g_psi_gpu.f90 │ ├── g_psi_mod.f90 │ ├── g_psi_mod_gpu.f90 │ ├── gcscf_input.f90 │ ├── gcscf_module.f90 │ ├── gen_at_dj.f90 │ ├── gen_at_dy.f90 │ ├── get_locals.f90 │ ├── gk_sort.f90 │ ├── gradcorr.f90 │ ├── gweights.f90 │ ├── h_epsi_her_apply.f90 │ ├── h_epsi_her_set.f90 │ ├── h_psi.f90 │ ├── h_psi_gpu.f90 │ ├── h_psi_meta.f90 │ ├── hinit0.f90 │ ├── hinit1.f90 │ ├── hs_1psi.f90 │ ├── hs_1psi_gpu.f90 │ ├── hs_psi.f90 │ ├── hs_psi_gpu.f90 │ ├── hubbard.f90 │ ├── init_ns.f90 │ ├── init_nsg.f90 │ ├── init_q_aeps.f90 │ ├── init_run.f90 │ ├── init_us_2.f90 │ ├── init_vloc.f90 │ ├── input.f90 │ ├── intersite_V.f90 │ ├── io_rho_xml.f90 │ ├── irrek.f90 │ ├── iweights.f90 │ ├── kpoint_grid.f90 │ ├── lchk_tauxk.f90 │ ├── ldaU.f90 │ ├── loc_scdm.f90 │ ├── loc_scdm_k.f90 │ ├── make_pointlists.f90 │ ├── manypw.f90 │ ├── martyna_tuckerman.f90 │ ├── memory_report.f90 │ ├── mix_rho.f90 │ ├── move_ions.f90 │ ├── multable.f90 │ ├── n_plane_waves.f90 │ ├── new_ns.f90 │ ├── new_nsb.f90 │ ├── new_nsg.f90 │ ├── new_occ.f90 │ ├── newd.f90 │ ├── newd_gpu.f90 │ ├── non_scf.f90 │ ├── ns_adj.f90 │ ├── nsg_adj.f90 │ ├── offset_atom_wfc.f90 │ ├── openfil.f90 │ ├── orbm_kubo.f90 │ ├── ortho_wfc.f90 │ ├── orthoatwfc.f90 │ ├── oscdft_base.f90 │ ├── oscdft_context.f90 │ ├── oscdft_enums.f90 │ ├── oscdft_forces.f90 │ ├── oscdft_forces_subs.f90 │ ├── oscdft_functions.f90 │ ├── oscdft_functions_gpu.f90 │ ├── oscdft_indices.f90 │ ├── oscdft_input.f90 │ ├── oscdft_occupations.f90 │ ├── oscdft_wavefunction.f90 │ ├── oscdft_wavefunction_subs.f90 │ ├── oscdft_wfcO.f90 │ ├── output_tau.f90 │ ├── para.f90 │ ├── paw_exx.f90 │ ├── paw_init.f90 │ ├── paw_onecenter.f90 │ ├── paw_symmetry.f90 │ ├── plugin_check.f90 │ ├── plugin_clean.f90 │ ├── plugin_clock.f90 │ ├── plugin_ext_forces.f90 │ ├── plugin_init_cell.f90 │ ├── plugin_init_ions.f90 │ ├── plugin_init_potential.f90 │ ├── plugin_initbase.f90 │ ├── plugin_initialization.f90 │ ├── plugin_int_forces.f90 │ ├── plugin_print_energies.f90 │ ├── plugin_read_input.f90 │ ├── plugin_scf_energy.f90 │ ├── plugin_scf_potential.f90 │ ├── plugin_summary.f90 │ ├── plus_u_full.f90 │ ├── potinit.f90 │ ├── print_clock_pw.f90 │ ├── print_ks_energies.f90 │ ├── punch.f90 │ ├── pw2blip.f90 │ ├── pw2casino.f90 │ ├── pw2casino_write.f90 │ ├── pw_init_qexsd_input.f90 │ ├── pw_restart_new.f90 │ ├── pwcom.f90 │ ├── pwcom_gpu.f90 │ ├── pwscf.f90 │ ├── rdiagh.f90 │ ├── read_conf_from_file.f90 │ ├── read_file_new.f90 │ ├── realus.f90 │ ├── remove_atomic_rho.f90 │ ├── report_mag.f90 │ ├── restart_in_electrons.f90 │ ├── rho2zeta.f90 │ ├── rism_module.f90 │ ├── rotate_wfc.f90 │ ├── rotate_wfc_gpu.f90 │ ├── run_driver.f90 │ ├── run_pwscf.f90 │ ├── ruotaijk.f90 │ ├── s_1psi.f90 │ ├── s_1psi_gpu.f90 │ ├── s_psi.f90 │ ├── s_psi_acc.f90 │ ├── save_in_cbands.f90 │ ├── save_in_electrons.f90 │ ├── scale_h.f90 │ ├── scf_mod.f90 │ ├── scf_mod_gpu.f90 │ ├── scissor.f90 │ ├── set_kplusq.f90 │ ├── set_kup_and_kdw.f90 │ ├── set_occupations.f90 │ ├── set_rhoc.f90 │ ├── set_spin_vars.f90 │ ├── set_vrs.f90 │ ├── setlocal.f90 │ ├── setup.f90 │ ├── sic.f90 │ ├── start_k.f90 │ ├── stop_run.f90 │ ├── stres_cc.f90 │ ├── stres_ewa.f90 │ ├── stres_gradcorr.f90 │ ├── stres_har.f90 │ ├── stres_hub.f90 │ ├── stres_knl.f90 │ ├── stres_loc.f90 │ ├── stres_mgga.f90 │ ├── stres_nonloc_dft.f90 │ ├── stres_us.f90 │ ├── stress.f90 │ ├── struct_fact.f90 │ ├── sum_band.f90 │ ├── sum_band_gpu.f90 │ ├── sumkg.f90 │ ├── sumkt.f90 │ ├── summary.f90 │ ├── symm_base.f90 │ ├── symme.f90 │ ├── symmetrize_at.f90 │ ├── tetra.f90 │ ├── transform_becsum_nc.f90 │ ├── transform_becsum_so.f90 │ ├── trnvecc.f90 │ ├── two_chem.f90 │ ├── update_pot.f90 │ ├── us_exx.f90 │ ├── usnldiag.f90 │ ├── usnldiag_gpu.f90 │ ├── utils.f90 │ ├── utils_gpu.f90 │ ├── v_of_rho.f90 │ ├── vcsmd.f90 │ ├── vcsubs.f90 │ ├── vhpsi.f90 │ ├── vhpsi_gpu.f90 │ ├── vloc_psi.f90 │ ├── vloc_psi_gpu.f90 │ ├── wannier_check.f90 │ ├── wannier_clean.f90 │ ├── wannier_init.f90 │ ├── wannier_occ.f90 │ ├── weights.f90 │ ├── wfcinit.f90 │ ├── write_ns.f90 │ ├── wsweight.f90 │ └── xdm_dispersion.f90 └── tools │ ├── Makefile │ ├── README │ ├── bs.awk │ ├── castep2qe.sh │ ├── cell2ibrav.f90 │ ├── cif2qe.sh │ ├── ev.f90 │ ├── ibrav2cell.f90 │ ├── kpoints.f90 │ ├── md_analyzer.sh │ ├── mv.awk │ ├── pwi2xsf.f90 │ ├── pwi2xsf.sh │ ├── pwo2xsf.sh │ ├── qeout2axsf.sh │ ├── rism1d.f90 │ ├── scan_ibrav.f90 │ └── xsf2pwi.sh ├── PWCOND ├── CMakeLists.txt ├── Doc │ ├── INPUT_PWCOND.def │ ├── INPUT_PWCOND.html │ ├── INPUT_PWCOND.txt │ └── Makefile ├── Makefile ├── examples │ ├── clean_all │ ├── example01 │ │ ├── README │ │ ├── reference │ │ │ ├── AlwireAl.cond.out │ │ │ ├── AlwireH.cond.out │ │ │ ├── AlwireH.scf.out │ │ │ ├── al.cond.out │ │ │ ├── al.scf.out │ │ │ ├── alwire.cond.out │ │ │ ├── alwire.scf.out │ │ │ ├── alwire1.scf.out │ │ │ ├── bands.al.co │ │ │ ├── bands.al.im │ │ │ ├── bands.al.re │ │ │ ├── bands.alwire.co │ │ │ ├── bands.alwire.im │ │ │ ├── bands.alwire.re │ │ │ ├── bands.ni_down.co │ │ │ ├── bands.ni_down.im │ │ │ ├── bands.ni_down.re │ │ │ ├── ni.cond.out │ │ │ ├── ni.scf.out │ │ │ ├── trans.alwire │ │ │ └── trans.alwireh │ │ └── run_example │ ├── example02 │ │ ├── README │ │ ├── reference │ │ │ ├── pt.cond.out │ │ │ ├── pt.cond_t.out │ │ │ ├── pt.tet.out │ │ │ └── pt4.out │ │ └── run_example │ ├── example03 │ │ ├── README │ │ ├── reference │ │ │ ├── Auwire.cond.out │ │ │ ├── Auwire.scf.out │ │ │ ├── Auwire1.scf.out │ │ │ ├── Auwire1U.scf.out │ │ │ ├── AuwireU.cond.out │ │ │ ├── AuwireU.scf.out │ │ │ ├── COatAuwire.cond.out │ │ │ ├── COatAuwire.scf.out │ │ │ ├── COatAuwireU.cond.out │ │ │ ├── COatAuwireU.scf.out │ │ │ ├── bands.Auwire.co_im │ │ │ ├── bands.Auwire.co_re │ │ │ ├── bands.Auwire.im │ │ │ ├── bands.Auwire.re │ │ │ ├── bandsU.Auwire.co_im │ │ │ ├── bandsU.Auwire.co_re │ │ │ ├── bandsU.Auwire.im │ │ │ ├── bandsU.Auwire.re │ │ │ ├── plot_results.gnu │ │ │ ├── trans.AuwireCO │ │ │ └── transU.AuwireCO │ │ └── run_example │ └── run_all_examples └── src │ ├── Makefile │ ├── allocate_cond.f90 │ ├── bessj.f90 │ ├── compbs.f90 │ ├── compbs_2.f90 │ ├── cond_out.f90 │ ├── cond_restart.f90 │ ├── condcom.f90 │ ├── condmain.f90 │ ├── do_cond.f90 │ ├── eigenchnl.f90 │ ├── form_zk.f90 │ ├── four.f90 │ ├── free_mem.f90 │ ├── gep_x.f90 │ ├── gramsh.f90 │ ├── hev_ab.f90 │ ├── init_cond.f90 │ ├── init_gper.f90 │ ├── init_orbitals.f90 │ ├── integrals.f90 │ ├── jbloch.f90 │ ├── kbloch.f90 │ ├── local.f90 │ ├── local_set.f90 │ ├── openfil_cond.f90 │ ├── plus_u_setup.f90 │ ├── poten.f90 │ ├── print_clock_pwcond.f90 │ ├── realus_scatt.f90 │ ├── rotproc.f90 │ ├── save_cond.f90 │ ├── scat_states_plot.f90 │ ├── scatter_forw.f90 │ ├── summary_band.f90 │ ├── summary_tran.f90 │ ├── sunitary.f90 │ └── transmit.f90 ├── QEHeat ├── CMakeLists.txt ├── Doc │ ├── INPUT_ALL_CURRENTS.def │ ├── INPUT_ALL_CURRENTS.html │ ├── INPUT_ALL_CURRENTS.txt │ ├── Makefile │ └── input_xx.xsl ├── Makefile ├── README ├── examples │ ├── README.md │ ├── example_H2O_trajectory │ │ ├── input │ │ ├── reference │ │ │ ├── current_hz │ │ │ ├── current_hz.dat │ │ │ └── output │ │ ├── run_example.sh │ │ ├── traj.pos │ │ └── traj.vel │ ├── example_SiO2_single │ │ ├── input_energycurrent │ │ ├── reference │ │ │ ├── current_hz │ │ │ ├── current_hz.dat │ │ │ └── output_energycurrent │ │ └── run_example.sh │ ├── example_small_H20_trajectory │ │ ├── input_all_currents │ │ ├── input_cp │ │ ├── reference │ │ │ ├── current_hz │ │ │ ├── current_hz.dat │ │ │ ├── out_all_currents │ │ │ ├── out_cp │ │ │ └── traj │ │ │ │ ├── cp.0_0 │ │ │ │ ├── cp.cel │ │ │ │ ├── cp.con │ │ │ │ ├── cp.eig │ │ │ │ ├── cp.evp │ │ │ │ ├── cp.for │ │ │ │ ├── cp.hrs │ │ │ │ ├── cp.ncg │ │ │ │ ├── cp.nos │ │ │ │ ├── cp.pol │ │ │ │ ├── cp.pos │ │ │ │ ├── cp.spr │ │ │ │ ├── cp.str │ │ │ │ ├── cp.the │ │ │ │ ├── cp.vel │ │ │ │ └── cp.wfc │ │ └── run_example_water │ └── pseudo │ │ ├── Ar_ONCV_PBE-1.0.upf │ │ ├── H_HSCV_PBE-1.0.upf │ │ ├── O_HSCV_PBE-1.0.upf │ │ ├── O_ONCV_PBE-1.0.upf │ │ └── Si_ONCV_PBE-1.1.upf └── src │ ├── Makefile │ ├── all_currents.f90 │ ├── averages.f90 │ ├── compute_charge.f90 │ ├── cpv_traj.f90 │ ├── cpv_traj_test.f90 │ ├── ec_functionals.f90 │ ├── hartree_xc_mod.f90 │ ├── init_us_3.f90 │ ├── ionic_mod.f90 │ ├── kohn_sham_mod.f90 │ ├── project.f90 │ ├── scf_result.f90 │ ├── test_h_psi_s_psi_commutator_Hx_psi.f90 │ ├── traj_object.f90 │ └── zero_mod.f90 ├── README.md ├── README_GPU.md ├── TDDFPT ├── .dependencies ├── CMakeLists.txt ├── ColorCalculator │ ├── CIEx │ ├── CIEy │ ├── CIEz │ ├── ColorCalculator5.jar │ ├── D65.light │ ├── Install │ ├── Makefile │ ├── README │ ├── colorBlue.dat │ ├── pelargonin_inter_sort.dat │ ├── pelargonin_no_inter.dat │ ├── pelargonin_no_inter_no_sort.dat │ └── src │ │ ├── ColorCalculator.java │ │ ├── ColorWindow.java │ │ ├── GUITools.java │ │ ├── Graph.java │ │ ├── GraphFactory.java │ │ └── Manifest.txt ├── Doc │ ├── INPUT_Davidson.def │ ├── INPUT_Davidson.html │ ├── INPUT_Davidson.txt │ ├── INPUT_Davidson.xml │ ├── INPUT_EELS.def │ ├── INPUT_EELS.html │ ├── INPUT_EELS.txt │ ├── INPUT_EELS.xml │ ├── INPUT_Lanczos.def │ ├── INPUT_Lanczos.html │ ├── INPUT_Lanczos.txt │ ├── INPUT_Lanczos.xml │ ├── INPUT_Magnon.def │ ├── INPUT_Magnon.html │ ├── INPUT_Magnon.txt │ ├── INPUT_Spectrum.def │ ├── INPUT_Spectrum.html │ ├── INPUT_Spectrum.txt │ ├── INPUT_Spectrum.xml │ └── Makefile ├── Makefile ├── README ├── examples │ ├── README │ ├── clean_all │ ├── example01 │ │ ├── reference │ │ │ ├── CH4.plot_S.dat │ │ │ ├── CH4.plot_chi.dat │ │ │ ├── CH4.scf.in │ │ │ ├── CH4.scf.out │ │ │ ├── CH4.tddfpt.in │ │ │ ├── CH4.tddfpt.out │ │ │ ├── CH4.tddfpt_pp.in │ │ │ └── CH4.tddfpt_pp.out │ │ └── run_example │ ├── example02 │ │ ├── reference │ │ │ ├── C6H6.plot_S.dat │ │ │ ├── C6H6.plot_chi.dat │ │ │ ├── C6H6.scf.in │ │ │ ├── C6H6.scf.out │ │ │ ├── C6H6.tddfpt.in │ │ │ ├── C6H6.tddfpt.out │ │ │ ├── C6H6.tddfpt_pp.in │ │ │ └── C6H6.tddfpt_pp.out │ │ └── run_example │ ├── example03 │ │ ├── reference │ │ │ ├── C6H6.plot_S.dat │ │ │ ├── C6H6.plot_chi.dat │ │ │ ├── C6H6.scf.in │ │ │ ├── C6H6.scf.out │ │ │ ├── C6H6.tddfpt.in │ │ │ ├── C6H6.tddfpt.out │ │ │ ├── C6H6.tddfpt_pp.in │ │ │ └── C6H6.tddfpt_pp.out │ │ └── run_example │ ├── example04 │ │ ├── reference │ │ │ ├── CH4.plot_S.dat │ │ │ ├── CH4.plot_chi.dat │ │ │ ├── CH4.scf.in │ │ │ ├── CH4.scf.out │ │ │ ├── CH4.tddfpt.in │ │ │ ├── CH4.tddfpt.out │ │ │ ├── CH4.tddfpt_pp.in │ │ │ └── CH4.tddfpt_pp.out │ │ └── run_example │ ├── example05 │ │ ├── reference │ │ │ ├── CH4.plot_S.dat │ │ │ ├── CH4.plot_chi.dat │ │ │ ├── CH4.scf.in │ │ │ ├── CH4.scf.out │ │ │ ├── CH4.tddfpt.in │ │ │ ├── CH4.tddfpt.out │ │ │ ├── CH4.tddfpt_pp.in │ │ │ └── CH4.tddfpt_pp.out │ │ └── run_example │ ├── example06 │ │ ├── reference │ │ │ ├── CH4.plot_S.dat │ │ │ ├── CH4.plot_chi.dat │ │ │ ├── CH4.scf.in │ │ │ ├── CH4.scf.out │ │ │ ├── CH4.tddfpt.in │ │ │ ├── CH4.tddfpt.out │ │ │ ├── CH4.tddfpt2.in │ │ │ ├── CH4.tddfpt2.out │ │ │ ├── CH4.tddfpt_pp.in │ │ │ ├── CH4.tddfpt_pp.out │ │ │ └── README │ │ └── run_example │ ├── example07 │ │ ├── reference │ │ │ ├── CH4.plot_S.dat │ │ │ ├── CH4.plot_chi.dat │ │ │ ├── CH4.scf.in │ │ │ ├── CH4.scf.out │ │ │ ├── CH4.tddfpt.in │ │ │ ├── CH4.tddfpt.out │ │ │ ├── CH4.tddfpt_pp.in │ │ │ ├── CH4.tddfpt_pp.out │ │ │ └── environ.in │ │ └── run_example │ ├── example08 │ │ ├── reference │ │ │ ├── CH4.eigen │ │ │ ├── CH4.plot.dat │ │ │ ├── CH4.scf.in │ │ │ ├── CH4.scf.out │ │ │ ├── CH4.tddfpt.in │ │ │ └── CH4.tddfpt.out │ │ └── run_example │ ├── example09 │ │ ├── reference │ │ │ ├── C6H6.eigen │ │ │ ├── C6H6.plot.dat │ │ │ ├── C6H6.scf.in │ │ │ ├── C6H6.scf.out │ │ │ ├── C6H6.tddfpt.in │ │ │ └── C6H6.tddfpt.out │ │ └── run_example │ ├── example10 │ │ ├── reference │ │ │ ├── CH4.eigen │ │ │ ├── CH4.plot.dat │ │ │ ├── CH4.scf.in │ │ │ ├── CH4.scf.out │ │ │ ├── CH4.tddfpt.in │ │ │ └── CH4.tddfpt.out │ │ └── run_example │ ├── example11 │ │ ├── reference │ │ │ ├── CH4.eigen │ │ │ ├── CH4.plot.dat │ │ │ ├── CH4.scf.in │ │ │ ├── CH4.scf.out │ │ │ ├── CH4.tddfpt.in │ │ │ ├── CH4.tddfpt.out │ │ │ └── environ.in │ │ └── run_example │ ├── example12 │ │ ├── reference │ │ │ ├── H2O.eigen │ │ │ ├── H2O.plot.dat │ │ │ ├── H2O.pp.in │ │ │ ├── H2O.pp.out │ │ │ ├── H2O.scf.in │ │ │ ├── H2O.scf.out │ │ │ ├── H2O.tddfpt.in │ │ │ ├── H2O.tddfpt.out │ │ │ └── drho-of-eign-1.cube │ │ └── run_example │ ├── example13 │ │ ├── reference │ │ │ ├── Si.plot_chi.dat │ │ │ ├── Si.plot_eps.dat │ │ │ ├── Si.scf.in │ │ │ ├── Si.scf.out │ │ │ ├── Si.tddfpt.in │ │ │ ├── Si.tddfpt.out │ │ │ ├── Si.tddfpt_pp.in │ │ │ └── Si.tddfpt_pp.out │ │ └── run_example │ ├── example14 │ │ ├── reference │ │ │ ├── Al.plot_chi.dat │ │ │ ├── Al.plot_eps.dat │ │ │ ├── Al.scf.in │ │ │ ├── Al.scf.out │ │ │ ├── Al.tddfpt.in │ │ │ ├── Al.tddfpt.out │ │ │ ├── Al.tddfpt_pp.in │ │ │ └── Al.tddfpt_pp.out │ │ └── run_example │ ├── example15 │ │ ├── reference │ │ │ ├── Ag.plot_chi.dat │ │ │ ├── Ag.plot_eps.dat │ │ │ ├── Ag.scf.in │ │ │ ├── Ag.scf.out │ │ │ ├── Ag.tddfpt.in │ │ │ ├── Ag.tddfpt.out │ │ │ ├── Ag.tddfpt_pp.in │ │ │ └── Ag.tddfpt_pp.out │ │ └── run_example │ ├── example16 │ │ ├── reference │ │ │ ├── Bi.plot_chi.dat │ │ │ ├── Bi.plot_eps.dat │ │ │ ├── Bi.scf.in │ │ │ ├── Bi.scf.out │ │ │ ├── Bi.tddfpt.in │ │ │ ├── Bi.tddfpt.out │ │ │ ├── Bi.tddfpt_pp.in │ │ │ └── Bi.tddfpt_pp.out │ │ └── run_example │ ├── example17 │ │ ├── reference │ │ │ ├── Bi.plot_chi.dat │ │ │ ├── Bi.plot_eps.dat │ │ │ ├── Bi.scf.in │ │ │ ├── Bi.scf.out │ │ │ ├── Bi.tddfpt.in │ │ │ ├── Bi.tddfpt.out │ │ │ ├── Bi.tddfpt_pp.in │ │ │ └── Bi.tddfpt_pp.out │ │ └── run_example │ ├── example18 │ │ ├── reference │ │ │ ├── Al.plot_chi.dat │ │ │ ├── Al.plot_eps.dat │ │ │ ├── Al.scf.in │ │ │ ├── Al.scf.out │ │ │ ├── Al.tddfpt.in │ │ │ └── Al.tddfpt.out │ │ └── run_example │ ├── example19 │ │ ├── reference │ │ │ ├── Fe.plot_chi.dat │ │ │ ├── Fe.scf.in │ │ │ ├── Fe.scf.out │ │ │ ├── Fe.tddfpt.in │ │ │ ├── Fe.tddfpt.out │ │ │ ├── Fe.tddfpt_pp.in │ │ │ └── Fe.tddfpt_pp.out │ │ └── run_example │ └── run_all_examples └── src │ ├── Makefile │ ├── bcast_lr_input.f90 │ ├── dveqpsi_us.f90 │ ├── dveqpsi_us_only.f90 │ ├── environ_td_module.f90 │ ├── linear_solvers.f90 │ ├── lr_Opsi_magnons.f90 │ ├── lr_addus_dvpsi.f90 │ ├── lr_alloc_init.f90 │ ├── lr_apply_liouvillian.f90 │ ├── lr_apply_liouvillian_eels.f90 │ ├── lr_apply_liouvillian_magnons.f90 │ ├── lr_calc_dens.f90 │ ├── lr_calc_dens_eels.f90 │ ├── lr_calc_dens_eels_nc.f90 │ ├── lr_calc_dens_magnons.f90 │ ├── lr_charg_resp.f90 │ ├── lr_compute_intq.f90 │ ├── lr_dav_debug.f90 │ ├── lr_dav_main.f90 │ ├── lr_dav_routines.f90 │ ├── lr_dav_variables.f90 │ ├── lr_dealloc.f90 │ ├── lr_dv_setup.f90 │ ├── lr_dvpsi_e.f90 │ ├── lr_dvpsi_eels.f90 │ ├── lr_dvpsi_magnons.f90 │ ├── lr_eels_main.f90 │ ├── lr_exx_kernel.f90 │ ├── lr_init_nfo.f90 │ ├── lr_lanczos.f90 │ ├── lr_magnons_main.f90 │ ├── lr_magnons_routines.f90 │ ├── lr_main.f90 │ ├── lr_mix_pot.f90 │ ├── lr_normalise.f90 │ ├── lr_ortho.f90 │ ├── lr_psym_eels.f90 │ ├── lr_read_d0psi.f90 │ ├── lr_read_wf.f90 │ ├── lr_readin.f90 │ ├── lr_restart.f90 │ ├── lr_run_nscf.f90 │ ├── lr_set_boxes_density.f90 │ ├── lr_set_intq_nc.f90 │ ├── lr_setup_nscf.f90 │ ├── lr_smallgq.f90 │ ├── lr_solve_e.f90 │ ├── lr_sternheimer.f90 │ ├── lr_summary.f90 │ ├── lr_sym_eels.f90 │ ├── lr_test_restart.f90 │ ├── lr_transform_intq_nc.f90 │ ├── lr_transform_intq_so.f90 │ ├── lr_us.f90 │ ├── lr_variables.f90 │ ├── lr_write_restart.f90 │ ├── orthogonalize_omega.f90 │ ├── paw_add_symmetry.f90 │ ├── plugin_tddfpt_potential.f90 │ ├── print_clock_lr.f90 │ ├── sd0psi.f90 │ ├── stop_lr.f90 │ └── turbo_spectrum.f90 ├── UtilXlib ├── CMakeLists.txt ├── Makefile ├── Makefile.test ├── README.md ├── c_mkdir.c ├── clib_wrappers.f90 ├── clocks_handler.f90 ├── copy.c ├── cptimer.c ├── data_buffer.f90 ├── device_helper.f90 ├── divide.f90 ├── error_handler.f90 ├── eval_infix.c ├── export_gstart_2_solvers.f90 ├── find_free_unit.f90 ├── fletcher32.c ├── fletcher32_mod.f90 ├── hash.f90 ├── md5.c ├── md5.h ├── md5_from_file.c ├── mem_counter.f90 ├── memstat.c ├── memusage.c ├── mp.f90 ├── mp_bands_util.f90 ├── mp_base.f90 ├── mp_base_gpu.f90 ├── nvtx_wrapper.f90 ├── parallel_include.f90 ├── print_mem.f90 ├── ptrace.c ├── set_mpi_comm_4_solvers.f90 ├── tests │ ├── Makefile │ ├── README.md │ ├── compile_and_run_tests.sh │ ├── gen_tests.py │ ├── mp_world.f90 │ ├── test_mp_allgatherv_type_gpu.tmpl │ ├── test_mp_alltoall.tmpl │ ├── test_mp_alltoall_gpu.tmpl │ ├── test_mp_bcast.tmpl │ ├── test_mp_bcast_c4d_gpu.f90 │ ├── test_mp_bcast_c5d_gpu.f90 │ ├── test_mp_bcast_c6d_gpu.f90 │ ├── test_mp_bcast_gpu.tmpl │ ├── test_mp_bcast_i1.f90 │ ├── test_mp_bcast_i1_gpu.f90 │ ├── test_mp_bcast_i4d_gpu.f90 │ ├── test_mp_bcast_im.f90 │ ├── test_mp_bcast_im_gpu.f90 │ ├── test_mp_bcast_it.f90 │ ├── test_mp_bcast_it_gpu.f90 │ ├── test_mp_bcast_iv.f90 │ ├── test_mp_bcast_iv_buffer.f90 │ ├── test_mp_bcast_iv_buffer_gpu.f90 │ ├── test_mp_bcast_iv_gpu.f90 │ ├── test_mp_bcast_lv_buffer.f90 │ ├── test_mp_bcast_lv_buffer_gpu.f90 │ ├── test_mp_bcast_r4d_gpu.f90 │ ├── test_mp_bcast_r5d_gpu.f90 │ ├── test_mp_bcast_rv_buffer.f90 │ ├── test_mp_bcast_rv_buffer_gpu.f90 │ ├── test_mp_circular_shift_left_gpu.tmpl │ ├── test_mp_count_nodes.f90 │ ├── test_mp_gather_gpu.tmpl │ ├── test_mp_gatherv_gpu.tmpl │ ├── test_mp_gatherv_type_gpu.tmpl │ ├── test_mp_get_gpu.tmpl │ ├── test_mp_max_gpu.tmpl │ ├── test_mp_max_iv_buffer.f90 │ ├── test_mp_max_iv_buffer_gpu.f90 │ ├── test_mp_max_rv_buffer.f90 │ ├── test_mp_max_rv_buffer_gpu.f90 │ ├── test_mp_min_gpu.tmpl │ ├── test_mp_min_iv_buffer.f90 │ ├── test_mp_min_iv_buffer_gpu.f90 │ ├── test_mp_min_rv_buffer.f90 │ ├── test_mp_min_rv_buffer_gpu.f90 │ ├── test_mp_put_gpu.tmpl │ ├── test_mp_root_sum_gpu.tmpl │ ├── test_mp_sum_gpu.tmpl │ ├── test_mp_sum_iv_buffer.f90 │ ├── test_mp_sum_iv_buffer_gpu.f90 │ ├── test_mp_sum_rv_buffer.f90 │ ├── test_mp_sum_rv_buffer_gpu.f90 │ ├── test_offload_macros.f90 │ ├── tester.f90 │ └── utils.f90 ├── thread_util.f90 └── util_param.f90 ├── XClib ├── CMakeLists.txt ├── Ford │ ├── Ford.md │ └── pagedir │ │ └── index.md ├── Makefile ├── README.BEEF ├── README.TEST ├── beefleg.h ├── beefun.c ├── dft_setting_params.f90 ├── dft_setting_routines.f90 ├── pbecor.c ├── pbecor.h ├── qe_constants.f90 ├── qe_dft_list.f90 ├── qe_dft_refs.f90 ├── qe_drivers_d_gga.f90 ├── qe_drivers_d_lda_lsda.f90 ├── qe_drivers_gga.f90 ├── qe_drivers_lda_lsda.f90 ├── qe_drivers_mgga.f90 ├── qe_funct_corr_gga.f90 ├── qe_funct_corr_lda_lsda.f90 ├── qe_funct_exch_gga.f90 ├── qe_funct_exch_lda_lsda.f90 ├── qe_funct_mgga.f90 ├── qe_kind.f90 ├── test_input_files │ ├── all_shorts.xml │ ├── all_terms.xml │ ├── exe_test.in │ ├── gen_test.in │ ├── test_all_shorts.in │ └── test_all_terms.in ├── xc_beef_interface.f90 ├── xc_infos.f90 ├── xc_lib.f90 ├── xc_wrapper_d_gga.f90 ├── xc_wrapper_d_lda_lsda.f90 ├── xc_wrapper_gga.f90 ├── xc_wrapper_lda_lsda.f90 ├── xc_wrapper_mgga.f90 ├── xclib_error.f90 ├── xclib_test.f90 └── xclib_utils_and_para.f90 ├── XSpectra ├── CMakeLists.txt ├── Doc │ ├── INPUT_MOLECULARNEXAFS │ ├── INPUT_SPECTRA_CORRECTION │ ├── INPUT_SPECTRA_MANIPULATION │ └── INPUT_XSPECTRA ├── Makefile ├── README ├── examples │ ├── pseudo │ │ ├── C_PBE_TM_2pj.UPF │ │ ├── Ch_PBE_TM_2pj.UPF │ │ ├── Cu_US_PBE_3pj_lowE.UPF │ │ ├── Cu_halfh_US_PBE_3pj.UPF │ │ ├── Ni_PBE_TM_2pj.UPF │ │ ├── O_PBE_TM.UPF │ │ ├── O_PBE_USPP.UPF │ │ └── Si_PBE_USPP.UPF │ ├── reference │ │ ├── C.wfc │ │ ├── Cu.scf.in │ │ ├── Cu.scf.out │ │ ├── Cu.wfc │ │ ├── Cu_halfh.scf.in │ │ ├── Cu_halfh.scf.out │ │ ├── Cu_halfh_xspectra.in │ │ ├── Cu_halfh_xspectra.out │ │ ├── Cu_halfh_xspectra_xonlyplot.in │ │ ├── Cu_xanes_L2.dat │ │ ├── Cu_xanes_L2.sav │ │ ├── Cu_xanes_L2_lplus.dat │ │ ├── Cu_xanes_L2_lplus.sav │ │ ├── Cu_xspectra.in │ │ ├── Cu_xspectra.out │ │ ├── Cu_xspectra_lplus.in │ │ ├── Cu_xspectra_lplus.out │ │ ├── Cuhalfh_xanes_L2.dat │ │ ├── Cuhalfh_xanes_L2.sav │ │ ├── Cuhalfh_xanes_L2_xonlyplot.dat │ │ ├── Ni.wfc │ │ ├── NiO.scf.in │ │ ├── NiO.scf.out │ │ ├── NiO.xspectra_dip.dat │ │ ├── NiO.xspectra_dip.in │ │ ├── NiO.xspectra_dip.out │ │ ├── NiO.xspectra_dip.sav │ │ ├── NiO.xspectra_dip_replot.dat │ │ ├── NiO.xspectra_dip_replot.in │ │ ├── NiO.xspectra_dip_replot.out │ │ ├── NiO.xspectra_qua.dat │ │ ├── NiO.xspectra_qua.in │ │ ├── NiO.xspectra_qua.out │ │ ├── NiO.xspectra_qua.sav │ │ ├── Si.wfc │ │ ├── SiO2.scf.in │ │ ├── SiO2.scf.out │ │ ├── SiO2.xspectra_dip_c.dat │ │ ├── SiO2.xspectra_dip_c.in │ │ ├── SiO2.xspectra_dip_c.out │ │ ├── SiO2.xspectra_dip_c.sav │ │ ├── SiO2.xspectra_dip_plane.dat │ │ ├── SiO2.xspectra_dip_plane.in │ │ ├── SiO2.xspectra_dip_plane.out │ │ ├── SiO2.xspectra_dip_plane.sav │ │ ├── SiO2.xspectra_dip_restart_1.in │ │ ├── SiO2.xspectra_dip_restart_1.out │ │ ├── SiO2.xspectra_dip_restart_1.sav │ │ ├── SiO2.xspectra_dip_restart_2.dat │ │ ├── SiO2.xspectra_dip_restart_2.in │ │ ├── SiO2.xspectra_dip_restart_2.out │ │ ├── SiO2.xspectra_dip_restart_2.sav │ │ ├── diamond.scf.in │ │ ├── diamond.scf.out │ │ ├── diamond.xspectra.dat │ │ ├── diamond.xspectra.in │ │ ├── diamond.xspectra.out │ │ ├── diamond.xspectra.sav │ │ ├── diamond.xspectra_fermi.in │ │ ├── diamond.xspectra_fermi.out │ │ ├── diamond.xspectra_replot.dat │ │ ├── diamond.xspectra_replot.in │ │ ├── diamond.xspectra_replot.out │ │ ├── diamondh.scf.in │ │ ├── diamondh.scf.out │ │ ├── diamondh.xspectra.dat │ │ ├── diamondh.xspectra.in │ │ ├── diamondh.xspectra.out │ │ ├── diamondh.xspectra.sav │ │ ├── diamondh.xspectra_fermi.in │ │ └── diamondh.xspectra_fermi.out │ ├── run_example_Cu_L23 │ ├── run_example_NiO │ ├── run_example_SiO2_USPP │ └── run_example_diamond ├── src │ ├── Makefile │ ├── assign_paw_radii_to_species.f90 │ ├── banner_xspectra.f90 │ ├── check_orthogonality_k_epsilon.f90 │ ├── gaunt_mod.f90 │ ├── init_gipaw_1.f90 │ ├── init_gipaw_2.f90 │ ├── io_routines.f90 │ ├── ipoolscatter.f90 │ ├── lanczos.f90 │ ├── lr_sm1_psi.f90 │ ├── molecularnexafs.f90 │ ├── mygetK.f90 │ ├── paw_gipaw.f90 │ ├── plot_xanes_cross_sections.f90 │ ├── radin_mod.f90 │ ├── read_input_and_bcast.f90 │ ├── read_k_points.f90 │ ├── reset_k_points_and_reinit.f90 │ ├── select_nl_init.f90 │ ├── set_xspectra_namelists_defaults.f90 │ ├── spectra_correction.f90 │ ├── stdout_routines.f90 │ ├── xanes_dipole.f90 │ ├── xanes_dipole_general_edge.f90 │ ├── xanes_quadrupole.f90 │ ├── xspectra.f90 │ ├── xspectra_mod.f90 │ └── xspectra_utils.f90 └── tools │ └── upf2plotcore.sh ├── archive ├── .gitignore └── README.md ├── atomic ├── CMakeLists.txt ├── Doc │ ├── ChangeLog │ ├── INPUT_LD1.def │ ├── INPUT_LD1.html │ ├── INPUT_LD1.txt │ ├── Makefile │ ├── pseudo-gen-fig1.pdf │ ├── pseudo-gen-fig2.pdf │ ├── pseudo-gen-fig3.pdf │ ├── pseudo-gen-fig4.pdf │ ├── pseudo-gen.pdf │ └── pseudo-gen.tex ├── KLI.md ├── Makefile ├── README ├── examples │ ├── all-electron │ │ ├── AAREADME │ │ ├── ar.in │ │ ├── c_oep.in │ │ ├── clean.sh │ │ ├── cu.in │ │ ├── cu1.in │ │ ├── f.in │ │ ├── fe.in │ │ ├── h.in │ │ ├── h.oep.in │ │ ├── he.in │ │ ├── he.oep.in │ │ ├── mg.in │ │ ├── ne.kli.in │ │ ├── ne_oep.in │ │ ├── pt.in │ │ ├── reference │ │ │ ├── ar.out │ │ │ ├── c_oep.out │ │ │ ├── cu.out │ │ │ ├── cu1.out │ │ │ ├── f.out │ │ │ ├── fe.out │ │ │ ├── h.out │ │ │ ├── he.out │ │ │ ├── mg.out │ │ │ ├── ne_oep.out │ │ │ ├── pt.out │ │ │ ├── u.out │ │ │ ├── u1.out │ │ │ └── w.out │ │ ├── test.job │ │ ├── u.in │ │ ├── u1.in │ │ └── w.in │ ├── make_clean │ ├── paw_examples │ │ ├── README │ │ ├── clean │ │ ├── input │ │ │ ├── Be.in │ │ │ ├── C.in │ │ │ ├── Cl.in │ │ │ ├── Cu.in │ │ │ ├── F.in │ │ │ ├── Fe.in │ │ │ ├── Ge.in │ │ │ ├── H.in │ │ │ ├── Li-1s.in │ │ │ ├── Li.in │ │ │ ├── N.in │ │ │ ├── Na-2s2p.in │ │ │ ├── O-lda.in │ │ │ ├── O.in │ │ │ ├── P.in │ │ │ ├── Pd.in │ │ │ ├── S.in │ │ │ └── Si.in │ │ ├── oxygen │ │ │ ├── gen.in │ │ │ ├── spin.in │ │ │ └── test.in │ │ ├── plot_dlog │ │ ├── reference │ │ │ ├── Be-dlog.ps │ │ │ ├── Be.out │ │ │ ├── C-dlog.ps │ │ │ ├── C.out │ │ │ ├── Cl-dlog.ps │ │ │ ├── Cl.out │ │ │ ├── Cu-dlog.ps │ │ │ ├── Cu.out │ │ │ ├── F-dlog.ps │ │ │ ├── F.out │ │ │ ├── Fe-dlog.ps │ │ │ ├── Fe.out │ │ │ ├── Ge-dlog.ps │ │ │ ├── Ge.out │ │ │ ├── H-dlog.ps │ │ │ ├── H.out │ │ │ ├── Li-1s-dlog.ps │ │ │ ├── Li-1s.out │ │ │ ├── Li-dlog.ps │ │ │ ├── Li.out │ │ │ ├── N-dlog.ps │ │ │ ├── N.out │ │ │ ├── Na-2s2p-dlog.ps │ │ │ ├── Na-2s2p.out │ │ │ ├── O-dlog.ps │ │ │ ├── O-lda-dlog.ps │ │ │ ├── O-lda.out │ │ │ ├── O.out │ │ │ ├── P-dlog.ps │ │ │ ├── P.out │ │ │ ├── Pd-dlog.ps │ │ │ ├── Pd.out │ │ │ ├── S-dlog.ps │ │ │ ├── S.out │ │ │ ├── Si-dlog.ps │ │ │ └── Si.out │ │ └── test │ ├── pseudo-LDA-0.5 │ │ ├── AAREADME │ │ ├── Si.pz-vbc.UPF │ │ ├── clean.sh │ │ ├── reference │ │ │ ├── Si.LDA.0.5.UPF │ │ │ └── si.lda.0.5.out │ │ ├── si.lda.0.5.in │ │ └── test.job │ ├── pseudo-gen │ │ ├── AAREADME │ │ ├── al.in │ │ ├── as.in │ │ ├── clean.sh │ │ ├── o.in │ │ ├── pt.in │ │ ├── reference │ │ │ ├── Al.rrkj3 │ │ │ ├── Asrel.RRKJ3.UPF │ │ │ ├── OPBE.RRKJ3 │ │ │ ├── Ptrel.RRKJ3.UPF │ │ │ ├── SiPBE_nc │ │ │ ├── al.out │ │ │ ├── as.out │ │ │ ├── o.out │ │ │ ├── pt.out │ │ │ └── si_nc.out │ │ ├── si_nc.in │ │ └── test.job │ ├── pseudo-test │ │ ├── AAREADME │ │ ├── Al.rrkj3 │ │ ├── Asrel.RRKJ3.UPF │ │ ├── Garel.ld1 │ │ ├── NiUSPBE.RRKJ3 │ │ ├── OPBE.RRKJ3.UPF │ │ ├── RhUSPBEnlcc.RRKJ3.UPF │ │ ├── S.gon │ │ ├── al.in │ │ ├── as.in │ │ ├── clean.sh │ │ ├── ga.in │ │ ├── ni.in │ │ ├── o.in │ │ ├── reference │ │ │ ├── al.out │ │ │ ├── as.out │ │ │ ├── ga.out │ │ │ ├── ni.out │ │ │ ├── o.out │ │ │ ├── rh.out │ │ │ └── s.out │ │ ├── rh.in │ │ ├── s.in │ │ └── test.job │ └── vdw-in-tfvw │ │ ├── AAREADME │ │ ├── ar.sla-gl.in │ │ ├── ar.sla-noc.in │ │ ├── ar.sla-pz.in │ │ ├── clean.sh │ │ ├── kr.sla-gl.in │ │ ├── kr.sla-noc.in │ │ ├── kr.sla-pz.in │ │ ├── ne.sla-gl.in │ │ ├── ne.sla-noc.in │ │ ├── ne.sla-pz.in │ │ ├── reference │ │ ├── ar.sla-gl.freq-pol.dat │ │ ├── ar.sla-gl.out │ │ ├── ar.sla-noc.freq-pol.dat │ │ ├── ar.sla-noc.out │ │ ├── ar.sla-pz.freq-pol.dat │ │ ├── ar.sla-pz.out │ │ ├── compare.dat │ │ ├── kr.sla-gl.freq-pol.dat │ │ ├── kr.sla-gl.out │ │ ├── kr.sla-noc.freq-pol.dat │ │ ├── kr.sla-noc.out │ │ ├── kr.sla-pz.freq-pol.dat │ │ ├── kr.sla-pz.out │ │ ├── ne.sla-gl.freq-pol.dat │ │ ├── ne.sla-gl.out │ │ ├── ne.sla-noc.freq-pol.dat │ │ ├── ne.sla-noc.out │ │ ├── ne.sla-pz.freq-pol.dat │ │ └── ne.sla-pz.out │ │ └── test.job ├── pseudo_library │ ├── AAAREADME │ ├── LDA │ │ ├── REL │ │ │ ├── Ag.rel-pz-rrkjus.in │ │ │ ├── Al.rel-pz-rrkj.in │ │ │ ├── As.rel-pz-rrkj.in │ │ │ ├── Au.rel-pz-rrkjus.in │ │ │ ├── B.rel-pz-rrkjus.in │ │ │ ├── Br.rel-pz-rrkj.in │ │ │ ├── C.rel-pz-rrkjus.in │ │ │ ├── Cd.rel-pz-rrkjus.in │ │ │ ├── Cl.rel-pz-rrkj.in │ │ │ ├── F.rel-pz-rrkjus.in │ │ │ ├── H.rel-pz-rrkjus.in │ │ │ ├── Hg.rel-pz-rrkjus.in │ │ │ ├── Ir.rel-pz-rrkjus.in │ │ │ ├── N.rel-pz-rrkjus.in │ │ │ ├── O.rel-pz-rrkjus.in │ │ │ ├── O.rel-pz-rrkjus_h.in │ │ │ ├── Os.rel-pz-rrkjus.in │ │ │ ├── P.rel-pz-rrkj.in │ │ │ ├── Pb.rel-pz-rrkjus.in │ │ │ ├── Pd.rel-pz-rrkjus.in │ │ │ ├── Rh.rel-pz-rrkjus.in │ │ │ ├── Ru.rel-pz-rrkjus.in │ │ │ ├── S.rel-pz-rrkj.in │ │ │ ├── Sb.rel-pz-rrkj.in │ │ │ ├── Se.rel-pz-rrkj.in │ │ │ ├── Si.rel-pz-rrkj.in │ │ │ ├── clean │ │ │ └── make_ps │ │ └── SR │ │ │ ├── Ag.pz-rrkjus.in │ │ │ ├── Al.pz-rrkj.in │ │ │ ├── As.pz-rrkj.in │ │ │ ├── Au.pz-rrkj.in │ │ │ ├── Au.pz-rrkjus.in │ │ │ ├── B.pz-rrkjus.in │ │ │ ├── Br.pz-rrkj.in │ │ │ ├── C.pz-rrkjus.in │ │ │ ├── Cd.pz-rrkj.in │ │ │ ├── Cd.pz-rrkjus.in │ │ │ ├── Cl.pz-rrkj.in │ │ │ ├── F.pz-rrkjus.in │ │ │ ├── H.pz-rrkjus.in │ │ │ ├── Hg.pz-rrkjus.in │ │ │ ├── Ir.pz-rrkjus.in │ │ │ ├── N.pz-rrkjus.in │ │ │ ├── O.pz-rrkjus.in │ │ │ ├── O.pz-rrkjus_h.in │ │ │ ├── Os.pz-rrkjus.in │ │ │ ├── P.pz-rrkj.in │ │ │ ├── Pb.pz-rrkjus.in │ │ │ ├── Pd.pz-rrkjus.in │ │ │ ├── Rh.pz-rrkjus.in │ │ │ ├── Ru.pz-rrkjus.in │ │ │ ├── S.pz-rrkj.in │ │ │ ├── Sb.pz-rrkj.in │ │ │ ├── Se.pz-rrkj.in │ │ │ ├── Si.pz-rrkj.in │ │ │ ├── clean │ │ │ └── make_ps │ ├── PBE │ │ ├── REL │ │ │ ├── Ag.rel-pbe-rrkjus.in │ │ │ ├── Al.rel-pbe-rrkj.in │ │ │ ├── As.rel-pbe-rrkj.in │ │ │ ├── Au.rel-pbe-rrkjus.in │ │ │ ├── B.rel-pbe-rrkjus.in │ │ │ ├── Br.rel-pbe-rrkj.in │ │ │ ├── C.rel-pbe-rrkjus.in │ │ │ ├── Cd.rel-pbe-rrkjus.in │ │ │ ├── Cl.rel-pbe-rrkj.in │ │ │ ├── F.rel-pbe-rrkjus.in │ │ │ ├── H.rel-pbe-rrkjus.in │ │ │ ├── Hg.rel-pbe-rrkjus.in │ │ │ ├── Ir.rel-pbe-rrkjus.in │ │ │ ├── N.rel-pbe-rrkjus.in │ │ │ ├── O.rel-pbe-rrkjus.in │ │ │ ├── O.rel-pbe-rrkjus_h.in │ │ │ ├── Os.rel-pbe-rrkjus.in │ │ │ ├── P.rel-pbe-rrkj.in │ │ │ ├── Pb.rel-pbe-rrkjus.in │ │ │ ├── Pd.rel-pbe-rrkjus.in │ │ │ ├── Rh.rel-pbe-rrkjus.in │ │ │ ├── Ru.rel-pbe-rrkjus.in │ │ │ ├── S.rel-pbe-rrkj.in │ │ │ ├── Sb.rel-pbe-rrkj.in │ │ │ ├── Se.rel-pbe-rrkj.in │ │ │ ├── Si.rel-pbe-rrkj.in │ │ │ ├── clean │ │ │ └── make_ps │ │ └── SR │ │ │ ├── Ag.pbe-rrkjus.in │ │ │ ├── Al.pbe-rrkj.in │ │ │ ├── As.pbe-rrkj.in │ │ │ ├── Au.pbe-rrkj.in │ │ │ ├── Au.pbe-rrkjus.in │ │ │ ├── B.pbe-rrkjus.in │ │ │ ├── Br.pbe-rrkj.in │ │ │ ├── C.pbe-rrkjus.in │ │ │ ├── Cd.pbe-rrkj.in │ │ │ ├── Cd.pbe-rrkjus.in │ │ │ ├── Cl.pbe-rrkj.in │ │ │ ├── F.pbe-rrkjus.in │ │ │ ├── H.pbe-rrkjus.in │ │ │ ├── Hg.pbe-rrkjus.in │ │ │ ├── Ir.pbe-rrkjus.in │ │ │ ├── Mg.pbe-rrkj.in │ │ │ ├── N.pbe-rrkjus.in │ │ │ ├── O.pbe-rrkjus.in │ │ │ ├── O.pbe-rrkjus_h.in │ │ │ ├── Os.pbe-rrkjus.in │ │ │ ├── P.pbe-rrkj.in │ │ │ ├── Pb.pbe-rrkjus.in │ │ │ ├── Pd.pbe-rrkjus.in │ │ │ ├── Rh.pbe-rrkjus.in │ │ │ ├── Ru.pbe-rrkjus.in │ │ │ ├── S.pbe-rrkj.in │ │ │ ├── Sb.pbe-rrkj.in │ │ │ ├── Se.pbe-rrkj.in │ │ │ ├── Si.pbe-rrkj.in │ │ │ ├── Sn.pbe-rrkjus.in │ │ │ ├── clean │ │ │ └── make_ps │ ├── make_clean │ └── make_ps └── src │ ├── Makefile │ ├── add_exchange.f90 │ ├── all_electron.f90 │ ├── ascheq.f90 │ ├── ascheqps.f90 │ ├── ascheqps_drv.f90 │ ├── atomic_paw.f90 │ ├── c6_dft.f90 │ ├── c6_tfvw.f90 │ ├── calculate_gipaw_orbitals.f90 │ ├── cfdsol.f90 │ ├── chargeps.f90 │ ├── compute_chi.f90 │ ├── compute_chi_tm.f90 │ ├── compute_phi.f90 │ ├── compute_phi_tm.f90 │ ├── compute_phius.f90 │ ├── compute_potps.f90 │ ├── compute_potps_new.f90 │ ├── compute_q_3bess.f90 │ ├── compute_relpert.f90 │ ├── compute_solution.f90 │ ├── default_conf.f90 │ ├── descreening.f90 │ ├── dfx_new.f90 │ ├── dir_outward.f90 │ ├── dirsol.f90 │ ├── dmixp.f90 │ ├── drho0ofvx.f90 │ ├── drhoofv.f90 │ ├── dvex.f90 │ ├── el_config.f90 │ ├── elsd.f90 │ ├── elsd_highv.f90 │ ├── elsdps.f90 │ ├── elsdps_paw.f90 │ ├── esic.f90 │ ├── export_upf.f90 │ ├── find_qi.f90 │ ├── gener_pseudo.f90 │ ├── grad_log.f90 │ ├── green.f90 │ ├── import_upf.f90 │ ├── int_0_inf_dr.f90 │ ├── integrate_inward.f90 │ ├── integrate_outward.f90 │ ├── intref.f90 │ ├── inward.f90 │ ├── kin_e_density.f90 │ ├── kli.f90 │ ├── ld1.f90 │ ├── ld1_readin.f90 │ ├── ld1_setup.f90 │ ├── ld1_writeout.f90 │ ├── ld1inc.f90 │ ├── lderiv.f90 │ ├── lderivps.f90 │ ├── lschps.f90 │ ├── new_potential.f90 │ ├── newd_at.f90 │ ├── nodenum.f90 │ ├── normalize.f90 │ ├── occ_spin.f90 │ ├── outward.f90 │ ├── parameters.f90 │ ├── partial_wave_expansion.f90 │ ├── paw_type.f90 │ ├── pseudo_q.f90 │ ├── pseudovloc.f90 │ ├── read_pseudo_ncpp.f90 │ ├── read_pseudo_rrkj3.f90 │ ├── run_lda_half.f90 │ ├── run_pseudo.f90 │ ├── run_test.f90 │ ├── scf.f90 │ ├── seriebes.f90 │ ├── set_psi_in.f90 │ ├── set_rc_rv.f90 │ ├── set_rho_core.f90 │ ├── set_sl3.f90 │ ├── sic_correction.f90 │ ├── start_potps.f90 │ ├── start_scheq.f90 │ ├── starting_potential.f90 │ ├── test_bessel.f90 │ ├── trou.f90 │ ├── utils.f90 │ ├── v_of_rho_at.f90 │ ├── vdpack.f90 │ ├── vext.f90 │ ├── vpack.f90 │ ├── vxcgc.f90 │ ├── write_ae_pseudo.f90 │ ├── write_cpmd.f90 │ ├── write_files.f90 │ ├── write_paw_recon.f90 │ ├── write_pseudo.f90 │ ├── write_results.f90 │ └── write_resultsps.f90 ├── cmake ├── CMakeGraphVizOptions.cmake ├── CrayFortranCompiler.cmake ├── FindDeviceXlib.cmake ├── FindELPA.cmake ├── FindEnviron.cmake ├── FindFFTW3.cmake ├── FindFoX.cmake ├── FindLibxc.cmake ├── FindMBD.cmake ├── FindSCALAPACK.cmake ├── FindVendorFFTW.cmake ├── FindWannier90.cmake ├── GNUFortranCompiler.cmake ├── GitInfo.cmake ├── IBMFortranCompiler.cmake ├── IntelFortranCompiler.cmake ├── NVFortranCompiler.cmake ├── UseLATEX.cmake ├── flags │ ├── debug.cmake │ ├── native.cmake │ └── native.pgi.cmake ├── qeConfig.cmake.in ├── qeHelpers.cmake ├── quantum_espresso.pc.in └── unit_test.cmake ├── configure ├── dev-tools ├── Makefile ├── README.helpdoc ├── README.md ├── callhtml.pl ├── calltree.pl ├── check_gui ├── device_props.c ├── diff_gui_help ├── exported-cmds.pwtk ├── gen-emacs-mode ├── gen-emacs-mode.tcl ├── get_device_props.py ├── guihelp.xsl ├── helpdoc ├── helpdoc.d │ ├── auxil.tcl │ ├── gui.tcl │ ├── guihelp.tcl │ ├── helpdoc.tcl │ ├── modules.tcl │ ├── parseTags.tcl │ ├── readSchema.tcl │ ├── robodoc.tcl │ ├── syntax_txt.tcl │ ├── tclIndex │ ├── tree.tcl │ ├── txt.tcl │ ├── txt_enter.tcl │ ├── txt_leave.tcl │ └── xml.tcl ├── helpdoc.schema ├── input_xx.xsl ├── mem_analyse.py ├── mem_counter ├── mem_counter.py ├── porting │ ├── becmod.json │ ├── derived_type_duplicated_module.jf90 │ ├── duplicated_module.jf90 │ ├── gen_derived.py │ ├── gen_intrinsic.py │ └── regenerate_duplicated_variables.sh ├── release-checklist.md ├── src-normal ├── src-normal.py └── update_gui_help ├── dft-d3 ├── CMakeLists.txt ├── Makefile ├── README ├── api.f90 ├── common.f90 ├── core.f90 ├── dftd3_qe.f90 ├── pars.f90 ├── sizes.f90 └── test_code.f90 ├── environment_variables ├── external ├── .gitignore ├── CMakeLists.txt ├── devxlib.cmake ├── devxlib │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── bck │ │ ├── mod_dev_util.F │ │ └── mod_wrapper.F │ ├── bin │ │ └── __tmp__ │ ├── config │ │ ├── aclocal.m4 │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── configure.msg.in │ │ ├── includedep.sh │ │ ├── install-sh │ │ ├── m4 │ │ │ ├── acx_misc.m4 │ │ │ ├── ax_check_compile_flag.m4 │ │ │ ├── x_ac_python.m4 │ │ │ ├── x_ac_qe_aix_dflags.m4 │ │ │ ├── x_ac_qe_ar.m4 │ │ │ ├── x_ac_qe_arch.m4 │ │ │ ├── x_ac_qe_blas.m4 │ │ │ ├── x_ac_qe_cc.m4 │ │ │ ├── x_ac_qe_cpp.m4 │ │ │ ├── x_ac_qe_cuda.m4 │ │ │ ├── x_ac_qe_default_env.m4 │ │ │ ├── x_ac_qe_elpa.m4 │ │ │ ├── x_ac_qe_environ.m4 │ │ │ ├── x_ac_qe_f90.m4 │ │ │ ├── x_ac_qe_f90rule.m4 │ │ │ ├── x_ac_qe_fft.m4 │ │ │ ├── x_ac_qe_fft_aux.m4 │ │ │ ├── x_ac_qe_hdf5.m4 │ │ │ ├── x_ac_qe_lapack.m4 │ │ │ ├── x_ac_qe_ld.m4 │ │ │ ├── x_ac_qe_mass.m4 │ │ │ ├── x_ac_qe_mpi.m4 │ │ │ ├── x_ac_qe_mpif90.m4 │ │ │ ├── x_ac_qe_openmp.m4 │ │ │ ├── x_ac_qe_ranlib.m4 │ │ │ ├── x_ac_qe_scalapack.m4 │ │ │ ├── x_ac_qe_signal.m4 │ │ │ ├── x_ac_qe_wget.m4 │ │ │ └── x_ac_qe_xml.m4 │ │ ├── make.inc.in │ │ ├── make_build_date.sh │ │ ├── makedeps.sh │ │ ├── missing │ │ └── moduledep.sh │ ├── configure │ ├── extlibs │ │ ├── Makefile │ │ ├── archive │ │ │ ├── blas-1.tar.gz │ │ │ └── lapack-3.2.tar.gz │ │ ├── blas │ │ │ └── Makefile │ │ └── lapack │ │ │ └── Makefile │ ├── include │ │ ├── c_defs.h.in │ │ ├── configure.h.in │ │ ├── dev_defs.h │ │ └── device_macros.h │ ├── install │ │ ├── make_blas.inc.in │ │ └── make_lapack.inc.in │ ├── src │ │ ├── FortCuda │ │ │ ├── CUDA.F90 │ │ │ ├── Make.depend │ │ │ ├── Makefile │ │ │ ├── OpenCL.F90 │ │ │ ├── cuda_h.F90 │ │ │ ├── cuda_runtime_h.F90 │ │ │ └── cuda_unknowns.F90 │ │ ├── Makefile │ │ ├── c_cast_ptr.c │ │ ├── deviceXlib_mod.f90 │ │ ├── device_auxfunc.F │ │ ├── device_auxfunc.f90 │ │ ├── device_auxfunc_interf.F │ │ ├── device_auxfunc_interf.f90 │ │ ├── device_auxfunc_mod.f90 │ │ ├── device_fbuff.F │ │ ├── device_fbuff.f90 │ │ ├── device_fbuff_interf.F │ │ ├── device_fbuff_interf.f90 │ │ ├── device_fbuff_mod.f90 │ │ ├── device_linalg.f90 │ │ ├── device_memcpy.F │ │ ├── device_memcpy.f90 │ │ ├── device_memcpy_interf.F │ │ ├── device_memcpy_interf.f90 │ │ ├── device_memcpy_mod.f90 │ │ ├── make.depend │ │ ├── offloadable_allocation_cudac.f90 │ │ ├── offloadable_mod.f90 │ │ ├── test_fbuff.f90 │ │ ├── test_fbufl.f90 │ │ ├── test_memcpy.f90 │ │ ├── test_memcpy_async.f90 │ │ ├── tester.f90 │ │ ├── timer.c │ │ └── timer_mod.f90 │ └── src_generator │ │ ├── Makefile │ │ ├── device_auxfunc.jf90 │ │ ├── device_auxfunc_interf.jf90 │ │ ├── device_fbuff.jf90 │ │ ├── device_memcpy.jf90 │ │ ├── device_memcpy_interf.jf90 │ │ ├── generate_auxfunc.py │ │ ├── generate_fbuff.py │ │ ├── generate_memcpy.py │ │ ├── make.depend │ │ ├── test_fbuff.jf90 │ │ ├── test_memcpy.jf90 │ │ └── test_memcpy_async.jf90 ├── environ.cmake ├── fox.cmake ├── fox │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── CTestConfig.cmake │ ├── Changelog │ ├── DoX │ │ ├── AttributeDictionaries.html │ │ ├── AttributeDictionaries.md │ │ ├── Compilation.html │ │ ├── Compilation.md │ │ ├── Debugging.html │ │ ├── Debugging.md │ │ ├── DoX.css │ │ ├── Embedding.html │ │ ├── Embedding.md │ │ ├── FoX.html │ │ ├── FoX.md │ │ ├── FoX_DoX.html │ │ ├── FoX_common.html │ │ ├── FoX_common.md │ │ ├── FoX_dom.html │ │ ├── FoX_dom.md │ │ ├── FoX_sax.html │ │ ├── FoX_sax.md │ │ ├── FoX_utils.html │ │ ├── FoX_utils.md │ │ ├── FoX_wcml.html │ │ ├── FoX_wcml.md │ │ ├── FoX_wkml.html │ │ ├── FoX_wkml.md │ │ ├── FoX_wxml.html │ │ ├── FoX_wxml.md │ │ ├── Information.html │ │ ├── Information.md │ │ ├── Licensing.html │ │ ├── Licensing.md │ │ ├── Standards.html │ │ ├── Standards.md │ │ ├── StringConversion.html │ │ ├── StringConversion.md │ │ ├── StringFormatting.html │ │ ├── StringFormatting.md │ │ ├── Versioning.html │ │ ├── Versioning.md │ │ ├── head │ │ ├── index.html │ │ ├── makefile │ │ └── tail │ ├── FoX-config.in │ ├── FoX.vfproj │ ├── Fox.vfproj.README │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── RELEASE │ ├── arch.make │ ├── arch.make.in │ ├── cmake │ │ ├── CMakeLists.txt │ │ ├── CheckAbortIntrinsic.cmake │ │ ├── CheckAssociatedBug.cmake │ │ ├── CheckFlushIntrinsic.cmake │ │ ├── DetermineEOL.cmake │ │ ├── Fortran_Have_Flush.cmake │ │ ├── abort_bare.f90 │ │ ├── abort_intel.f90 │ │ ├── abort_nag.f90 │ │ ├── abort_xlf.f90 │ │ ├── associated_bug.f90 │ │ ├── flush_bare.f90 │ │ ├── flush_nag.f90 │ │ ├── flush_xlf.f90 │ │ └── output_eol.f90 │ ├── common │ │ ├── CMakeLists.txt │ │ ├── FoX_common.F90 │ │ ├── m_common_attrs.F90 │ │ ├── m_common_buffer.F90 │ │ ├── m_common_charset.F90 │ │ ├── m_common_content_model.F90 │ │ ├── m_common_element.F90 │ │ ├── m_common_elstack.F90 │ │ ├── m_common_entities.F90 │ │ ├── m_common_entity_expand.F90 │ │ ├── m_common_error.F90 │ │ ├── m_common_io.F90 │ │ ├── m_common_namecheck.F90 │ │ ├── m_common_namespaces.F90 │ │ ├── m_common_notations.F90 │ │ ├── m_common_struct.F90 │ │ ├── makefile │ │ └── test │ │ │ ├── Makefile │ │ │ ├── run_tests.sh │ │ │ ├── test.sh │ │ │ ├── test_common_namecheck.sh │ │ │ ├── test_fsys_array_str.f90 │ │ │ ├── test_input.f90 │ │ │ ├── test_str.f90.in │ │ │ ├── test_str.sh │ │ │ ├── test_xml_namecheck.sh │ │ │ ├── test_xml_namecheck_1.f90 │ │ │ ├── test_xml_namecheck_10.f90 │ │ │ ├── test_xml_namecheck_2.f90 │ │ │ ├── test_xml_namecheck_3.f90.fix │ │ │ ├── test_xml_namecheck_4.f90 │ │ │ ├── test_xml_namecheck_5.f90 │ │ │ ├── test_xml_namecheck_6.f90 │ │ │ ├── test_xml_namecheck_7.f90 │ │ │ ├── test_xml_namecheck_8.f90 │ │ │ └── test_xml_namecheck_9.f90 │ ├── config │ │ ├── aclocal.m4 │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure.ac │ │ ├── install-sh │ │ ├── m4 │ │ │ ├── TW_CHECK_ASSOCIATED_BUG.m4 │ │ │ ├── TW_CHECK_FC_90.m4 │ │ │ ├── TW_CHECK_FC_95.m4 │ │ │ ├── TW_CHECK_FC_FPP.m4 │ │ │ ├── TW_CHECK_FC_FPP_90.m4 │ │ │ ├── TW_CHECK_FC_TR15580.m4 │ │ │ ├── TW_CHECK_FC_TR15581.m4 │ │ │ ├── TW_FC_CHECK_ABORT.m4 │ │ │ ├── TW_FC_CHECK_EOL.m4 │ │ │ ├── TW_FC_CHECK_FLUSH.m4 │ │ │ ├── TW_FC_ID.m4 │ │ │ ├── TW_FC_ID_FLAGS.m4 │ │ │ ├── TW_FC_KINDS.m4 │ │ │ ├── TW_PATH_NETCDF.m4 │ │ │ ├── TW_PROG_CYGPATH_W.m4 │ │ │ ├── fortran.m4 │ │ │ └── lang.m4 │ │ └── makefile │ ├── configure │ ├── dom │ │ ├── CMakeLists.txt │ │ ├── FoX_dom.f90 │ │ ├── m_dom_attribute.m4 │ │ ├── m_dom_character_data.m4 │ │ ├── m_dom_common.m4 │ │ ├── m_dom_configuration.m4 │ │ ├── m_dom_document.m4 │ │ ├── m_dom_document_type.m4 │ │ ├── m_dom_dom.m4 │ │ ├── m_dom_element.m4 │ │ ├── m_dom_entity.m4 │ │ ├── m_dom_error.f90 │ │ ├── m_dom_exception.m4 │ │ ├── m_dom_extras.m4 │ │ ├── m_dom_implementation.m4 │ │ ├── m_dom_namednodemap.m4 │ │ ├── m_dom_namespaces.m4 │ │ ├── m_dom_node.m4 │ │ ├── m_dom_nodelist.m4 │ │ ├── m_dom_object.m4 │ │ ├── m_dom_parse.m4 │ │ ├── m_dom_processing_instruction.m4 │ │ ├── m_dom_text.m4 │ │ ├── m_dom_treewalk.m4 │ │ ├── m_dom_types.m4 │ │ ├── m_dom_utils.m4 │ │ ├── makefile │ │ └── test │ │ │ ├── Makefile │ │ │ ├── run_tests.sh │ │ │ ├── test.sh │ │ │ ├── test_dom_getTextContent.sh │ │ │ ├── test_dom_getTextContent_1.f90 │ │ │ ├── test_dom_getTextContent_1.xml_in │ │ │ ├── test_dom_getTextContent_2.f90 │ │ │ ├── test_dom_getTextContent_2.xml_in │ │ │ ├── test_dom_getTextContent_3.f90 │ │ │ ├── test_dom_getTextContent_3.xml_in │ │ │ ├── test_dom_getTextContent_4.f90 │ │ │ ├── test_dom_getTextContent_4.xml_in │ │ │ ├── test_dom_getTextContent_5.f90 │ │ │ ├── test_dom_getTextContent_5.xml_in │ │ │ ├── test_dom_parseString.sh │ │ │ ├── test_dom_parseString_1.f90 │ │ │ ├── test_dom_serialize.sh │ │ │ ├── test_dom_serialize_1.f90 │ │ │ ├── test_dom_serialize_1.xml │ │ │ ├── test_dom_serialize_2.f90 │ │ │ └── test_dom_serialize_2.xml │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── dom_canonicalize.ns.no.f90 │ │ ├── dom_canonicalize.ns.yes.f90 │ │ ├── dom_configuration.f90 │ │ ├── dom_example_2.f90 │ │ ├── dom_example_3.f90 │ │ ├── h2o.xml │ │ ├── sax_example.f90 │ │ ├── sax_example_2.f90 │ │ ├── staffNS.dtd │ │ ├── staffNS.xml │ │ ├── wcml_example.f90 │ │ ├── wkml_example.f90 │ │ ├── wkml_example_2.f90 │ │ ├── wkml_example_input.txt │ │ ├── wxml_example.f90 │ │ ├── xml_output_module.f90 │ │ └── xml_output_program.f90 │ ├── fsys │ │ ├── CMakeLists.txt │ │ ├── fox_m_fsys_abort_flush.F90 │ │ ├── fox_m_fsys_array_str.F90 │ │ ├── fox_m_fsys_count_parse_input.m4 │ │ ├── fox_m_fsys_format.F90 │ │ ├── fox_m_fsys_parse_input.m4 │ │ ├── fox_m_fsys_realtypes.f90 │ │ ├── fox_m_fsys_string.F90 │ │ ├── fox_m_fsys_string_list.F90 │ │ ├── fox_m_fsys_varstr.F90 │ │ ├── m_ieee.f90 │ │ └── makefile │ ├── m4 │ │ ├── common.m4 │ │ ├── datatypes.m4 │ │ ├── foreach.m4 │ │ └── quantity.m4 │ ├── release.sh │ ├── sax │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── FoX_sax.f90 │ │ ├── m_sax_operate.F90 │ │ ├── m_sax_parser.F90 │ │ ├── m_sax_reader.F90 │ │ ├── m_sax_tokenizer.F90 │ │ ├── m_sax_types.F90 │ │ ├── m_sax_xml_source.F90 │ │ ├── makefile │ │ └── test │ │ │ ├── Makefile │ │ │ ├── SAX_test.xml │ │ │ ├── input_1.xml │ │ │ ├── input_2.xml │ │ │ ├── input_3.xml │ │ │ ├── m_canonicalize.f90 │ │ │ ├── m_handlers.f90 │ │ │ ├── passed.sh │ │ │ ├── run_tests.sh │ │ │ ├── sax_valid.ns.no.f90 │ │ │ ├── sax_valid.ns.yes.f90 │ │ │ ├── sax_well_formed.ns.no.f90 │ │ │ ├── sax_well_formed.ns.yes.f90 │ │ │ ├── test.sh │ │ │ ├── test2.xml │ │ │ ├── test_sax_fsm_1.in │ │ │ ├── test_sax_parser.sh │ │ │ ├── test_sax_parser_1.f90 │ │ │ ├── test_sax_parser_2.f90 │ │ │ ├── test_sax_parser_3.f90 │ │ │ ├── test_sax_parser_4.f90 │ │ │ ├── test_sax_parser_5.f90 │ │ │ ├── test_sax_reader.sh │ │ │ ├── test_sax_reader_1.f90 │ │ │ ├── test_sax_reader_1.in │ │ │ └── testin.xml │ ├── testcheck.sh │ ├── utils │ │ ├── CMakeLists.txt │ │ ├── FoX_utils.f90 │ │ ├── fox_m_utils_mtprng.F90 │ │ ├── fox_m_utils_uri.F90 │ │ ├── fox_m_utils_uuid.F90 │ │ ├── makefile │ │ └── test │ │ │ ├── Makefile │ │ │ ├── run_tests.sh │ │ │ ├── test.sh │ │ │ ├── test_URI.f90 │ │ │ ├── test_UUID.f90 │ │ │ ├── test_baseURI.f90 │ │ │ ├── test_nullURI.f90 │ │ │ ├── test_rfc2396.f90 │ │ │ └── test_rfc2396b.f90 │ ├── wcml │ │ ├── CMakeLists.txt │ │ ├── FoX_wcml.f90 │ │ ├── m_wcml_coma.m4 │ │ ├── m_wcml_core.F90 │ │ ├── m_wcml_geometry.m4 │ │ ├── m_wcml_inputdec.F90 │ │ ├── m_wcml_lattice.m4 │ │ ├── m_wcml_lists.m4 │ │ ├── m_wcml_metadata.F90 │ │ ├── m_wcml_molecule.m4 │ │ ├── m_wcml_parameter.m4 │ │ ├── m_wcml_property.m4 │ │ ├── m_wcml_stml.m4 │ │ ├── makefile │ │ └── test │ │ │ ├── Makefile │ │ │ ├── passed.sh │ │ │ ├── run_tests.sh │ │ │ ├── test.sh │ │ │ ├── test_cml.sh │ │ │ ├── test_cmlAddBandList.sh │ │ │ ├── test_cmlAddBandList_1.f90 │ │ │ ├── test_cmlAddBandList_1.xml │ │ │ ├── test_cmlAddBandList_2.f90 │ │ │ ├── test_cmlAddBandList_2.xml │ │ │ ├── test_cmlAddBandList_3.f90 │ │ │ ├── test_cmlAddBandList_3.xml │ │ │ ├── test_cmlAddBandList_4.f90 │ │ │ ├── test_cmlAddBandList_4.xml │ │ │ ├── test_cmlAddCrystal.sh │ │ │ ├── test_cmlAddCrystal_1.f90 │ │ │ ├── test_cmlAddCrystal_1.xml │ │ │ ├── test_cmlAddCrystal_2.f90 │ │ │ ├── test_cmlAddCrystal_2.xml │ │ │ ├── test_cmlAddEigenValue.sh │ │ │ ├── test_cmlAddEigenValueVector.sh │ │ │ ├── test_cmlAddEigenValueVector_1.f90 │ │ │ ├── test_cmlAddEigenValueVector_1.xml │ │ │ ├── test_cmlAddEigenValueVector_2.f90 │ │ │ ├── test_cmlAddEigenValueVector_2.xml │ │ │ ├── test_cmlAddEigenValueVector_3.f90 │ │ │ ├── test_cmlAddEigenValueVector_3.xml │ │ │ ├── test_cmlAddEigenValueVector_4.f90 │ │ │ ├── test_cmlAddEigenValueVector_4.xml │ │ │ ├── test_cmlAddEigenValue_1.f90 │ │ │ ├── test_cmlAddEigenValue_1.xml │ │ │ ├── test_cmlAddEigenValue_2.f90 │ │ │ ├── test_cmlAddEigenValue_2.xml │ │ │ ├── test_cmlAddKpoint.sh │ │ │ ├── test_cmlAddKpoint_1.f90 │ │ │ ├── test_cmlAddKpoint_1.xml │ │ │ ├── test_cmlAddKpoint_2.f90 │ │ │ ├── test_cmlAddKpoint_2.xml │ │ │ ├── test_cmlAddKpoint_3.f90 │ │ │ ├── test_cmlAddKpoint_3.xml │ │ │ ├── test_cmlAddKpoint_4.f90 │ │ │ ├── test_cmlAddKpoint_4.xml │ │ │ ├── test_cmlAddLattice.sh │ │ │ ├── test_cmlAddLattice_1.f90 │ │ │ ├── test_cmlAddLattice_1.xml │ │ │ ├── test_cmlAddLattice_2.f90 │ │ │ ├── test_cmlAddLattice_2.xml │ │ │ ├── test_cmlAddMetadata.sh │ │ │ ├── test_cmlAddMetadata_1.f90 │ │ │ ├── test_cmlAddMetadata_1.xml │ │ │ ├── test_cmlAddMolecule.sh │ │ │ ├── test_cmlAddMolecule_1.f90 │ │ │ ├── test_cmlAddMolecule_1.xml │ │ │ ├── test_cmlAddMolecule_10.f90 │ │ │ ├── test_cmlAddMolecule_10.xml │ │ │ ├── test_cmlAddMolecule_11.f90 │ │ │ ├── test_cmlAddMolecule_12.f90 │ │ │ ├── test_cmlAddMolecule_13.f90 │ │ │ ├── test_cmlAddMolecule_14.f90 │ │ │ ├── test_cmlAddMolecule_14.xml │ │ │ ├── test_cmlAddMolecule_15.f90 │ │ │ ├── test_cmlAddMolecule_15.xml │ │ │ ├── test_cmlAddMolecule_16.f90 │ │ │ ├── test_cmlAddMolecule_16.xml │ │ │ ├── test_cmlAddMolecule_2.f90 │ │ │ ├── test_cmlAddMolecule_2.xml │ │ │ ├── test_cmlAddMolecule_3.f90 │ │ │ ├── test_cmlAddMolecule_3.xml │ │ │ ├── test_cmlAddMolecule_4.f90 │ │ │ ├── test_cmlAddMolecule_4.xml │ │ │ ├── test_cmlAddMolecule_5.f90 │ │ │ ├── test_cmlAddMolecule_5.xml │ │ │ ├── test_cmlAddMolecule_6.f90 │ │ │ ├── test_cmlAddMolecule_6.xml │ │ │ ├── test_cmlAddMolecule_7.f90 │ │ │ ├── test_cmlAddMolecule_7.xml │ │ │ ├── test_cmlAddMolecule_8.f90 │ │ │ ├── test_cmlAddMolecule_8.xml │ │ │ ├── test_cmlAddMolecule_9.f90 │ │ │ ├── test_cmlAddMolecule_9.xml │ │ │ ├── test_cmlAddNamespace.sh │ │ │ ├── test_cmlAddNamespace_0.f90 │ │ │ ├── test_cmlAddNamespace_1.f90 │ │ │ ├── test_cmlAddNamespace_2.f90 │ │ │ ├── test_cmlAddNamespace_2.xml │ │ │ ├── test_cmlAddNamespace_3.f90 │ │ │ ├── test_cmlAddParameter.sh │ │ │ ├── test_cmlAddParameter_1.f90 │ │ │ ├── test_cmlAddParameter_1.xml │ │ │ ├── test_cmlAddParameter_10.f90 │ │ │ ├── test_cmlAddParameter_10.xml │ │ │ ├── test_cmlAddParameter_11.f90 │ │ │ ├── test_cmlAddParameter_11.xml │ │ │ ├── test_cmlAddParameter_12.f90 │ │ │ ├── test_cmlAddParameter_12.xml │ │ │ ├── test_cmlAddParameter_13.f90 │ │ │ ├── test_cmlAddParameter_13.xml │ │ │ ├── test_cmlAddParameter_14.f90 │ │ │ ├── test_cmlAddParameter_14.xml │ │ │ ├── test_cmlAddParameter_15.f90 │ │ │ ├── test_cmlAddParameter_15.xml │ │ │ ├── test_cmlAddParameter_16.f90 │ │ │ ├── test_cmlAddParameter_16.xml │ │ │ ├── test_cmlAddParameter_17.f90 │ │ │ ├── test_cmlAddParameter_17.xml │ │ │ ├── test_cmlAddParameter_18.f90 │ │ │ ├── test_cmlAddParameter_18.xml │ │ │ ├── test_cmlAddParameter_19.f90 │ │ │ ├── test_cmlAddParameter_19.xml │ │ │ ├── test_cmlAddParameter_2.f90 │ │ │ ├── test_cmlAddParameter_2.xml │ │ │ ├── test_cmlAddParameter_20.f90 │ │ │ ├── test_cmlAddParameter_20.xml │ │ │ ├── test_cmlAddParameter_21.f90 │ │ │ ├── test_cmlAddParameter_21.xml │ │ │ ├── test_cmlAddParameter_22.f90 │ │ │ ├── test_cmlAddParameter_22.xml │ │ │ ├── test_cmlAddParameter_23.f90 │ │ │ ├── test_cmlAddParameter_23.xml │ │ │ ├── test_cmlAddParameter_24.f90 │ │ │ ├── test_cmlAddParameter_24.xml │ │ │ ├── test_cmlAddParameter_25.f90 │ │ │ ├── test_cmlAddParameter_25.xml │ │ │ ├── test_cmlAddParameter_3.f90 │ │ │ ├── test_cmlAddParameter_3.xml │ │ │ ├── test_cmlAddParameter_4.f90 │ │ │ ├── test_cmlAddParameter_4.xml │ │ │ ├── test_cmlAddParameter_5.f90 │ │ │ ├── test_cmlAddParameter_5.xml │ │ │ ├── test_cmlAddParameter_6.f90 │ │ │ ├── test_cmlAddParameter_6.xml │ │ │ ├── test_cmlAddParameter_7.f90 │ │ │ ├── test_cmlAddParameter_7.xml │ │ │ ├── test_cmlAddParameter_8.f90 │ │ │ ├── test_cmlAddParameter_8.xml │ │ │ ├── test_cmlAddParameter_9.f90 │ │ │ ├── test_cmlAddParameter_9.xml │ │ │ ├── test_cmlAddProperty.sh │ │ │ ├── test_cmlAddProperty_1.f90 │ │ │ ├── test_cmlAddProperty_1.xml │ │ │ ├── test_cmlAddProperty_10.f90 │ │ │ ├── test_cmlAddProperty_10.xml │ │ │ ├── test_cmlAddProperty_11.f90 │ │ │ ├── test_cmlAddProperty_11.xml │ │ │ ├── test_cmlAddProperty_12.f90 │ │ │ ├── test_cmlAddProperty_12.xml │ │ │ ├── test_cmlAddProperty_13.f90 │ │ │ ├── test_cmlAddProperty_13.xml │ │ │ ├── test_cmlAddProperty_14.f90 │ │ │ ├── test_cmlAddProperty_14.xml │ │ │ ├── test_cmlAddProperty_15.f90 │ │ │ ├── test_cmlAddProperty_15.xml │ │ │ ├── test_cmlAddProperty_16.f90 │ │ │ ├── test_cmlAddProperty_16.xml │ │ │ ├── test_cmlAddProperty_17.f90 │ │ │ ├── test_cmlAddProperty_17.xml │ │ │ ├── test_cmlAddProperty_18.f90 │ │ │ ├── test_cmlAddProperty_18.xml │ │ │ ├── test_cmlAddProperty_19.f90 │ │ │ ├── test_cmlAddProperty_19.xml │ │ │ ├── test_cmlAddProperty_2.f90 │ │ │ ├── test_cmlAddProperty_2.xml │ │ │ ├── test_cmlAddProperty_20.f90 │ │ │ ├── test_cmlAddProperty_20.xml │ │ │ ├── test_cmlAddProperty_21.f90 │ │ │ ├── test_cmlAddProperty_21.xml │ │ │ ├── test_cmlAddProperty_3.f90 │ │ │ ├── test_cmlAddProperty_3.xml │ │ │ ├── test_cmlAddProperty_4.f90 │ │ │ ├── test_cmlAddProperty_4.xml │ │ │ ├── test_cmlAddProperty_5.f90 │ │ │ ├── test_cmlAddProperty_5.xml │ │ │ ├── test_cmlAddProperty_6.f90 │ │ │ ├── test_cmlAddProperty_6.xml │ │ │ ├── test_cmlAddProperty_7.f90 │ │ │ ├── test_cmlAddProperty_7.xml │ │ │ ├── test_cmlAddProperty_8.f90 │ │ │ ├── test_cmlAddProperty_8.xml │ │ │ ├── test_cmlAddProperty_9.f90 │ │ │ ├── test_cmlAddProperty_9.xml │ │ │ ├── test_cmlAddSymmetry.sh │ │ │ ├── test_cmlAddSymmetry_1.f90 │ │ │ ├── test_cmlAddSymmetry_1.xml │ │ │ ├── test_cmlAddSymmetry_2.f90 │ │ │ ├── test_cmlAddSymmetry_2.xml │ │ │ ├── test_cmlAddSymmetry_3.f90 │ │ │ ├── test_cmlAddSymmetry_3.xml │ │ │ ├── test_cmlAddSymmetry_4.f90 │ │ │ ├── test_cmlAddSymmetry_4.xml │ │ │ ├── test_cmlBeginFile.sh │ │ │ ├── test_cmlBeginFile_1.f90 │ │ │ ├── test_cmlBeginFile_2.f90 │ │ │ ├── test_cmlDumpDec.sh │ │ │ ├── test_cmlDumpDec_1.f90 │ │ │ ├── test_cmlDumpDec_1.input │ │ │ ├── test_cmlDumpDec_1.xml │ │ │ ├── test_cmlDumpDec_2.f90 │ │ │ ├── test_cmlDumpDec_3.f90 │ │ │ ├── test_cmlDumpDec_4.f90 │ │ │ ├── test_cmlDumpDec_4.xml │ │ │ ├── test_cmlDumpDec_4a.in │ │ │ ├── test_cmlDumpDec_4b.in │ │ │ ├── test_cmlEndBand.sh │ │ │ ├── test_cmlEndBand_1.f90 │ │ │ ├── test_cmlEndBand_1.xml │ │ │ ├── test_cmlEndCml.sh │ │ │ ├── test_cmlEndCml_0.f90 │ │ │ ├── test_cmlEndCml_1.f90 │ │ │ ├── test_cmlEndCml_2.f90 │ │ │ ├── test_cmlEndCml_2.xml │ │ │ ├── test_cmlEndKpoint.sh │ │ │ ├── test_cmlEndKpointList.sh │ │ │ ├── test_cmlEndKpointList_1.f90 │ │ │ ├── test_cmlEndKpointList_1.xml │ │ │ ├── test_cmlEndKpoint_1.f90 │ │ │ ├── test_cmlEndKpoint_1.xml │ │ │ ├── test_cmlEndMetadataList.sh │ │ │ ├── test_cmlEndMetadataList_1.f90 │ │ │ ├── test_cmlEndMetadataList_1.xml │ │ │ ├── test_cmlEndModule.sh │ │ │ ├── test_cmlEndModule_1.f90 │ │ │ ├── test_cmlEndModule_1.xml │ │ │ ├── test_cmlEndParameterList.sh │ │ │ ├── test_cmlEndParameterList_1.f90 │ │ │ ├── test_cmlEndParameterList_1.xml │ │ │ ├── test_cmlEndPropertyList.sh │ │ │ ├── test_cmlEndPropertyList_1.f90 │ │ │ ├── test_cmlEndPropertyList_1.xml │ │ │ ├── test_cmlEndStep.sh │ │ │ ├── test_cmlEndStep_1.f90 │ │ │ ├── test_cmlEndStep_1.xml │ │ │ ├── test_cmlFinishFile.sh │ │ │ ├── test_cmlFinishFile_1.f90 │ │ │ ├── test_cmlFinishFile_2.f90 │ │ │ ├── test_cmlFinishFile_3.f90 │ │ │ ├── test_cmlStartBand.sh │ │ │ ├── test_cmlStartBand_1.f90 │ │ │ ├── test_cmlStartBand_1.xml │ │ │ ├── test_cmlStartBand_2.f90 │ │ │ ├── test_cmlStartBand_2.xml │ │ │ ├── test_cmlStartBand_3.f90 │ │ │ ├── test_cmlStartBand_3.xml │ │ │ ├── test_cmlStartBand_4.f90 │ │ │ ├── test_cmlStartBand_4.xml │ │ │ ├── test_cmlStartCml.sh │ │ │ ├── test_cmlStartCml_0.f90 │ │ │ ├── test_cmlStartCml_1.f90 │ │ │ ├── test_cmlStartCml_1.xml │ │ │ ├── test_cmlStartCml_2.f90 │ │ │ ├── test_cmlStartCml_2.xml │ │ │ ├── test_cmlStartCml_3.f90 │ │ │ ├── test_cmlStartCml_3.xml │ │ │ ├── test_cmlStartCml_4.f90 │ │ │ ├── test_cmlStartCml_4.xml │ │ │ ├── test_cmlStartKpoint.sh │ │ │ ├── test_cmlStartKpointList.sh │ │ │ ├── test_cmlStartKpointList_1.f90 │ │ │ ├── test_cmlStartKpointList_1.xml │ │ │ ├── test_cmlStartKpoint_1.f90 │ │ │ ├── test_cmlStartKpoint_1.xml │ │ │ ├── test_cmlStartKpoint_2.f90 │ │ │ ├── test_cmlStartKpoint_2.xml │ │ │ ├── test_cmlStartKpoint_3.f90 │ │ │ ├── test_cmlStartKpoint_3.xml │ │ │ ├── test_cmlStartKpoint_4.f90 │ │ │ ├── test_cmlStartKpoint_4.xml │ │ │ ├── test_cmlStartMetadataList.sh │ │ │ ├── test_cmlStartMetadataList_1.f90 │ │ │ ├── test_cmlStartMetadataList_1.xml │ │ │ ├── test_cmlStartMetadataList_2.f90 │ │ │ ├── test_cmlStartMetadataList_2.xml │ │ │ ├── test_cmlStartMetadataList_3.f90 │ │ │ ├── test_cmlStartMetadataList_3.xml │ │ │ ├── test_cmlStartModule.sh │ │ │ ├── test_cmlStartModule_1.f90 │ │ │ ├── test_cmlStartModule_1.xml │ │ │ ├── test_cmlStartModule_2.f90 │ │ │ ├── test_cmlStartModule_2.xml │ │ │ ├── test_cmlStartModule_3.f90 │ │ │ ├── test_cmlStartModule_3.xml │ │ │ ├── test_cmlStartParameterList.sh │ │ │ ├── test_cmlStartParameterList_1.f90 │ │ │ ├── test_cmlStartParameterList_1.xml │ │ │ ├── test_cmlStartParameterList_2.f90 │ │ │ ├── test_cmlStartParameterList_2.xml │ │ │ ├── test_cmlStartParameterList_3.f90 │ │ │ ├── test_cmlStartParameterList_3.xml │ │ │ ├── test_cmlStartPropertyList.sh │ │ │ ├── test_cmlStartPropertyList_1.f90 │ │ │ ├── test_cmlStartPropertyList_1.xml │ │ │ ├── test_cmlStartPropertyList_2.f90 │ │ │ ├── test_cmlStartPropertyList_2.xml │ │ │ ├── test_cmlStartPropertyList_3.f90 │ │ │ ├── test_cmlStartPropertyList_3.xml │ │ │ ├── test_cmlStartStep.sh │ │ │ ├── test_cmlStartStep_1.f90 │ │ │ ├── test_cmlStartStep_1.xml │ │ │ ├── test_cmlStartStep_2.f90 │ │ │ ├── test_cmlStartStep_2.xml │ │ │ ├── test_cmlStartStep_3.f90 │ │ │ └── test_cmlStartStep_3.xml │ ├── wkml │ │ ├── CMakeLists.txt │ │ ├── FoX_wkml.f90 │ │ ├── m_contours.F90 │ │ ├── m_wkml_chart.F90 │ │ ├── m_wkml_color.F90 │ │ ├── m_wkml_color_def.F90 │ │ ├── m_wkml_contours.F90 │ │ ├── m_wkml_core.F90 │ │ ├── m_wkml_coverage.m4 │ │ ├── m_wkml_features.F90 │ │ ├── m_wkml_lowlevel.F90 │ │ ├── m_wkml_styling.F90 │ │ ├── makefile │ │ ├── rgb.txt │ │ ├── rgb2wkml.py │ │ └── test │ │ │ ├── Makefile │ │ │ ├── m_contours_test_data_sp.f90 │ │ │ ├── passed.sh │ │ │ ├── run_tests.sh │ │ │ ├── test.sh │ │ │ ├── test_kmlAddInnerBoundary.sh │ │ │ ├── test_kmlAddInnerBoundary_0.f90 │ │ │ ├── test_kmlAddInnerBoundary_1.f90 │ │ │ ├── test_kmlAddInnerBoundary_1.xml │ │ │ ├── test_kmlAddInnerBoundary_10.f90 │ │ │ ├── test_kmlAddInnerBoundary_10.xml │ │ │ ├── test_kmlAddInnerBoundary_11.f90 │ │ │ ├── test_kmlAddInnerBoundary_12.f90 │ │ │ ├── test_kmlAddInnerBoundary_13.f90 │ │ │ ├── test_kmlAddInnerBoundary_14.f90 │ │ │ ├── test_kmlAddInnerBoundary_15.f90 │ │ │ ├── test_kmlAddInnerBoundary_16.f90 │ │ │ ├── test_kmlAddInnerBoundary_17.f90 │ │ │ ├── test_kmlAddInnerBoundary_18.f90 │ │ │ ├── test_kmlAddInnerBoundary_2.f90 │ │ │ ├── test_kmlAddInnerBoundary_2.xml │ │ │ ├── test_kmlAddInnerBoundary_3.f90 │ │ │ ├── test_kmlAddInnerBoundary_3.xml │ │ │ ├── test_kmlAddInnerBoundary_4.f90 │ │ │ ├── test_kmlAddInnerBoundary_4.xml │ │ │ ├── test_kmlAddInnerBoundary_5.f90 │ │ │ ├── test_kmlAddInnerBoundary_5.xml │ │ │ ├── test_kmlAddInnerBoundary_6.f90 │ │ │ ├── test_kmlAddInnerBoundary_6.xml │ │ │ ├── test_kmlAddInnerBoundary_7.f90 │ │ │ ├── test_kmlAddInnerBoundary_7.xml │ │ │ ├── test_kmlAddInnerBoundary_8.f90 │ │ │ ├── test_kmlAddInnerBoundary_8.xml │ │ │ ├── test_kmlAddInnerBoundary_9.f90 │ │ │ ├── test_kmlAddInnerBoundary_9.xml │ │ │ ├── test_kmlColorMap.sh │ │ │ ├── test_kmlColorMap_1.f90 │ │ │ ├── test_kmlColorMap_1.xml │ │ │ ├── test_kmlColorMap_2.f90 │ │ │ ├── test_kmlColorMap_2.xml │ │ │ ├── test_kmlColorMap_3.f90 │ │ │ ├── test_kmlColorMap_3.xml │ │ │ ├── test_kmlColorMap_4.f90 │ │ │ ├── test_kmlColorMap_5.f90 │ │ │ ├── test_kmlColorMap_6.f90 │ │ │ ├── test_kmlColorMap_7.f90 │ │ │ ├── test_kmlColorMap_8.f90 │ │ │ ├── test_kmlContours.sh │ │ │ ├── test_kmlContours_1.f90 │ │ │ ├── test_kmlContours_1.xml │ │ │ ├── test_kmlContours_2.f90 │ │ │ ├── test_kmlContours_2.xml │ │ │ ├── test_kmlContours_3.f90 │ │ │ ├── test_kmlContours_3.xml │ │ │ ├── test_kmlCreateLine.sh │ │ │ ├── test_kmlCreateLineStyle.sh │ │ │ ├── test_kmlCreateLineStyle_0.f90 │ │ │ ├── test_kmlCreateLineStyle_1.f90 │ │ │ ├── test_kmlCreateLineStyle_1.xml │ │ │ ├── test_kmlCreateLineStyle_10.f90 │ │ │ ├── test_kmlCreateLineStyle_10.xml │ │ │ ├── test_kmlCreateLineStyle_11.f90 │ │ │ ├── test_kmlCreateLineStyle_11.xml │ │ │ ├── test_kmlCreateLineStyle_12.f90 │ │ │ ├── test_kmlCreateLineStyle_12.xml │ │ │ ├── test_kmlCreateLineStyle_2.f90 │ │ │ ├── test_kmlCreateLineStyle_2.xml │ │ │ ├── test_kmlCreateLineStyle_3.f90 │ │ │ ├── test_kmlCreateLineStyle_3.xml │ │ │ ├── test_kmlCreateLineStyle_4.f90 │ │ │ ├── test_kmlCreateLineStyle_4.xml │ │ │ ├── test_kmlCreateLineStyle_5.f90 │ │ │ ├── test_kmlCreateLineStyle_5.xml │ │ │ ├── test_kmlCreateLineStyle_6.f90 │ │ │ ├── test_kmlCreateLineStyle_7.f90 │ │ │ ├── test_kmlCreateLineStyle_8.f90 │ │ │ ├── test_kmlCreateLineStyle_9.f90 │ │ │ ├── test_kmlCreateLine_1.f90 │ │ │ ├── test_kmlCreateLine_1.xml │ │ │ ├── test_kmlCreateLine_10.f90 │ │ │ ├── test_kmlCreateLine_10.xml │ │ │ ├── test_kmlCreateLine_11.f90 │ │ │ ├── test_kmlCreateLine_12.f90 │ │ │ ├── test_kmlCreateLine_13.f90 │ │ │ ├── test_kmlCreateLine_13.xml │ │ │ ├── test_kmlCreateLine_14.f90 │ │ │ ├── test_kmlCreateLine_14.xml │ │ │ ├── test_kmlCreateLine_15.f90 │ │ │ ├── test_kmlCreateLine_16.f90 │ │ │ ├── test_kmlCreateLine_17.f90 │ │ │ ├── test_kmlCreateLine_18.f90 │ │ │ ├── test_kmlCreateLine_19.f90 │ │ │ ├── test_kmlCreateLine_19.xml │ │ │ ├── test_kmlCreateLine_2.f90 │ │ │ ├── test_kmlCreateLine_2.xml │ │ │ ├── test_kmlCreateLine_20.f90 │ │ │ ├── test_kmlCreateLine_20.xml │ │ │ ├── test_kmlCreateLine_3.f90 │ │ │ ├── test_kmlCreateLine_3.xml │ │ │ ├── test_kmlCreateLine_4.f90 │ │ │ ├── test_kmlCreateLine_4.xml │ │ │ ├── test_kmlCreateLine_5.f90 │ │ │ ├── test_kmlCreateLine_6.f90 │ │ │ ├── test_kmlCreateLine_7.f90 │ │ │ ├── test_kmlCreateLine_7.xml │ │ │ ├── test_kmlCreateLine_8.f90 │ │ │ ├── test_kmlCreateLine_8.xml │ │ │ ├── test_kmlCreateLine_9.f90 │ │ │ ├── test_kmlCreateLine_9.xml │ │ │ ├── test_kmlCreatePointStyle.sh │ │ │ ├── test_kmlCreatePointStyle_0.f90 │ │ │ ├── test_kmlCreatePointStyle_1.f90 │ │ │ ├── test_kmlCreatePointStyle_1.xml │ │ │ ├── test_kmlCreatePointStyle_10.f90 │ │ │ ├── test_kmlCreatePointStyle_10.xml │ │ │ ├── test_kmlCreatePointStyle_11.f90 │ │ │ ├── test_kmlCreatePointStyle_12.f90 │ │ │ ├── test_kmlCreatePointStyle_12.xml │ │ │ ├── test_kmlCreatePointStyle_13.f90 │ │ │ ├── test_kmlCreatePointStyle_13.xml │ │ │ ├── test_kmlCreatePointStyle_14.f90 │ │ │ ├── test_kmlCreatePointStyle_15.f90 │ │ │ ├── test_kmlCreatePointStyle_15.xml │ │ │ ├── test_kmlCreatePointStyle_16.f90 │ │ │ ├── test_kmlCreatePointStyle_16.xml │ │ │ ├── test_kmlCreatePointStyle_17.f90 │ │ │ ├── test_kmlCreatePointStyle_18.f90 │ │ │ ├── test_kmlCreatePointStyle_18.xml │ │ │ ├── test_kmlCreatePointStyle_19.f90 │ │ │ ├── test_kmlCreatePointStyle_2.f90 │ │ │ ├── test_kmlCreatePointStyle_2.xml │ │ │ ├── test_kmlCreatePointStyle_20.f90 │ │ │ ├── test_kmlCreatePointStyle_21.f90 │ │ │ ├── test_kmlCreatePointStyle_3.f90 │ │ │ ├── test_kmlCreatePointStyle_3.xml │ │ │ ├── test_kmlCreatePointStyle_4.f90 │ │ │ ├── test_kmlCreatePointStyle_5.f90 │ │ │ ├── test_kmlCreatePointStyle_5.xml │ │ │ ├── test_kmlCreatePointStyle_6.f90 │ │ │ ├── test_kmlCreatePointStyle_6.xml │ │ │ ├── test_kmlCreatePointStyle_7.f90 │ │ │ ├── test_kmlCreatePointStyle_8.f90 │ │ │ ├── test_kmlCreatePointStyle_8.xml │ │ │ ├── test_kmlCreatePointStyle_9.f90 │ │ │ ├── test_kmlCreatePointStyle_9.xml │ │ │ ├── test_kmlCreatePoints.sh │ │ │ ├── test_kmlCreatePoints_1.f90 │ │ │ ├── test_kmlCreatePoints_1.xml │ │ │ ├── test_kmlCreatePoints_10.f90 │ │ │ ├── test_kmlCreatePoints_10.xml │ │ │ ├── test_kmlCreatePoints_11.f90 │ │ │ ├── test_kmlCreatePoints_11.xml │ │ │ ├── test_kmlCreatePoints_12.f90 │ │ │ ├── test_kmlCreatePoints_12.xml │ │ │ ├── test_kmlCreatePoints_2.f90 │ │ │ ├── test_kmlCreatePoints_2.xml │ │ │ ├── test_kmlCreatePoints_3.f90 │ │ │ ├── test_kmlCreatePoints_3.xml │ │ │ ├── test_kmlCreatePoints_4.f90 │ │ │ ├── test_kmlCreatePoints_4.xml │ │ │ ├── test_kmlCreatePoints_5.f90 │ │ │ ├── test_kmlCreatePoints_5.xml │ │ │ ├── test_kmlCreatePoints_6.f90 │ │ │ ├── test_kmlCreatePoints_6.xml │ │ │ ├── test_kmlCreatePoints_7.f90 │ │ │ ├── test_kmlCreatePoints_7.xml │ │ │ ├── test_kmlCreatePolygonStyle.sh │ │ │ ├── test_kmlCreatePolygonStyle_1.f90 │ │ │ ├── test_kmlCreatePolygonStyle_1.xml │ │ │ ├── test_kmlCreatePolygonStyle_10.f90 │ │ │ ├── test_kmlCreatePolygonStyle_10.xml │ │ │ ├── test_kmlCreatePolygonStyle_11.f90 │ │ │ ├── test_kmlCreatePolygonStyle_11.xml │ │ │ ├── test_kmlCreatePolygonStyle_12.f90 │ │ │ ├── test_kmlCreatePolygonStyle_12.xml │ │ │ ├── test_kmlCreatePolygonStyle_2.f90 │ │ │ ├── test_kmlCreatePolygonStyle_3.f90 │ │ │ ├── test_kmlCreatePolygonStyle_4.f90 │ │ │ ├── test_kmlCreatePolygonStyle_5.f90 │ │ │ ├── test_kmlCreatePolygonStyle_6.f90 │ │ │ ├── test_kmlCreatePolygonStyle_6.xml │ │ │ ├── test_kmlCreatePolygonStyle_7.f90 │ │ │ ├── test_kmlCreatePolygonStyle_7.xml │ │ │ ├── test_kmlCreatePolygonStyle_8.f90 │ │ │ ├── test_kmlCreatePolygonStyle_8.xml │ │ │ ├── test_kmlCreatePolygonStyle_9.f90 │ │ │ ├── test_kmlCreatePolygonStyle_9.xml │ │ │ ├── test_kmlOpenCloseDocument.sh │ │ │ ├── test_kmlOpenCloseDocument_1.f90 │ │ │ ├── test_kmlOpenCloseDocument_1.xml │ │ │ ├── test_kmlOpenCloseDocument_2.f90 │ │ │ ├── test_kmlOpenCloseDocument_2.xml │ │ │ ├── test_kmlOpenCloseDocument_3.f90 │ │ │ ├── test_kmlOpenCloseDocument_3.xml │ │ │ ├── test_kmlOpenCloseDocument_4.f90 │ │ │ ├── test_kmlOpenCloseDocument_4.xml │ │ │ ├── test_kmlOpenCloseDocument_5.f90 │ │ │ ├── test_kmlOpenCloseDocument_5.xml │ │ │ ├── test_kmlOpenCloseFolder.sh │ │ │ ├── test_kmlOpenCloseFolder_0.f90 │ │ │ ├── test_kmlOpenCloseFolder_1.f90 │ │ │ ├── test_kmlOpenCloseFolder_1.xml │ │ │ ├── test_kmlOpenCloseFolder_2.f90 │ │ │ ├── test_kmlOpenCloseFolder_2.xml │ │ │ ├── test_kmlOpenCloseFolder_3.f90 │ │ │ ├── test_kmlOpenCloseFolder_3.xml │ │ │ ├── test_kmlOpenCloseFolder_4.f90 │ │ │ ├── test_kmlOpenCloseFolder_4.xml │ │ │ ├── test_kmlOpenCloseFolder_5.f90 │ │ │ ├── test_kmlStartEndRegion.sh │ │ │ ├── test_kmlStartEndRegion_0.f90 │ │ │ ├── test_kmlStartEndRegion_1.f90 │ │ │ ├── test_kmlStartEndRegion_1.xml │ │ │ ├── test_kmlStartEndRegion_10.f90 │ │ │ ├── test_kmlStartEndRegion_11.f90 │ │ │ ├── test_kmlStartEndRegion_11.xml │ │ │ ├── test_kmlStartEndRegion_12.f90 │ │ │ ├── test_kmlStartEndRegion_12.xml │ │ │ ├── test_kmlStartEndRegion_13.f90 │ │ │ ├── test_kmlStartEndRegion_14.f90 │ │ │ ├── test_kmlStartEndRegion_15.f90 │ │ │ ├── test_kmlStartEndRegion_16.f90 │ │ │ ├── test_kmlStartEndRegion_2.f90 │ │ │ ├── test_kmlStartEndRegion_2.xml │ │ │ ├── test_kmlStartEndRegion_3.f90 │ │ │ ├── test_kmlStartEndRegion_3.xml │ │ │ ├── test_kmlStartEndRegion_4.f90 │ │ │ ├── test_kmlStartEndRegion_4.xml │ │ │ ├── test_kmlStartEndRegion_5.f90 │ │ │ ├── test_kmlStartEndRegion_5.xml │ │ │ ├── test_kmlStartEndRegion_6.f90 │ │ │ ├── test_kmlStartEndRegion_6.xml │ │ │ ├── test_kmlStartEndRegion_7.f90 │ │ │ ├── test_kmlStartEndRegion_7.xml │ │ │ ├── test_kmlStartEndRegion_8.f90 │ │ │ ├── test_kmlStartEndRegion_8.xml │ │ │ └── test_kmlStartEndRegion_9.f90 │ └── wxml │ │ ├── CMakeLists.txt │ │ ├── FoX_wxml.f90 │ │ ├── m_wxml_core.F90 │ │ ├── m_wxml_escape.F90 │ │ ├── m_wxml_overloads.m4 │ │ ├── makefile │ │ └── test │ │ ├── Makefile │ │ ├── passed.sh │ │ ├── run_tests.sh │ │ ├── test.sh │ │ ├── test_xml.sh │ │ ├── test_xml_AddAttribute.sh │ │ ├── test_xml_AddAttribute_0.f90 │ │ ├── test_xml_AddAttribute_1.f90 │ │ ├── test_xml_AddAttribute_1.xml │ │ ├── test_xml_AddAttribute_2.f90 │ │ ├── test_xml_AddAttribute_3.f90 │ │ ├── test_xml_AddAttribute_4.f90 │ │ ├── test_xml_AddAttribute_5.f90 │ │ ├── test_xml_AddAttribute_6.f90 │ │ ├── test_xml_AddAttribute_6.xml │ │ ├── test_xml_AddAttribute_7.f90 │ │ ├── test_xml_AddAttribute_7.xml │ │ ├── test_xml_AddAttribute_8.f90 │ │ ├── test_xml_AddAttribute_8.xml │ │ ├── test_xml_AddAttribute_overload_1.f90 │ │ ├── test_xml_AddAttribute_overload_1.xml │ │ ├── test_xml_AddAttribute_overload_10.f90 │ │ ├── test_xml_AddAttribute_overload_10.xml │ │ ├── test_xml_AddAttribute_overload_11.f90 │ │ ├── test_xml_AddAttribute_overload_11.xml │ │ ├── test_xml_AddAttribute_overload_12.f90 │ │ ├── test_xml_AddAttribute_overload_12.xml │ │ ├── test_xml_AddAttribute_overload_13.f90 │ │ ├── test_xml_AddAttribute_overload_13.xml │ │ ├── test_xml_AddAttribute_overload_14.f90 │ │ ├── test_xml_AddAttribute_overload_14.xml │ │ ├── test_xml_AddAttribute_overload_15.f90 │ │ ├── test_xml_AddAttribute_overload_15.xml │ │ ├── test_xml_AddAttribute_overload_16.f90 │ │ ├── test_xml_AddAttribute_overload_16.xml │ │ ├── test_xml_AddAttribute_overload_17.f90 │ │ ├── test_xml_AddAttribute_overload_17.xml │ │ ├── test_xml_AddAttribute_overload_18.f90 │ │ ├── test_xml_AddAttribute_overload_18.xml │ │ ├── test_xml_AddAttribute_overload_19.f90 │ │ ├── test_xml_AddAttribute_overload_19.xml │ │ ├── test_xml_AddAttribute_overload_2.f90 │ │ ├── test_xml_AddAttribute_overload_2.xml │ │ ├── test_xml_AddAttribute_overload_20.f90 │ │ ├── test_xml_AddAttribute_overload_20.xml │ │ ├── test_xml_AddAttribute_overload_3.f90 │ │ ├── test_xml_AddAttribute_overload_3.xml │ │ ├── test_xml_AddAttribute_overload_4.f90 │ │ ├── test_xml_AddAttribute_overload_4.xml │ │ ├── test_xml_AddAttribute_overload_5.f90 │ │ ├── test_xml_AddAttribute_overload_5.xml │ │ ├── test_xml_AddAttribute_overload_6.f90 │ │ ├── test_xml_AddAttribute_overload_6.xml │ │ ├── test_xml_AddAttribute_overload_7.f90 │ │ ├── test_xml_AddAttribute_overload_7.xml │ │ ├── test_xml_AddAttribute_overload_8.f90 │ │ ├── test_xml_AddAttribute_overload_8.xml │ │ ├── test_xml_AddAttribute_overload_9.f90 │ │ ├── test_xml_AddAttribute_overload_9.xml │ │ ├── test_xml_AddCharacters.sh │ │ ├── test_xml_AddCharacters_0.f90 │ │ ├── test_xml_AddCharacters_1.f90 │ │ ├── test_xml_AddCharacters_1.xml │ │ ├── test_xml_AddCharacters_2.f90 │ │ ├── test_xml_AddCharacters_2.xml │ │ ├── test_xml_AddCharacters_3.f90 │ │ ├── test_xml_AddCharacters_3.xml │ │ ├── test_xml_AddCharacters_4.f90 │ │ ├── test_xml_AddCharacters_5.f90 │ │ ├── test_xml_AddCharacters_overload_1.f90 │ │ ├── test_xml_AddCharacters_overload_1.xml │ │ ├── test_xml_AddCharacters_overload_10.f90 │ │ ├── test_xml_AddCharacters_overload_10.xml │ │ ├── test_xml_AddCharacters_overload_11.f90 │ │ ├── test_xml_AddCharacters_overload_11.xml │ │ ├── test_xml_AddCharacters_overload_12.f90 │ │ ├── test_xml_AddCharacters_overload_12.xml │ │ ├── test_xml_AddCharacters_overload_13.f90 │ │ ├── test_xml_AddCharacters_overload_13.xml │ │ ├── test_xml_AddCharacters_overload_14.f90 │ │ ├── test_xml_AddCharacters_overload_14.xml │ │ ├── test_xml_AddCharacters_overload_15.f90 │ │ ├── test_xml_AddCharacters_overload_15.xml │ │ ├── test_xml_AddCharacters_overload_16.f90 │ │ ├── test_xml_AddCharacters_overload_16.xml │ │ ├── test_xml_AddCharacters_overload_17.f90 │ │ ├── test_xml_AddCharacters_overload_17.xml │ │ ├── test_xml_AddCharacters_overload_18.f90 │ │ ├── test_xml_AddCharacters_overload_18.xml │ │ ├── test_xml_AddCharacters_overload_19.f90 │ │ ├── test_xml_AddCharacters_overload_19.xml │ │ ├── test_xml_AddCharacters_overload_2.f90 │ │ ├── test_xml_AddCharacters_overload_2.xml │ │ ├── test_xml_AddCharacters_overload_20.f90 │ │ ├── test_xml_AddCharacters_overload_20.xml │ │ ├── test_xml_AddCharacters_overload_3.f90 │ │ ├── test_xml_AddCharacters_overload_3.xml │ │ ├── test_xml_AddCharacters_overload_4.f90 │ │ ├── test_xml_AddCharacters_overload_4.xml │ │ ├── test_xml_AddCharacters_overload_5.f90 │ │ ├── test_xml_AddCharacters_overload_5.xml │ │ ├── test_xml_AddCharacters_overload_6.f90 │ │ ├── test_xml_AddCharacters_overload_6.xml │ │ ├── test_xml_AddCharacters_overload_7.f90 │ │ ├── test_xml_AddCharacters_overload_7.xml │ │ ├── test_xml_AddCharacters_overload_8.f90 │ │ ├── test_xml_AddCharacters_overload_8.xml │ │ ├── test_xml_AddCharacters_overload_9.f90 │ │ ├── test_xml_AddCharacters_overload_9.xml │ │ ├── test_xml_AddComment.sh │ │ ├── test_xml_AddComment_0.f90 │ │ ├── test_xml_AddComment_1.f90 │ │ ├── test_xml_AddComment_1.xml │ │ ├── test_xml_AddComment_2.f90 │ │ ├── test_xml_AddComment_3.f90 │ │ ├── test_xml_AddDOCTYPE.sh │ │ ├── test_xml_AddDOCTYPE_0.f90 │ │ ├── test_xml_AddDOCTYPE_1.f90 │ │ ├── test_xml_AddDOCTYPE_1.xml │ │ ├── test_xml_AddDOCTYPE_2.f90 │ │ ├── test_xml_AddDOCTYPE_2.xml │ │ ├── test_xml_AddDOCTYPE_3.f90 │ │ ├── test_xml_AddDOCTYPE_4.f90 │ │ ├── test_xml_AddDOCTYPE_4.xml │ │ ├── test_xml_AddDOCTYPE_5.f90 │ │ ├── test_xml_AddExternalEntity.sh │ │ ├── test_xml_AddExternalEntity_0.f90 │ │ ├── test_xml_AddExternalEntity_1.f90 │ │ ├── test_xml_AddExternalEntity_1.xml │ │ ├── test_xml_AddExternalEntity_2.f90 │ │ ├── test_xml_AddExternalEntity_2.xml │ │ ├── test_xml_AddExternalEntity_3.f90 │ │ ├── test_xml_AddExternalEntity_3.xml │ │ ├── test_xml_AddExternalEntity_4.f90 │ │ ├── test_xml_AddExternalEntity_4.xml │ │ ├── test_xml_AddInternalEntity.sh │ │ ├── test_xml_AddInternalEntity_0.f90 │ │ ├── test_xml_AddInternalEntity_1.f90 │ │ ├── test_xml_AddInternalEntity_1.xml │ │ ├── test_xml_AddInternalEntity_2.f90 │ │ ├── test_xml_AddInternalEntity_3.f90 │ │ ├── test_xml_AddInternalEntity_4.f90 │ │ ├── test_xml_AddInternalEntity_4.xml │ │ ├── test_xml_AddNewline_1.f90 │ │ ├── test_xml_AddNewline_1.xml │ │ ├── test_xml_AddNotation.sh │ │ ├── test_xml_AddNotation_0.f90 │ │ ├── test_xml_AddNotation_1.f90 │ │ ├── test_xml_AddNotation_1.xml │ │ ├── test_xml_AddNotation_2.f90 │ │ ├── test_xml_AddNotation_2.xml │ │ ├── test_xml_AddNotation_3.f90 │ │ ├── test_xml_AddNotation_3.xml │ │ ├── test_xml_AddParameterEntity.sh │ │ ├── test_xml_AddParameterEntity_0.f90 │ │ ├── test_xml_AddParameterEntity_1.f90 │ │ ├── test_xml_AddParameterEntity_1.xml │ │ ├── test_xml_AddParameterEntity_2.f90 │ │ ├── test_xml_AddParameterEntity_3.f90 │ │ ├── test_xml_AddParameterEntity_4.f90 │ │ ├── test_xml_AddParameterEntity_5.f90 │ │ ├── test_xml_AddParameterEntity_6.f90 │ │ ├── test_xml_AddParameterEntity_6.xml │ │ ├── test_xml_AddParameterEntity_7.f90 │ │ ├── test_xml_AddParameterEntity_7.xml │ │ ├── test_xml_AddPseudoAttribute.sh │ │ ├── test_xml_AddPseudoAttribute_0.f90 │ │ ├── test_xml_AddPseudoAttribute_1.f90 │ │ ├── test_xml_AddPseudoAttribute_1.xml │ │ ├── test_xml_AddPseudoAttribute_2.f90 │ │ ├── test_xml_AddPseudoAttribute_3.f90 │ │ ├── test_xml_AddPseudoAttribute_4.f90 │ │ ├── test_xml_AddPseudoAttribute_5.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_1.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_1.xml │ │ ├── test_xml_AddPseudoAttribute_overload_10.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_10.xml │ │ ├── test_xml_AddPseudoAttribute_overload_11.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_11.xml │ │ ├── test_xml_AddPseudoAttribute_overload_12.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_12.xml │ │ ├── test_xml_AddPseudoAttribute_overload_13.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_13.xml │ │ ├── test_xml_AddPseudoAttribute_overload_14.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_14.xml │ │ ├── test_xml_AddPseudoAttribute_overload_15.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_15.xml │ │ ├── test_xml_AddPseudoAttribute_overload_16.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_16.xml │ │ ├── test_xml_AddPseudoAttribute_overload_17.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_17.xml │ │ ├── test_xml_AddPseudoAttribute_overload_18.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_18.xml │ │ ├── test_xml_AddPseudoAttribute_overload_19.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_19.xml │ │ ├── test_xml_AddPseudoAttribute_overload_2.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_2.xml │ │ ├── test_xml_AddPseudoAttribute_overload_20.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_20.xml │ │ ├── test_xml_AddPseudoAttribute_overload_3.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_3.xml │ │ ├── test_xml_AddPseudoAttribute_overload_4.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_4.xml │ │ ├── test_xml_AddPseudoAttribute_overload_5.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_5.xml │ │ ├── test_xml_AddPseudoAttribute_overload_6.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_6.xml │ │ ├── test_xml_AddPseudoAttribute_overload_7.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_7.xml │ │ ├── test_xml_AddPseudoAttribute_overload_8.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_8.xml │ │ ├── test_xml_AddPseudoAttribute_overload_9.f90 │ │ ├── test_xml_AddPseudoAttribute_overload_9.xml │ │ ├── test_xml_AddXMLDeclaration.sh │ │ ├── test_xml_AddXMLDeclaration_0.f90 │ │ ├── test_xml_AddXMLDeclaration_1.f90 │ │ ├── test_xml_AddXMLDeclaration_1.xml │ │ ├── test_xml_AddXMLDeclaration_2.f90 │ │ ├── test_xml_AddXMLDeclaration_2.xml │ │ ├── test_xml_AddXMLDeclaration_3.f90 │ │ ├── test_xml_AddXMLDeclaration_3.xml │ │ ├── test_xml_AddXMLDeclaration_4.f90 │ │ ├── test_xml_AddXMLDeclaration_4.xml │ │ ├── test_xml_AddXMLDeclaration_5.f90 │ │ ├── test_xml_AddXMLPI.sh │ │ ├── test_xml_AddXMLPI_0.f90 │ │ ├── test_xml_AddXMLPI_1.f90 │ │ ├── test_xml_AddXMLPI_1.xml │ │ ├── test_xml_AddXMLPI_2.f90 │ │ ├── test_xml_AddXMLPI_2.xml │ │ ├── test_xml_AddXMLPI_3.f90 │ │ ├── test_xml_AddXMLPI_3.xml │ │ ├── test_xml_AddXMLPI_4.f90 │ │ ├── test_xml_AddXMLPI_5.f90 │ │ ├── test_xml_AddXMLStylesheet.sh │ │ ├── test_xml_AddXMLStylesheet_0.f90 │ │ ├── test_xml_AddXMLStylesheet_1.f90 │ │ ├── test_xml_AddXMLStylesheet_1.xml │ │ ├── test_xml_AddXMLStylesheet_2.f90 │ │ ├── test_xml_AddXMLStylesheet_2.xml │ │ ├── test_xml_AddXMLStylesheet_3.f90 │ │ ├── test_xml_AddXMLStylesheet_3.xml │ │ ├── test_xml_AddXMLStylesheet_4.f90 │ │ ├── test_xml_AddXMLStylesheet_4.xml │ │ ├── test_xml_AddXMLStylesheet_5.f90 │ │ ├── test_xml_AddXMLStylesheet_5.xml │ │ ├── test_xml_Close.sh │ │ ├── test_xml_Close_1.f90 │ │ ├── test_xml_Close_2.f90 │ │ ├── test_xml_Close_3.f90 │ │ ├── test_xml_Close_4.f90 │ │ ├── test_xml_Close_5.f90 │ │ ├── test_xml_Close_5.xml │ │ ├── test_xml_EndElement.sh │ │ ├── test_xml_EndElement_0.f90 │ │ ├── test_xml_EndElement_1.f90 │ │ ├── test_xml_EndElement_2.f90 │ │ ├── test_xml_EndElement_2.xml │ │ ├── test_xml_EndElement_3.f90 │ │ ├── test_xml_EndElement_4.f90 │ │ ├── test_xml_EndElement_4.xml │ │ ├── test_xml_EndElement_5.f90 │ │ ├── test_xml_EndElement_5.xml │ │ ├── test_xml_Namespaces.sh │ │ ├── test_xml_Namespaces_0.f90 │ │ ├── test_xml_Namespaces_1.f90 │ │ ├── test_xml_Namespaces_1.xml │ │ ├── test_xml_Namespaces_10.f90 │ │ ├── test_xml_Namespaces_11.f90 │ │ ├── test_xml_Namespaces_12.f90 │ │ ├── test_xml_Namespaces_13.f90 │ │ ├── test_xml_Namespaces_13.xml │ │ ├── test_xml_Namespaces_2.f90 │ │ ├── test_xml_Namespaces_2.xml │ │ ├── test_xml_Namespaces_3.f90 │ │ ├── test_xml_Namespaces_3.xml │ │ ├── test_xml_Namespaces_4.f90 │ │ ├── test_xml_Namespaces_5.f90 │ │ ├── test_xml_Namespaces_6.f90 │ │ ├── test_xml_Namespaces_6.xml │ │ ├── test_xml_Namespaces_7.f90 │ │ ├── test_xml_Namespaces_7.xml │ │ ├── test_xml_Namespaces_8.f90 │ │ ├── test_xml_Namespaces_9.f90 │ │ ├── test_xml_NewElement.sh │ │ ├── test_xml_NewElement_0.f90 │ │ ├── test_xml_NewElement_1.f90 │ │ ├── test_xml_NewElement_1.xml │ │ ├── test_xml_NewElement_2.f90 │ │ ├── test_xml_NewElement_3.f90 │ │ ├── test_xml_NewElement_4.f90 │ │ ├── test_xml_NewElement_5.f90 │ │ ├── test_xml_NewElement_6.f90 │ │ ├── test_xml_NewElement_7.f90 │ │ ├── test_xml_Openfile.sh │ │ ├── test_xml_Openfile_1.f90 │ │ ├── test_xml_Openfile_2.f90 │ │ ├── test_xml_Openfile_3.f90 │ │ └── test_xml_Openfile_4.f90 ├── gitmodules ├── initialize_external_repos.sh ├── mbd.cmake ├── mbd.make ├── mbd │ ├── .gitignore │ ├── .travis.yml │ ├── .travis │ │ ├── env.sh │ │ └── install.sh │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── build.py │ ├── cmake │ │ └── fortran_flags_override.cmake │ ├── docs │ │ ├── anisotropic-gaussians.md │ │ ├── api.rst │ │ ├── conf.py │ │ ├── density-coulomb.md │ │ ├── index.rst │ │ ├── libmbd.md │ │ ├── tweaks.css │ │ └── version.h │ ├── pyproject.toml │ ├── setup.cfg │ ├── src │ │ ├── CMakeLists.txt │ │ ├── defaults.h │ │ ├── mbd.F90 │ │ ├── mbd.h │ │ ├── mbd_blacs.f90 │ │ ├── mbd_c_api.F90 │ │ ├── mbd_constants.f90 │ │ ├── mbd_coulomb.f90 │ │ ├── mbd_damping.F90 │ │ ├── mbd_density.f90 │ │ ├── mbd_dipole.F90 │ │ ├── mbd_elsi.F90 │ │ ├── mbd_formulas.f90 │ │ ├── mbd_geom.F90 │ │ ├── mbd_gradients.f90 │ │ ├── mbd_hamiltonian.F90 │ │ ├── mbd_lapack.f90 │ │ ├── mbd_linalg.F90 │ │ ├── mbd_matrix.F90 │ │ ├── mbd_methods.F90 │ │ ├── mbd_mpi.F90 │ │ ├── mbd_rpa.F90 │ │ ├── mbd_scalapack.f90 │ │ ├── mbd_scs.f90 │ │ ├── mbd_ts.f90 │ │ ├── mbd_utils.F90 │ │ ├── mbd_vdw_param.f90 │ │ ├── pymbd │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── fortran.py │ │ │ ├── pymbd.py │ │ │ ├── tensorflow.py │ │ │ ├── utils.py │ │ │ └── vdw-params.csv │ │ └── version.h.in │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── collect-mbd-tests.py │ │ ├── conftest.py │ │ ├── mbd_api_tests.F90 │ │ ├── mbd_grad_test_cases.f90 │ │ ├── mbd_grad_tests.F90 │ │ └── test_pymbd.py │ └── utils │ │ └── generate-vdw-params.py ├── submodule_commit_hash_records ├── update_commit_has_records.sh └── wannier90.cmake ├── include ├── configure.h.in ├── cpv_device_macros.h ├── defs.h.README └── qe_version.h ├── install ├── README.FX10 ├── aclocal.m4 ├── addsonpatch.sh ├── addsontool.sh ├── build_fox_with_pgi.sh ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── configure.msg.in ├── extlibs_makefile ├── includedep.sh ├── install-sh ├── install_utils ├── m4 │ ├── README │ ├── ax_check_compile_flag.m4 │ ├── x_ac_qe_aix_dflags.m4 │ ├── x_ac_qe_ar.m4 │ ├── x_ac_qe_arch.m4 │ ├── x_ac_qe_blas.m4 │ ├── x_ac_qe_cc.m4 │ ├── x_ac_qe_cpp.m4 │ ├── x_ac_qe_cuda.m4 │ ├── x_ac_qe_default_env.m4 │ ├── x_ac_qe_elpa.m4 │ ├── x_ac_qe_environ.m4 │ ├── x_ac_qe_f90.m4 │ ├── x_ac_qe_f90rule.m4 │ ├── x_ac_qe_fft.m4 │ ├── x_ac_qe_fox.m4 │ ├── x_ac_qe_git.m4 │ ├── x_ac_qe_hdf5.m4 │ ├── x_ac_qe_lapack.m4 │ ├── x_ac_qe_ld.m4 │ ├── x_ac_qe_libxc.m4 │ ├── x_ac_qe_mass.m4 │ ├── x_ac_qe_mpi.m4 │ ├── x_ac_qe_mpif90.m4 │ ├── x_ac_qe_openmp.m4 │ ├── x_ac_qe_plugins.m4 │ ├── x_ac_qe_ranlib.m4 │ ├── x_ac_qe_scalapack.m4 │ ├── x_ac_qe_signal.m4 │ └── x_ac_qe_wget.m4 ├── make.inc.in ├── make_lapack.inc.in ├── make_wannier90.inc.in ├── makedeps.sh ├── moduledep.sh ├── namedep.sh ├── plugins_list ├── plugins_makefile └── refresh-configure.sh ├── logo.jpg ├── pseudo ├── Au.pz-rrkjus_aewfc.UPF ├── Au_ONCV_PBE_FR_.upf ├── B-PBE.upf ├── C-q4.gth ├── H-q1.gth ├── HUSPBE.RRKJ3 ├── H_US.van ├── Mo-PBE.upf ├── N-PBE.upf ├── O-q6.gth ├── O_US.van ├── Rh.pbe-rrkjus_lb.UPF ├── Rhs.pbe-rrkjus_lb.UPF ├── S-PBE.upf ├── Si.bhs ├── Si_r.upf └── clean_ps ├── test-suite ├── CMakeLists.txt ├── ENVIRONMENT ├── Makefile ├── QEHeat_h2o │ ├── all_currents.in │ ├── all_currents_2pt.in │ ├── benchmark.out.git.inp=all_currents.in │ ├── benchmark.out.git.inp=all_currents_2pt.in │ └── traj │ │ ├── cp.pos │ │ └── cp.vel ├── QEHeat_rotation │ ├── all_currents.in │ ├── all_currents_2pt.in │ ├── all_currents_not_rotated.in │ ├── all_currents_not_rotated_2pt.in │ ├── benchmark.out.git.inp=all_currents.in │ ├── benchmark.out.git.inp=all_currents_2pt.in │ ├── benchmark.out.git.inp=all_currents_not_rotated.in │ ├── benchmark.out.git.inp=all_currents_not_rotated_2pt.in │ ├── generate_all_currents.in.sh │ ├── inpos │ ├── invel │ ├── rotate.py │ ├── rotate_run.sh │ └── types ├── QEHeat_translation │ ├── README │ ├── benchmark.out.git.inp=input.in │ ├── benchmark.out.git.inp=input_2pt.in │ ├── benchmark.out.git.inp=input_ar.in │ ├── benchmark.out.git.inp=input_ar_2pt.in │ ├── input.in │ ├── input_2pt.in │ ├── input_ar.in │ └── input_ar_2pt.in ├── README ├── README_CMake ├── benchmarks │ ├── CMakeLists.txt │ └── pw │ │ ├── ausurf.in │ │ └── psiwat.in ├── buildbot │ ├── Cineca_farm │ │ ├── buildbot-slave.tac │ │ ├── buildbot.tac │ │ ├── check_smtp.py │ │ ├── environement.txt │ │ ├── farmer_gcc640_para.cfg │ │ ├── farmer_gcc640_serial.cfg │ │ ├── farmer_gcc730_openmpi1107.cfg │ │ ├── farmer_intel12_openmpi.cfg │ │ ├── farmer_intel17_impi.cfg │ │ ├── farmer_intel17_impi_serial.cfg │ │ ├── farmer_intel17_mvapich23.cfg │ │ ├── farmer_intel17_openmpi313.cfg │ │ ├── farmer_intel18_mvapich23.cfg │ │ ├── farmer_intel18_openmpi313.cfg │ │ ├── farmer_intel18_openmpi313_openmp.cfg │ │ ├── farmer_pgi17_mvapich23b.cfg │ │ ├── farmer_pgi18_mvapich23b.cfg │ │ ├── gcc640_para.cfg │ │ ├── gcc640_serial.cfg │ │ ├── intel17_impi.cfg │ │ ├── master.cfg │ │ └── slave.py │ └── Udine_farm │ │ ├── README.txt │ │ ├── README.txt.libxc │ │ ├── farmer_gcc102_openmpi404.cfg │ │ ├── farmer_gcc102_openmpi404_hdf5.cfg │ │ ├── farmer_gcc102_openmpi404_libxc.cfg │ │ ├── farmer_gcc102_openmpi404_openmp.cfg │ │ ├── farmer_gcc102_serial.cfg │ │ ├── farmer_gcc750_openmpi316-dbg.cfg │ │ ├── farmer_intel19_mvapich23.cfg │ │ ├── farmer_intel20_impi.cfg │ │ ├── farmer_pgi1910_GPU.cfg │ │ ├── farmer_pgi1910_openmpi313.cfg │ │ ├── master.cfg │ │ └── worker.py ├── check_pseudo.sh ├── cp_al_edft │ ├── Al.in │ ├── Al.uspp.in │ ├── benchmark.out.git.inp=Al.in │ └── benchmark.out.git.inp=Al.uspp.in ├── cp_cluster │ ├── benchmark.out.git.inp=cluster4.in │ ├── benchmark.out.git.inp=cluster6.in │ ├── cluster4.in │ └── cluster6.in ├── cp_h2o │ ├── benchmark.out.git.inp=h2o-mt-blyp-1.in │ ├── benchmark.out.git.inp=h2o-mt-blyp-2.in │ ├── benchmark.out.git.inp=h2o-mt-blyp-3.in │ ├── benchmark.out.git.inp=h2o-mt-blyp-4.in │ ├── benchmark.out.git.inp=h2o-mt-blyp-5.in │ ├── benchmark.out.git.inp=h2o-mt-blyp-6.in │ ├── benchmark.out.git.inp=h2o-mt-blyp-7.in │ ├── benchmark.out.git.inp=h2o-mt-blyp-cg.in │ ├── h2o-mt-blyp-1.in │ ├── h2o-mt-blyp-2.in │ ├── h2o-mt-blyp-3.in │ ├── h2o-mt-blyp-4.in │ ├── h2o-mt-blyp-5.in │ ├── h2o-mt-blyp-6.in │ ├── h2o-mt-blyp-7.in │ └── h2o-mt-blyp-cg.in ├── cp_h2o_exx │ ├── benchmark.out.git.inp=h2o-mt-b3lyp-1.in │ ├── benchmark.out.git.inp=h2o-mt-exx_fraction.in │ ├── h2o-mt-b3lyp-1.in │ └── h2o-mt-exx_fraction.in ├── cp_h2o_scan_libxc │ ├── benchmark.out.git.inp=nspin1.in │ ├── benchmark.out.git.inp=nspin2.in │ ├── nspin1.in │ └── nspin2.in ├── cp_h2o_wf │ ├── README │ ├── benchmark.out.git.inp=h2o-nspin1.in │ ├── benchmark.out.git.inp=h2o-nspin2.in │ ├── h2o-nspin1.in │ └── h2o-nspin2.in ├── cp_o2 │ ├── benchmark.out.git.inp=o2-us-para-pbe-1.in │ ├── benchmark.out.git.inp=o2-us-para-pbe-2.in │ ├── benchmark.out.git.inp=o2-us-para-pbe-3.in │ ├── benchmark.out.git.inp=o2-us-para-pbe-4.in │ ├── benchmark.out.git.inp=o2-us-para-pbe-5.in │ ├── benchmark.out.git.inp=o2-us-para-pbe-6.in │ ├── o2-us-para-pbe-1.in │ ├── o2-us-para-pbe-2.in │ ├── o2-us-para-pbe-3.in │ ├── o2-us-para-pbe-4.in │ ├── o2-us-para-pbe-5.in │ └── o2-us-para-pbe-6.in ├── cp_si │ ├── benchmark.out.git.inp=si-vbc-lda-1.in │ ├── benchmark.out.git.inp=si-vbc-lda-2.in │ ├── benchmark.out.git.inp=si-vbc-lda-3.in │ ├── si-vbc-lda-1.in │ ├── si-vbc-lda-2.in │ └── si-vbc-lda-3.in ├── cp_sio2 │ ├── benchmark.out.git.inp=sio2-us-lda-1.in │ ├── benchmark.out.git.inp=sio2-us-lda-2.in │ ├── benchmark.out.git.inp=sio2-us-lda-3.in │ ├── benchmark.out.git.inp=sio2-us-lda-4.in │ ├── benchmark.out.git.inp=sio2-us-lda-cg.in │ ├── benchmark.out.git.inp=sio2-us-pbe-1.in │ ├── benchmark.out.git.inp=sio2-us-pbe-2.in │ ├── benchmark.out.git.inp=sio2-us-pbe-cg.in │ ├── sio2-us-lda-1.in │ ├── sio2-us-lda-2.in │ ├── sio2-us-lda-3.in │ ├── sio2-us-lda-4.in │ ├── sio2-us-lda-cg.in │ ├── sio2-us-pbe-1.in │ ├── sio2-us-pbe-2.in │ └── sio2-us-pbe-cg.in ├── ctest_runner.sh ├── epw_2D │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=epw2.in.args=3 │ ├── benchmark.out.git.inp=epw3.in.args=5 │ ├── benchmark.out.git.inp=epw4.in.args=5 │ ├── benchmark.out.git.inp=epw5.in.args=5 │ ├── benchmark.out.git.inp=epw6.in.args=5 │ ├── benchmark.out.git.inp=nscf_epw.in.args=1 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=scf.in.args=0 │ ├── benchmark.out.git.inp=scf_epw.in.args=0 │ ├── epw1.in │ ├── epw2.in │ ├── epw3.in │ ├── epw4.in │ ├── epw5.in │ ├── epw6.in │ ├── nscf_epw.in │ ├── ph.in │ ├── pp.in │ ├── quadrupole.fmt │ ├── scf.in │ └── scf_epw.in ├── epw_base │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=epw10.in.args=3 │ ├── benchmark.out.git.inp=epw11.in.args=3 │ ├── benchmark.out.git.inp=epw12.in.args=3 │ ├── benchmark.out.git.inp=epw13.in.args=3 │ ├── benchmark.out.git.inp=epw2.in.args=3 │ ├── benchmark.out.git.inp=epw3.in.args=3 │ ├── benchmark.out.git.inp=epw4.in.args=3 │ ├── benchmark.out.git.inp=epw5.in.args=3 │ ├── benchmark.out.git.inp=epw6.in.args=3 │ ├── benchmark.out.git.inp=epw9.in.args=3 │ ├── benchmark.out.git.inp=nscf_epw.in.args=1 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=scf.in.args=1 │ ├── benchmark.out.git.inp=scf_epw.in.args=1 │ ├── epw.in │ ├── epw1.in │ ├── epw10.in │ ├── epw11.in │ ├── epw12.in │ ├── epw13.in │ ├── epw2.in │ ├── epw3.in │ ├── epw4.in │ ├── epw5.in │ ├── epw6.in │ ├── epw9.in │ ├── nscf_epw.in │ ├── path.dat │ ├── ph.in │ ├── pp.in │ ├── scf.in │ └── scf_epw.in ├── epw_hall │ ├── LGXKG4.txt │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=epw2.in.args=3 │ ├── benchmark.out.git.inp=epw3.in.args=5 │ ├── benchmark.out.git.inp=epw4.in.args=5 │ ├── benchmark.out.git.inp=nscf.in.args=1 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=scf.in.args=0 │ ├── epw1.in │ ├── epw2.in │ ├── epw3.in │ ├── epw4.in │ ├── nscf.in │ ├── ph.in │ ├── pp.in │ ├── quadrupole.fmt │ └── scf.in ├── epw_metal │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=epw2.in.args=3 │ ├── benchmark.out.git.inp=epw3.in.args=3 │ ├── benchmark.out.git.inp=epw4.in.args=3 │ ├── benchmark.out.git.inp=nscf_epw.in.args=1 │ ├── benchmark.out.git.inp=scf_epw.in.args=1 │ ├── epw1.in │ ├── epw2.in │ ├── epw3.in │ ├── epw4.in │ ├── nscf_epw.in │ ├── ph.in │ ├── pp.in │ ├── save │ │ ├── ifc.q2r │ │ ├── pb.dvscf_q1 │ │ ├── pb.dvscf_q2 │ │ ├── pb.dvscf_q3 │ │ ├── pb.dvscf_q4 │ │ ├── pb.dyn_q1 │ │ ├── pb.dyn_q2 │ │ ├── pb.dyn_q3 │ │ ├── pb.dyn_q4 │ │ └── pb.phsave │ │ │ ├── control_ph.xml │ │ │ ├── dynmat.1.0.xml │ │ │ ├── dynmat.1.1.xml │ │ │ ├── dynmat.2.0.xml │ │ │ ├── dynmat.2.1.xml │ │ │ ├── dynmat.2.2.xml │ │ │ ├── dynmat.3.0.xml │ │ │ ├── dynmat.3.1.xml │ │ │ ├── dynmat.3.2.xml │ │ │ ├── dynmat.4.0.xml │ │ │ ├── dynmat.4.1.xml │ │ │ ├── dynmat.4.2.xml │ │ │ ├── dynmat.4.3.xml │ │ │ ├── patterns.1.xml │ │ │ ├── patterns.2.xml │ │ │ ├── patterns.3.xml │ │ │ ├── patterns.4.xml │ │ │ └── status_run.xml │ ├── scf.in │ └── scf_epw.in ├── epw_mob │ ├── LGX.txt │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=epw2.in.args=3 │ ├── benchmark.out.git.inp=epw3.in.args=3 │ ├── benchmark.out.git.inp=epw4.in.args=3 │ ├── benchmark.out.git.inp=epw5.in.args=3 │ ├── benchmark.out.git.inp=epw6.in.args=3 │ ├── benchmark.out.git.inp=nscf.in.args=1 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=q2r.in.args=4 │ ├── benchmark.out.git.inp=scf.in.args=1 │ ├── epw1.in │ ├── epw2.in │ ├── epw3.in │ ├── epw4.in │ ├── epw5.in │ ├── epw6.in │ ├── kpt.txt │ ├── nscf.in │ ├── ph.in │ ├── pp.in │ ├── pp.py │ ├── q2r.in │ ├── scf.in │ └── si.eig ├── epw_mob_ibte │ ├── LGX.txt │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=epw2.in.args=3 │ ├── benchmark.out.git.inp=epw3.in.args=3 │ ├── benchmark.out.git.inp=nscf.in.args=1 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=q2r.in.args=4 │ ├── benchmark.out.git.inp=scf.in.args=1 │ ├── epw1.in │ ├── epw2.in │ ├── epw3.in │ ├── nscf.in │ ├── ph.in │ ├── pp.in │ ├── q2r.in │ └── scf.in ├── epw_mob_ibte_sym │ ├── LGX.txt │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=epw2.in.args=3 │ ├── benchmark.out.git.inp=epw3.in.args=3 │ ├── benchmark.out.git.inp=epw4.in.args=5 │ ├── benchmark.out.git.inp=epw5.in.args=3 │ ├── benchmark.out.git.inp=epw6.in.args=5 │ ├── benchmark.out.git.inp=epw7.in.args=3 │ ├── benchmark.out.git.inp=epw8.in.args=5 │ ├── benchmark.out.git.inp=epw9.in.args=5 │ ├── benchmark.out.git.inp=nscf.in.args=1 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=q2r.in.args=4 │ ├── benchmark.out.git.inp=scf.in.args=1 │ ├── epw1.in │ ├── epw2.in │ ├── epw3.in │ ├── epw4.in │ ├── epw5.in │ ├── epw6.in │ ├── epw7.in │ ├── epw8.in │ ├── epw9.in │ ├── nscf.in │ ├── ph.in │ ├── pp.in │ ├── q2r.in │ └── scf.in ├── epw_mob_polar │ ├── Ga-LDA.upf │ ├── MGA.txt │ ├── N-LDA.upf │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=epw2.in.args=3 │ ├── benchmark.out.git.inp=epw3.in.args=5 │ ├── benchmark.out.git.inp=nscf.in.args=1 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=scf.in.args=1 │ ├── epw1.in │ ├── epw2.in │ ├── epw3.in │ ├── nscf.in │ ├── ph.in │ ├── pp.in │ └── scf.in ├── epw_pl │ ├── LGX.txt │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=nscf_epw.in.args=1 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=scf.in.args=1 │ ├── benchmark.out.git.inp=scf_epw.in.args=1 │ ├── epw1.in │ ├── nscf_epw.in │ ├── ph.in │ ├── pp.in │ ├── qgrid.txt │ ├── scf.in │ └── scf_epw.in ├── epw_plrn │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=epw2.in.args=3 │ ├── benchmark.out.git.inp=nscf.in.args=1 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=scf.in.args=1 │ ├── epw1.in │ ├── epw2.in │ ├── nscf.in │ ├── ph.in │ ├── pp.in │ └── scf.in ├── epw_polar │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=epw3.in.args=3 │ ├── benchmark.out.git.inp=nscf_epw.in.args=1 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=scf.in.args=1 │ ├── benchmark.out.git.inp=scf_epw.in.args=1 │ ├── epw1.in │ ├── epw3.in │ ├── nscf_epw.in │ ├── ph.in │ ├── pp.in │ ├── scf.in │ └── scf_epw.in ├── epw_qdpt │ ├── LGX.txt │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=epw2.in.args=3 │ ├── benchmark.out.git.inp=nscf.in.args=1 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=q2r.in.args=4 │ ├── benchmark.out.git.inp=scf.in.args=1 │ ├── epw1.in │ ├── epw2.in │ ├── epw2_no_elpa.in │ ├── nscf.in │ ├── ph.in │ ├── pp.in │ ├── pp.py │ ├── q2r.in │ └── scf.in ├── epw_soc │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=epw2.in.args=3 │ ├── benchmark.out.git.inp=nscf_epw.in.args=1 │ ├── benchmark.out.git.inp=scf_epw.in.args=1 │ ├── epw1.in │ ├── epw2.in │ ├── nscf_epw.in │ ├── ph.in │ ├── pp.in │ ├── save │ │ ├── ifc.q2r.xml │ │ ├── pb.dvscf_q1 │ │ ├── pb.dvscf_q2 │ │ ├── pb.dvscf_q3 │ │ ├── pb.dvscf_q4 │ │ ├── pb.dyn_q1.xml │ │ ├── pb.dyn_q2.xml │ │ ├── pb.dyn_q3.xml │ │ ├── pb.dyn_q4.xml │ │ └── pb.phsave │ │ │ ├── control_ph.xml │ │ │ ├── dynmat.1.0.xml │ │ │ ├── dynmat.1.1.xml │ │ │ ├── dynmat.2.0.xml │ │ │ ├── dynmat.2.1.xml │ │ │ ├── dynmat.2.2.xml │ │ │ ├── dynmat.3.0.xml │ │ │ ├── dynmat.3.1.xml │ │ │ ├── dynmat.3.2.xml │ │ │ ├── dynmat.4.0.xml │ │ │ ├── dynmat.4.1.xml │ │ │ ├── dynmat.4.2.xml │ │ │ ├── dynmat.4.3.xml │ │ │ ├── patterns.1.xml │ │ │ ├── patterns.2.xml │ │ │ ├── patterns.3.xml │ │ │ ├── patterns.4.xml │ │ │ └── status_run.xml │ ├── scf.in │ └── scf_epw.in ├── epw_super │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=epw2.in.args=3 │ ├── benchmark.out.git.inp=epw3.in.args=3 │ ├── benchmark.out.git.inp=epw4.in.args=3 │ ├── benchmark.out.git.inp=epw5.in.args=3 │ ├── benchmark.out.git.inp=nscf_epw.in.args=1 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=scf.in.args=1 │ ├── benchmark.out.git.inp=scf_epw.in.args=1 │ ├── epw1.in │ ├── epw2.in │ ├── epw3.in │ ├── epw4.in │ ├── epw5.in │ ├── nscf_epw.in │ ├── ph.in │ ├── pp.in │ ├── scf.in │ └── scf_epw.in ├── epw_trev │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=nscf_epw.in.args=1 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=scf.in.args=1 │ ├── benchmark.out.git.inp=scf_epw.in.args=1 │ ├── epw1.in │ ├── nscf_epw.in │ ├── ph.in │ ├── pp.in │ ├── scf.in │ └── scf_epw.in ├── epw_trev_paw │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=nscf.in.args=1 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=scf.in.args=1 │ ├── epw1.in │ ├── nscf.in │ ├── path.dat │ ├── pathq.dat │ ├── ph.in │ ├── pp.in │ └── scf.in ├── epw_trev_uspp │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=nscf.in.args=1 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=scf.in.args=1 │ ├── epw1.in │ ├── nscf.in │ ├── path.dat │ ├── pathq.dat │ ├── ph.in │ ├── pp.in │ └── scf.in ├── epw_wfpt │ ├── .gitignore │ ├── README.md │ ├── ahc1.in │ ├── ahc2.in │ ├── benchmark.out.git.inp=ahc1.in.args=7 │ ├── benchmark.out.git.inp=ahc2.in.args=7 │ ├── benchmark.out.git.inp=epw11.in.args=3 │ ├── benchmark.out.git.inp=epw12.in.args=3 │ ├── benchmark.out.git.inp=epw21.in.args=3 │ ├── benchmark.out.git.inp=epw22.in.args=3 │ ├── benchmark.out.git.inp=epw23.in.args=3 │ ├── benchmark.out.git.inp=matdyn.in.args=6 │ ├── benchmark.out.git.inp=nscf1.in.args=1 │ ├── benchmark.out.git.inp=nscf2.in.args=1 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=q2r.in.args=4 │ ├── benchmark.out.git.inp=scf.in.args=1 │ ├── epw11.in │ ├── epw12.in │ ├── epw21.in │ ├── epw22.in │ ├── epw23.in │ ├── kpath.GammaX.txt │ ├── matdyn.in │ ├── nscf1.in │ ├── nscf2.in │ ├── ph.in │ ├── postahc1.in │ ├── postahc2.in │ ├── pp.in │ ├── q2r.in │ └── scf.in ├── extract-cp.sh ├── extract-epw.sh ├── extract-hp.sh ├── extract-image.sh ├── extract-kcw.sh ├── extract-oscdft-pp.sh ├── extract-ph.sh ├── extract-pp.sh ├── extract-pw.sh ├── extract-tddfpt.sh ├── extract-zg.sh ├── gpu-resource-example.json ├── hp_insulator_paw │ ├── BN.hp.in │ ├── BN.scf.in │ ├── benchmark.out.git.inp=BN.hp.in.args=3 │ ├── benchmark.out.git.inp=BN.hp.in.args=4 │ ├── benchmark.out.git.inp=BN.scf.in.args=1 │ └── benchmark.out.git.inp=BN.scf.in.args=2 ├── hp_insulator_paw_magn │ ├── CrI3.hp.in │ ├── CrI3.scf.1.in │ ├── CrI3.scf.2.in │ ├── benchmark.out.git.inp=CrI3.hp.in.args=3 │ ├── benchmark.out.git.inp=CrI3.scf.1.in.args=1 │ └── benchmark.out.git.inp=CrI3.scf.2.in.args=1 ├── hp_insulator_us │ ├── LiCoO2.hp.in │ ├── LiCoO2.scf.in │ ├── benchmark.out.git.inp=LiCoO2.hp.in.args=3 │ ├── benchmark.out.git.inp=LiCoO2.hp.in.args=4 │ ├── benchmark.out.git.inp=LiCoO2.scf.in.args=1 │ └── benchmark.out.git.inp=LiCoO2.scf.in.args=2 ├── hp_insulator_us_intersiteV │ ├── LiCoO2.hp.in │ ├── LiCoO2.scf.in │ ├── benchmark.out.git.inp=LiCoO2.hp.in.args=3 │ ├── benchmark.out.git.inp=LiCoO2.hp.in.args=4 │ ├── benchmark.out.git.inp=LiCoO2.scf.in.args=1 │ └── benchmark.out.git.inp=LiCoO2.scf.in.args=2 ├── hp_insulator_us_magn │ ├── NiO.hp.in │ ├── NiO.scf.1.in │ ├── NiO.scf.2.in │ ├── benchmark.out.git.inp=NiO.hp.in.args=3 │ ├── benchmark.out.git.inp=NiO.hp.in.args=4 │ ├── benchmark.out.git.inp=NiO.scf.1.in.args=1 │ ├── benchmark.out.git.inp=NiO.scf.1.in.args=2 │ ├── benchmark.out.git.inp=NiO.scf.2.in.args=1 │ └── benchmark.out.git.inp=NiO.scf.2.in.args=2 ├── hp_metal_paw_magn │ ├── Fe.hp.in │ ├── Fe.scf.in │ ├── benchmark.out.git.inp=Fe.hp.in.args=4 │ └── benchmark.out.git.inp=Fe.scf.in.args=2 ├── hp_metal_paw_magn_intersiteV │ ├── LiNiO2.hp.in │ ├── LiNiO2.scf.in │ ├── benchmark.out.git.inp=LiNiO2.hp.in.args=4 │ └── benchmark.out.git.inp=LiNiO2.scf.in.args=2 ├── hp_metal_us_magn │ ├── Ni.hp.in │ ├── Ni.scf.in │ ├── benchmark.out.git.inp=Ni.hp.in.args=3 │ ├── benchmark.out.git.inp=Ni.hp.in.args=4 │ ├── benchmark.out.git.inp=Ni.scf.in.args=1 │ └── benchmark.out.git.inp=Ni.scf.in.args=2 ├── hp_soc_UV_paw_magn │ ├── benchmark.out.git.inp=bn.hp.in.args=3 │ ├── benchmark.out.git.inp=bn.hp.in.args=4 │ ├── benchmark.out.git.inp=bn.scf.in.args=1 │ ├── benchmark.out.git.inp=bn.scf.in.args=2 │ ├── bn.hp.in │ └── bn.scf.in ├── hp_soc_U_nc_nonmagn │ ├── au.hp.in │ ├── au.scf.in │ ├── benchmark.out.git.inp=au.hp.in.args=3 │ ├── benchmark.out.git.inp=au.hp.in.args=4 │ ├── benchmark.out.git.inp=au.scf.in.args=1 │ └── benchmark.out.git.inp=au.scf.in.args=2 ├── hp_soc_U_us_magn │ ├── benchmark.out.git.inp=bn.hp.in.args=3 │ ├── benchmark.out.git.inp=bn.hp.in.args=4 │ ├── benchmark.out.git.inp=bn.scf.in.args=1 │ ├── benchmark.out.git.inp=bn.scf.in.args=2 │ ├── bn.hp.in │ └── bn.scf.in ├── image_para │ ├── benchmark.out.git.inp=si.ph.in.args=2 │ ├── benchmark.out.git.inp=si.scf.in.args=1 │ ├── si.ph.in │ └── si.scf.in ├── jobconfig ├── kcw_ks │ ├── benchmark.out.git.inp=h2o.kcw-ham.in.args=7 │ ├── benchmark.out.git.inp=h2o.kcw-screen.in.args=16 │ ├── benchmark.out.git.inp=h2o.kcw-wann2kcw.in.args=15 │ ├── benchmark.out.git.inp=h2o.scf.in.args=1 │ ├── h2o.kcw-ham.in │ ├── h2o.kcw-screen.in │ ├── h2o.kcw-wann2kcw.in │ └── h2o.scf.in ├── kcw_wann │ ├── Si.kcw-ham.in │ ├── Si.kcw-screen.in │ ├── Si.kcw-wann2kcw.in │ ├── Si.pw2wann.in │ ├── Si.scf.in │ ├── Si.win │ ├── benchmark.out.git.inp=Si.kcw-ham.in.args=7 │ ├── benchmark.out.git.inp=Si.kcw-screen.in.args=6 │ ├── benchmark.out.git.inp=Si.kcw-wann2kcw.in.args=5 │ ├── benchmark.out.git.inp=Si.pw2wann.in.args=3 │ ├── benchmark.out.git.inp=Si.scf.in.args=1 │ ├── benchmark.out.git.inp=Si.win.args=2 │ └── benchmark.out.git.inp=Si.win.args=4 ├── noexe │ ├── benchmark.out.git.inp=langevin.in │ ├── benchmark.out.git.inp=langevin_smc.in │ ├── benchmark.out.git.inp=md_verlet_wall.in │ ├── langevin.in │ ├── langevin_smc.in │ └── md_verlet_wall.in ├── not_epw_comp │ ├── epw1.in │ ├── grid.py │ ├── nscf_epw.in │ ├── ph.in │ ├── ph_epw.in │ ├── scf.in │ └── scf_epw.in ├── not_epw_scdm │ ├── LGX.txt │ ├── benchmark.out.git.inp=epw1.in.args=3 │ ├── benchmark.out.git.inp=epw2.in.args=3 │ ├── benchmark.out.git.inp=epw3.in.args=3 │ ├── benchmark.out.git.inp=nscf.in.args=1 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=scf.in.args=1 │ ├── epw1.in │ ├── epw2.in │ ├── epw3.in │ ├── nscf.in │ ├── ph.in │ ├── pp.in │ └── scf.in ├── oscdft_pp │ ├── benchmark.out.git.inp=normalize.in.args=3_normalize.oscdft.in_pw.in │ ├── benchmark.out.git.inp=view.in.args=3_view.oscdft.in_pw.in │ ├── normalize.in │ ├── normalize.oscdft.in │ ├── pw.in │ ├── view.in │ └── view.oscdft.in ├── oscdft_pw │ ├── benchmark.out.git.inp=k.in.args=2_k.oscdft.in │ ├── benchmark.out.git.inp=nooscdft.in.args=1 │ ├── benchmark.out.git.inp=normcons.in.args=2_normcons.oscdft.in │ ├── benchmark.out.git.inp=relax.in.args=2_scf.oscdft.in │ ├── benchmark.out.git.inp=scf.in.args=2_scf.oscdft.in │ ├── benchmark.out.git.inp=view.in.args=2_view.oscdft.in │ ├── k.in │ ├── k.oscdft.in │ ├── nooscdft.in │ ├── normcons.in │ ├── normcons.oscdft.in │ ├── relax.in │ ├── scf.in │ ├── scf.oscdft.in │ ├── view.in │ └── view.oscdft.in ├── ph_2d │ ├── benchmark.out.git.inp=matdyn1.in.args=8 │ ├── benchmark.out.git.inp=matdyn2.in.args=8 │ ├── benchmark.out.git.inp=ph.in.args=2 │ ├── benchmark.out.git.inp=q2r1.in.args=3 │ ├── benchmark.out.git.inp=q2r2.in.args=3 │ ├── benchmark.out.git.inp=scf.in.args=1 │ ├── matdyn1.in │ ├── matdyn2.in │ ├── ph.in │ ├── q2r1.in │ ├── q2r2.in │ └── scf.in ├── ph_Ni_nc_spinorbit_mag │ ├── Ni.ph.in │ ├── Ni.scf.in │ ├── benchmark.out.git.inp=Ni.ph.in.args=2 │ └── benchmark.out.git.inp=Ni.scf.in.args=1 ├── ph_U_insulator_paw │ ├── BN.phG.in │ ├── BN.phq.in │ ├── BN.scf.in │ ├── benchmark.out.git.inp=BN.phG.in.args=2 │ ├── benchmark.out.git.inp=BN.phq.in.args=2 │ └── benchmark.out.git.inp=BN.scf.in.args=1 ├── ph_U_insulator_us │ ├── BN.phG.in │ ├── BN.phq.in │ ├── BN.scf.in │ ├── benchmark.out.git.inp=BN.phG.in.args=2 │ ├── benchmark.out.git.inp=BN.phq.in.args=2 │ └── benchmark.out.git.inp=BN.scf.in.args=1 ├── ph_U_metal_paw │ ├── Ni.phq.in │ ├── Ni.scf.in │ ├── benchmark.out.git.inp=Ni.phq.in.args=2 │ └── benchmark.out.git.inp=Ni.scf.in.args=1 ├── ph_U_metal_us │ ├── Fe.ph.in │ ├── Fe.scf.in │ ├── benchmark.out.git.inp=Fe.ph.in.args=2 │ └── benchmark.out.git.inp=Fe.scf.in.args=1 ├── ph_ahc_diam │ ├── benchmark.out.git.inp=diam.ahc1.in.args=2 │ ├── benchmark.out.git.inp=diam.ahc2.in.args=2 │ ├── benchmark.out.git.inp=diam.ahc3.in.args=2 │ ├── benchmark.out.git.inp=diam.dvscfq2r.doneutral.in.args=6 │ ├── benchmark.out.git.inp=diam.dvscfq2r.in.args=6 │ ├── benchmark.out.git.inp=diam.matdyn1.in.args=4 │ ├── benchmark.out.git.inp=diam.matdyn2.in.args=4 │ ├── benchmark.out.git.inp=diam.matdyn3.in.args=4 │ ├── benchmark.out.git.inp=diam.nscf.in.args=1 │ ├── benchmark.out.git.inp=diam.nscf.nosym.in.args=1 │ ├── benchmark.out.git.inp=diam.ph.in.args=2 │ ├── benchmark.out.git.inp=diam.postahc1.in.args=7 │ ├── benchmark.out.git.inp=diam.postahc2.in.args=7 │ ├── benchmark.out.git.inp=diam.postahc3.in.args=7 │ ├── benchmark.out.git.inp=diam.q2r.in.args=3 │ ├── benchmark.out.git.inp=diam.scf.in.args=1 │ ├── diam.ahc1.in │ ├── diam.ahc2.in │ ├── diam.ahc3.in │ ├── diam.dvscfq2r.doneutral.in │ ├── diam.dvscfq2r.in │ ├── diam.matdyn1.in │ ├── diam.matdyn2.in │ ├── diam.matdyn3.in │ ├── diam.nscf.in │ ├── diam.nscf.nosym.in │ ├── diam.ph.in │ ├── diam.postahc1.in │ ├── diam.postahc2.in │ ├── diam.postahc3.in │ ├── diam.q2r.in │ └── diam.scf.in ├── ph_base │ ├── benchmark.out.git.inp=c.phG.in.args=2 │ ├── benchmark.out.git.inp=c.scf.in.args=1 │ ├── benchmark.out.git.inp=ni.phX.in.args=2 │ ├── benchmark.out.git.inp=ni.scf.in.args=1 │ ├── benchmark.out.git.inp=nipaw.phX.in.args=2 │ ├── benchmark.out.git.inp=nipaw.scf.in.args=1 │ ├── benchmark.out.git.inp=si.ph.in.args=8 │ ├── benchmark.out.git.inp=si.phG.in.args=2 │ ├── benchmark.out.git.inp=si.phX.in.args=2 │ ├── benchmark.out.git.inp=si.scf.in.args=1 │ ├── c.phG.in │ ├── c.scf.in │ ├── ni.phX.in │ ├── ni.scf.in │ ├── nipaw.phX.in │ ├── nipaw.scf.in │ ├── si.phG.in │ ├── si.phX.in │ └── si.scf.in ├── ph_insulator_paw_magn │ ├── O2.phG.in │ ├── O2.scf.1.in │ ├── O2.scf.2.in │ ├── benchmark.out.git.inp=O2.phG.in.args=2 │ ├── benchmark.out.git.inp=O2.scf.1.in.args=1 │ └── benchmark.out.git.inp=O2.scf.2.in.args=1 ├── ph_insulator_us_magn │ ├── NiO.phG.in │ ├── NiO.scf.1.in │ ├── NiO.scf.2.in │ ├── benchmark.out.git.inp=NiO.phG.in.args=2 │ ├── benchmark.out.git.inp=NiO.scf.1.in.args=1 │ └── benchmark.out.git.inp=NiO.scf.2.in.args=1 ├── ph_interpol_metal │ ├── al.dvscfq2r.in │ ├── al.elph.in │ ├── al.elph.interpol.in │ ├── al.ph.in │ ├── al.scf.in │ ├── benchmark.out.git.inp=al.dvscfq2r.in.args=6 │ ├── benchmark.out.git.inp=al.elph.in.args=2 │ ├── benchmark.out.git.inp=al.elph.interpol.in.args=2 │ ├── benchmark.out.git.inp=al.ph.in.args=2 │ └── benchmark.out.git.inp=al.scf.in.args=1 ├── ph_metal │ ├── al.elph.in │ ├── al.elph.notrans.in │ ├── al.scf.fit.in │ ├── al.scf.in │ ├── benchmark.out.git.inp=al.elph.in.args=2 │ ├── benchmark.out.git.inp=al.elph.notrans.in.args=2 │ ├── benchmark.out.git.inp=al.scf.fit.in.args=1 │ ├── benchmark.out.git.inp=al.scf.in.args=1 │ ├── benchmark.out.git.inp=lambda.in.args=5 │ ├── benchmark.out.git.inp=matdyn.in.dos.args=4 │ ├── benchmark.out.git.inp=matdyn.in.freq.args=4 │ ├── benchmark.out.git.inp=q2r.in.args=3 │ ├── lambda.in │ ├── matdyn.in.dos │ ├── matdyn.in.freq │ └── q2r.in ├── pp_acf │ ├── benchmark.out.git.inp=ppacf_fock.in.args=2 │ ├── benchmark.out.git.inp=scf_vdw.in.args=1 │ ├── ppacf_fock.in │ └── scf_vdw.in ├── pw_atom │ ├── atom-lsda.in │ ├── atom-occ1.in │ ├── atom-occ2.in │ ├── atom-pbe.in │ ├── atom-sigmapbe.in │ ├── atom.in │ ├── benchmark.out.git.inp=atom-lsda.in │ ├── benchmark.out.git.inp=atom-occ1.in │ ├── benchmark.out.git.inp=atom-occ2.in │ ├── benchmark.out.git.inp=atom-pbe.in │ ├── benchmark.out.git.inp=atom-sigmapbe.in │ └── benchmark.out.git.inp=atom.in ├── pw_b3lyp │ ├── b3lyp-O.in │ ├── b3lyp-h2o.in │ ├── benchmark.out.git.inp=b3lyp-O.in │ ├── benchmark.out.git.inp=b3lyp-h2o.in │ ├── benchmark.out.git.inp=x3lyp-O.in │ ├── benchmark.out.git.inp=x3lyp-h2o.in │ ├── x3lyp-O.in │ └── x3lyp-h2o.in ├── pw_berry │ ├── benchmark.out.git.inp=berry-1.in │ ├── benchmark.out.git.inp=berry-2.in │ ├── benchmark.out.git.inp=berry.in │ ├── berry-1.in │ ├── berry-2.in │ └── berry.in ├── pw_cluster │ ├── benchmark.out.git.inp=cluster1.in │ ├── benchmark.out.git.inp=cluster2.in │ ├── benchmark.out.git.inp=cluster3.in │ ├── benchmark.out.git.inp=cluster4.in │ ├── benchmark.out.git.inp=cluster5.in │ ├── benchmark.out.git.inp=cluster6.in │ ├── cluster1.in │ ├── cluster2.in │ ├── cluster3.in │ ├── cluster4.in │ ├── cluster5.in │ └── cluster6.in ├── pw_dft │ ├── benchmark.out.git.inp=dft1.in │ ├── benchmark.out.git.inp=dft10.in │ ├── benchmark.out.git.inp=dft11.in │ ├── benchmark.out.git.inp=dft2.in │ ├── benchmark.out.git.inp=dft3.in │ ├── benchmark.out.git.inp=dft4.in │ ├── benchmark.out.git.inp=dft5.in │ ├── benchmark.out.git.inp=dft6.in │ ├── benchmark.out.git.inp=dft7.in │ ├── benchmark.out.git.inp=dft8.in │ ├── benchmark.out.git.inp=dft9.in │ ├── dft1.in │ ├── dft10.in │ ├── dft11.in │ ├── dft2.in │ ├── dft3.in │ ├── dft4.in │ ├── dft5.in │ ├── dft6.in │ ├── dft7.in │ ├── dft8.in │ └── dft9.in ├── pw_dipole │ ├── 2dcutoff.in │ ├── benchmark.out.git.inp=2dcutoff.in │ ├── benchmark.out.git.inp=dipole.in │ └── dipole.in ├── pw_electric │ ├── benchmark.out.git.inp=electric-1.in │ ├── benchmark.out.git.inp=electric-2.in │ ├── benchmark.out.git.inp=electric.in │ ├── electric-1.in │ ├── electric-2.in │ └── electric.in ├── pw_eval │ ├── benchmark.out.git.inp=eval_infix-2.in │ ├── benchmark.out.git.inp=eval_infix.in │ ├── eval_infix-2.in │ └── eval_infix.in ├── pw_gau-pbe │ ├── benchmark.out.git.inp=gau-pbe-si111.in │ ├── benchmark.out.git.inp=gau-pbe-si222.in │ ├── benchmark.out.git.inp=gau-pbe-si444.in │ ├── gau-pbe-si111.in │ ├── gau-pbe-si222.in │ └── gau-pbe-si444.in ├── pw_hse │ ├── benchmark.out.git.inp=hse-si111.in │ ├── benchmark.out.git.inp=hse-si222.in │ ├── benchmark.out.git.inp=hse-si444.in │ ├── hse-si111.in │ ├── hse-si222.in │ └── hse-si444.in ├── pw_lattice-ibrav │ ├── benchmark.out.git.inp=lattice-ibrav-12-kauto.in │ ├── benchmark.out.git.inp=lattice-ibrav-12.in │ ├── benchmark.out.git.inp=lattice-ibrav-3-kauto.in │ ├── benchmark.out.git.inp=lattice-ibrav-3.in │ ├── benchmark.out.git.inp=lattice-ibrav-5-kauto.in │ ├── benchmark.out.git.inp=lattice-ibrav-5.in │ ├── benchmark.out.git.inp=lattice-ibrav0-cell_parameters+a.in │ ├── benchmark.out.git.inp=lattice-ibrav0-cell_parameters+celldm.in │ ├── benchmark.out.git.inp=lattice-ibrav0-cell_parameters-ang.in │ ├── benchmark.out.git.inp=lattice-ibrav0-cell_parameters.in │ ├── benchmark.out.git.inp=lattice-ibrav1-kauto.in │ ├── benchmark.out.git.inp=lattice-ibrav1.in │ ├── benchmark.out.git.inp=lattice-ibrav10-kauto.in │ ├── benchmark.out.git.inp=lattice-ibrav10.in │ ├── benchmark.out.git.inp=lattice-ibrav11-kauto.in │ ├── benchmark.out.git.inp=lattice-ibrav11.in │ ├── benchmark.out.git.inp=lattice-ibrav12-kauto.in │ ├── benchmark.out.git.inp=lattice-ibrav12.in │ ├── benchmark.out.git.inp=lattice-ibrav13-kauto.in │ ├── benchmark.out.git.inp=lattice-ibrav13.in │ ├── benchmark.out.git.inp=lattice-ibrav14-kauto.in │ ├── benchmark.out.git.inp=lattice-ibrav14.in │ ├── benchmark.out.git.inp=lattice-ibrav2-kauto.in │ ├── benchmark.out.git.inp=lattice-ibrav2.in │ ├── benchmark.out.git.inp=lattice-ibrav3-kauto.in │ ├── benchmark.out.git.inp=lattice-ibrav3.in │ ├── benchmark.out.git.inp=lattice-ibrav4-kauto.in │ ├── benchmark.out.git.inp=lattice-ibrav4.in │ ├── benchmark.out.git.inp=lattice-ibrav5-kauto.in │ ├── benchmark.out.git.inp=lattice-ibrav5.in │ ├── benchmark.out.git.inp=lattice-ibrav6-kauto.in │ ├── benchmark.out.git.inp=lattice-ibrav6.in │ ├── benchmark.out.git.inp=lattice-ibrav7-kauto.in │ ├── benchmark.out.git.inp=lattice-ibrav7.in │ ├── benchmark.out.git.inp=lattice-ibrav8-kauto.in │ ├── benchmark.out.git.inp=lattice-ibrav8.in │ ├── benchmark.out.git.inp=lattice-ibrav9-kauto.in │ ├── benchmark.out.git.inp=lattice-ibrav9.in │ ├── benchmark.out.git.inp=lattice-wyckoff-sio2.in │ ├── lattice-ibrav-12-kauto.in │ ├── lattice-ibrav-12.in │ ├── lattice-ibrav-3-kauto.in │ ├── lattice-ibrav-3.in │ ├── lattice-ibrav-5-kauto.in │ ├── lattice-ibrav-5.in │ ├── lattice-ibrav0-cell_parameters+a.in │ ├── lattice-ibrav0-cell_parameters+celldm.in │ ├── lattice-ibrav0-cell_parameters-ang.in │ ├── lattice-ibrav0-cell_parameters.in │ ├── lattice-ibrav1-kauto.in │ ├── lattice-ibrav1.in │ ├── lattice-ibrav10-kauto.in │ ├── lattice-ibrav10.in │ ├── lattice-ibrav11-kauto.in │ ├── lattice-ibrav11.in │ ├── lattice-ibrav12-kauto.in │ ├── lattice-ibrav12.in │ ├── lattice-ibrav13-kauto.in │ ├── lattice-ibrav13.in │ ├── lattice-ibrav14-kauto.in │ ├── lattice-ibrav14.in │ ├── lattice-ibrav2-kauto.in │ ├── lattice-ibrav2.in │ ├── lattice-ibrav3-kauto.in │ ├── lattice-ibrav3.in │ ├── lattice-ibrav4-kauto.in │ ├── lattice-ibrav4.in │ ├── lattice-ibrav5-kauto.in │ ├── lattice-ibrav5.in │ ├── lattice-ibrav6-kauto.in │ ├── lattice-ibrav6.in │ ├── lattice-ibrav7-kauto.in │ ├── lattice-ibrav7.in │ ├── lattice-ibrav8-kauto.in │ ├── lattice-ibrav8.in │ ├── lattice-ibrav9-kauto.in │ ├── lattice-ibrav9.in │ └── lattice-wyckoff-sio2.in ├── pw_lda+U │ ├── benchmark.out.git.inp=lda+U+J0.in │ ├── benchmark.out.git.inp=lda+U+V-user_ns.in │ ├── benchmark.out.git.inp=lda+U+V_background.in │ ├── benchmark.out.git.inp=lda+U+V_force_stress_ortho.in │ ├── benchmark.out.git.inp=lda+U-noU.in │ ├── benchmark.out.git.inp=lda+U-user_ns.in │ ├── benchmark.out.git.inp=lda+U.in │ ├── benchmark.out.git.inp=lda+U_background_one_channel.in │ ├── benchmark.out.git.inp=lda+U_background_two_channels.in │ ├── benchmark.out.git.inp=lda+U_force.in │ ├── benchmark.out.git.inp=lda+U_force_stress_ortho.in │ ├── benchmark.out.git.inp=lda+U_gamma.in │ ├── benchmark.out.git.inp=lda+U_kind1_collin.in │ ├── benchmark.out.git.inp=lda+U_kind1_noncollin.in │ ├── benchmark.out.git.inp=lda+U_pseudo.in │ ├── lda+U+J0.in │ ├── lda+U+V-user_ns.in │ ├── lda+U+V_background.in │ ├── lda+U+V_force_stress_ortho.in │ ├── lda+U-noU.in │ ├── lda+U-noU.ref │ ├── lda+U-user_ns.in │ ├── lda+U-user_ns.ref │ ├── lda+U.in │ ├── lda+U.ref │ ├── lda+U_background_one_channel.in │ ├── lda+U_background_two_channels.in │ ├── lda+U_force.in │ ├── lda+U_force.ref │ ├── lda+U_force_stress_ortho.in │ ├── lda+U_gamma.in │ ├── lda+U_gamma.ref │ ├── lda+U_kind1_collin.in │ ├── lda+U_kind1_noncollin.in │ └── lda+U_pseudo.in ├── pw_lsda │ ├── benchmark.out.git.inp=lsda-2.in │ ├── benchmark.out.git.inp=lsda-cg.in │ ├── benchmark.out.git.inp=lsda-mixing_TF.in │ ├── benchmark.out.git.inp=lsda-mixing_localTF.in │ ├── benchmark.out.git.inp=lsda-mixing_ndim.in │ ├── benchmark.out.git.inp=lsda-nelup+neldw.in │ ├── benchmark.out.git.inp=lsda-tot_magnetization.in │ ├── benchmark.out.git.inp=lsda.in │ ├── lsda-2.in │ ├── lsda-cg.in │ ├── lsda-mixing_TF.in │ ├── lsda-mixing_localTF.in │ ├── lsda-mixing_ndim.in │ ├── lsda-nelup+neldw.in │ ├── lsda-tot_magnetization.in │ └── lsda.in ├── pw_md │ ├── CMakeLists.txt │ ├── benchmark.out.git.inp=md-pot_extrap1.in │ ├── benchmark.out.git.inp=md-pot_extrap2.in │ ├── benchmark.out.git.inp=md-wfc_extrap1.in │ ├── benchmark.out.git.inp=md-wfc_extrap2.in │ ├── benchmark.out.git.inp=md.in │ ├── benchmark.out.git.inp=md_restart_verlet.in │ ├── md-pot_extrap1.in │ ├── md-pot_extrap2.in │ ├── md-wfc_extrap1.in │ ├── md-wfc_extrap2.in │ ├── md.in │ ├── md_restart_verlet.in │ └── md_restart_verlet_original.md ├── pw_metaGGA │ ├── benchmark.out.git.inp=metaGGA-1.in │ ├── benchmark.out.git.inp=metaGGA-2.in │ ├── benchmark.out.git.inp=metaGGA-spin.in │ ├── benchmark.out.git.inp=metaGGA.in │ ├── metaGGA-1.in │ ├── metaGGA-2.in │ ├── metaGGA-spin.in │ └── metaGGA.in ├── pw_metal │ ├── benchmark.out.git.inp=metal-2.in │ ├── benchmark.out.git.inp=metal-fermi_dirac.in │ ├── benchmark.out.git.inp=metal-gaussian.in │ ├── benchmark.out.git.inp=metal-tetrahedra-1.in │ ├── benchmark.out.git.inp=metal-tetrahedra-2.in │ ├── benchmark.out.git.inp=metal-tetrahedra.in │ ├── benchmark.out.git.inp=metal.in │ ├── metal-2.in │ ├── metal-fermi_dirac.in │ ├── metal-gaussian.in │ ├── metal-tetrahedra-1.in │ ├── metal-tetrahedra-2.in │ ├── metal-tetrahedra.in │ └── metal.in ├── pw_noncolin │ ├── benchmark.out.git.inp=noncolin-1.in │ ├── benchmark.out.git.inp=noncolin-2.in │ ├── benchmark.out.git.inp=noncolin-cg.in │ ├── benchmark.out.git.inp=noncolin-constrain_angle.in │ ├── benchmark.out.git.inp=noncolin-constrain_atomic.in │ ├── benchmark.out.git.inp=noncolin-constrain_total.in │ ├── benchmark.out.git.inp=noncolin-hyb.in │ ├── benchmark.out.git.inp=noncolin-pbe.in │ ├── benchmark.out.git.inp=noncolin-rmm.in │ ├── benchmark.out.git.inp=noncolin.in │ ├── noncolin-1.in │ ├── noncolin-2.in │ ├── noncolin-cg.in │ ├── noncolin-constrain_angle.in │ ├── noncolin-constrain_atomic.in │ ├── noncolin-constrain_total.in │ ├── noncolin-hyb.in │ ├── noncolin-pbe.in │ ├── noncolin-rmm.in │ └── noncolin.in ├── pw_pawatom │ ├── benchmark.out.git.inp=paw-atom.in │ ├── benchmark.out.git.inp=paw-atom_l=2.in │ ├── benchmark.out.git.inp=paw-atom_lda.in │ ├── benchmark.out.git.inp=paw-atom_spin.in │ ├── benchmark.out.git.inp=paw-atom_spin_lda.in │ ├── benchmark.out.git.inp=paw-atom_tqr.in │ ├── benchmark.out.git.inp=paw-bfgs.in │ ├── benchmark.out.git.inp=paw-vcbfgs.in │ ├── paw-atom.in │ ├── paw-atom_l=2.in │ ├── paw-atom_lda.in │ ├── paw-atom_spin.in │ ├── paw-atom_spin_lda.in │ ├── paw-atom_tqr.in │ ├── paw-bfgs.in │ └── paw-vcbfgs.in ├── pw_pbe │ ├── benchmark.out.git.inp=pbe0-si111.in │ ├── benchmark.out.git.inp=pbe0-si222.in │ ├── benchmark.out.git.inp=pbe0-si444.in │ ├── benchmark.out.git.inp=pbeq2d.in │ ├── pbe0-si111.in │ ├── pbe0-si222.in │ ├── pbe0-si444.in │ └── pbeq2d.in ├── pw_plugins │ ├── benchmark.out.git.inp=plugin-pw2casino_1.in.args=1 │ ├── benchmark.out.git.inp=plugin-pw2casino_2.in.args=1 │ ├── plugin-pw2casino_1.in │ └── plugin-pw2casino_2.in ├── pw_realspace │ ├── benchmark.out.git.inp=cluster_gs.in │ ├── benchmark.out.git.inp=cluster_gs50.in │ ├── benchmark.out.git.inp=cluster_rs.in │ ├── benchmark.out.git.inp=cluster_rs50.in │ ├── cluster_gs.in │ ├── cluster_gs50.in │ ├── cluster_rs.in │ └── cluster_rs50.in ├── pw_relax │ ├── benchmark.out.git.inp=relax-damped.in │ ├── benchmark.out.git.inp=relax-el.in │ ├── benchmark.out.git.inp=relax-extfor.in │ ├── benchmark.out.git.inp=relax-fire.in │ ├── benchmark.out.git.inp=relax.in │ ├── benchmark.out.git.inp=relax2-bfgs_ndim3.in │ ├── benchmark.out.git.inp=relax2.in │ ├── relax-damped.in │ ├── relax-el.in │ ├── relax-extfor.in │ ├── relax-fire.in │ ├── relax.in │ ├── relax2-bfgs_ndim3.in │ └── relax2.in ├── pw_scf │ ├── benchmark.out.git.inp=scf-1.in │ ├── benchmark.out.git.inp=scf-2.in │ ├── benchmark.out.git.inp=scf-allfrac.in │ ├── benchmark.out.git.inp=scf-cg.in │ ├── benchmark.out.git.inp=scf-disk_io-1.in │ ├── benchmark.out.git.inp=scf-disk_io-2.in │ ├── benchmark.out.git.inp=scf-disk_io.in │ ├── benchmark.out.git.inp=scf-gamma.in │ ├── benchmark.out.git.inp=scf-gth.in │ ├── benchmark.out.git.inp=scf-k0.in │ ├── benchmark.out.git.inp=scf-kauto.in │ ├── benchmark.out.git.inp=scf-kcrys.in │ ├── benchmark.out.git.inp=scf-mixing_TF.in │ ├── benchmark.out.git.inp=scf-mixing_beta.in │ ├── benchmark.out.git.inp=scf-mixing_localTF.in │ ├── benchmark.out.git.inp=scf-mixing_ndim.in │ ├── benchmark.out.git.inp=scf-ncpp.in │ ├── benchmark.out.git.inp=scf-nofrac.in │ ├── benchmark.out.git.inp=scf-occ.in │ ├── benchmark.out.git.inp=scf-paro-gamma.in │ ├── benchmark.out.git.inp=scf-paro-k.in │ ├── benchmark.out.git.inp=scf-ppcg-gamma.in │ ├── benchmark.out.git.inp=scf-ppcg-k.in │ ├── benchmark.out.git.inp=scf-rmm-gamma.in │ ├── benchmark.out.git.inp=scf-rmm-k.in │ ├── benchmark.out.git.inp=scf-rmm-paro-gamma.in │ ├── benchmark.out.git.inp=scf-rmm-paro-k.in │ ├── benchmark.out.git.inp=scf.in │ ├── scf-1.in │ ├── scf-2.in │ ├── scf-allfrac.in │ ├── scf-cg.in │ ├── scf-disk_io-1.in │ ├── scf-disk_io-2.in │ ├── scf-disk_io.in │ ├── scf-gamma.in │ ├── scf-gth.in │ ├── scf-k0.in │ ├── scf-kauto.in │ ├── scf-kcrys.in │ ├── scf-mixing_TF.in │ ├── scf-mixing_beta.in │ ├── scf-mixing_localTF.in │ ├── scf-mixing_ndim.in │ ├── scf-ncpp.in │ ├── scf-nofrac.in │ ├── scf-occ.in │ ├── scf-paro-gamma.in │ ├── scf-paro-k.in │ ├── scf-ppcg-gamma.in │ ├── scf-ppcg-k.in │ ├── scf-rmm-gamma.in │ ├── scf-rmm-k.in │ ├── scf-rmm-paro-gamma.in │ ├── scf-rmm-paro-k.in │ └── scf.in ├── pw_spinorbit │ ├── benchmark.out.git.inp=spinorbit-1.in │ ├── benchmark.out.git.inp=spinorbit-3.in │ ├── benchmark.out.git.inp=spinorbit-paw.in │ ├── benchmark.out.git.inp=spinorbit-pbe.in │ ├── benchmark.out.git.inp=spinorbit.in │ ├── spinorbit-1.in │ ├── spinorbit-3.in │ ├── spinorbit-paw.in │ ├── spinorbit-pbe.in │ └── spinorbit.in ├── pw_twochem │ ├── benchmark.out.git.inp=nscf_twochem.in │ ├── benchmark.out.git.inp=relax_twochem.in │ ├── benchmark.out.git.inp=scf_twochem.in │ ├── benchmark.out.git.inp=vc-relax_twochem.in │ ├── nscf_twochem.in │ ├── relax_twochem.in │ ├── scf_twochem.in │ └── vc-relax_twochem.in ├── pw_uspp │ ├── benchmark.out.git.inp=uspp-2.in │ ├── benchmark.out.git.inp=uspp-cg.in │ ├── benchmark.out.git.inp=uspp-hyb-g.in │ ├── benchmark.out.git.inp=uspp-hyb-k.in │ ├── benchmark.out.git.inp=uspp-mixing_TF.in │ ├── benchmark.out.git.inp=uspp-mixing_localTF.in │ ├── benchmark.out.git.inp=uspp-mixing_ndim.in │ ├── benchmark.out.git.inp=uspp-paro-gamma.in │ ├── benchmark.out.git.inp=uspp-paro-k.in │ ├── benchmark.out.git.inp=uspp-ppcg-gamma.in │ ├── benchmark.out.git.inp=uspp-ppcg-k.in │ ├── benchmark.out.git.inp=uspp-singlegrid.in │ ├── benchmark.out.git.inp=uspp.in │ ├── benchmark.out.git.inp=uspp1-coulomb.in │ ├── benchmark.out.git.inp=uspp1.in │ ├── benchmark.out.git.inp=uspp2.in │ ├── uspp-2.in │ ├── uspp-cg.in │ ├── uspp-hyb-g.in │ ├── uspp-hyb-k.in │ ├── uspp-mixing_TF.in │ ├── uspp-mixing_localTF.in │ ├── uspp-mixing_ndim.in │ ├── uspp-paro-gamma.in │ ├── uspp-paro-k.in │ ├── uspp-ppcg-gamma.in │ ├── uspp-ppcg-k.in │ ├── uspp-singlegrid.in │ ├── uspp.in │ ├── uspp1-coulomb.in │ ├── uspp1.in │ └── uspp2.in ├── pw_vc-relax │ ├── benchmark.out.git.inp=vc-md1.in │ ├── benchmark.out.git.inp=vc-md2.in │ ├── benchmark.out.git.inp=vc-relax1.in │ ├── benchmark.out.git.inp=vc-relax2.in │ ├── benchmark.out.git.inp=vc-relax3.in │ ├── benchmark.out.git.inp=vc-relax4.in │ ├── benchmark.out.git.inp=vc-relax5.in │ ├── benchmark.out.git.inp=vc-relax6.in │ ├── vc-md1.in │ ├── vc-md2.in │ ├── vc-relax1.in │ ├── vc-relax2.in │ ├── vc-relax3.in │ ├── vc-relax4.in │ ├── vc-relax5.in │ └── vc-relax6.in ├── pw_vdw │ ├── beef-spin.in │ ├── beef.in │ ├── benchmark.out.git.inp=beef-spin.in │ ├── benchmark.out.git.inp=beef.in │ ├── benchmark.out.git.inp=rVV10.in │ ├── benchmark.out.git.inp=vdW-DF3-opt1.in │ ├── benchmark.out.git.inp=vdW-DF3-opt2.in │ ├── benchmark.out.git.inp=vdw-d2.in │ ├── benchmark.out.git.inp=vdw-d3.in │ ├── benchmark.out.git.inp=vdw-mbd-vc-relax.in │ ├── benchmark.out.git.inp=vdw-mbd.in │ ├── benchmark.out.git.inp=vdw-ts.in │ ├── benchmark.out.git.inp=xdm.in │ ├── rVV10.in │ ├── vdW-DF3-opt1.in │ ├── vdW-DF3-opt2.in │ ├── vdw-d2.in │ ├── vdw-d3.in │ ├── vdw-mbd-vc-relax.in │ ├── vdw-mbd.in │ ├── vdw-ts.in │ └── xdm.in ├── pw_workflow_exx_nscf │ ├── benchmark.out.git.inp=ncpp-gamma-restart-1.in.args=1 │ ├── benchmark.out.git.inp=ncpp-gamma-restart-2.in.args=2 │ ├── benchmark.out.git.inp=ncpp-k-1.in.args=1 │ ├── benchmark.out.git.inp=ncpp-k-2.in.args=2 │ ├── benchmark.out.git.inp=uspp-gamma-1.in.args=1 │ ├── benchmark.out.git.inp=uspp-gamma-2.in.args=2 │ ├── benchmark.out.git.inp=uspp-k-restart-1.in.args=1 │ ├── benchmark.out.git.inp=uspp-k-restart-2.in.args=2 │ ├── benchmark.out.git.inp=uspp-k-smearing-1.in.args=1 │ ├── benchmark.out.git.inp=uspp-k-smearing-2.in.args=2 │ ├── ncpp-gamma-restart-1.in │ ├── ncpp-gamma-restart-2.in │ ├── ncpp-k-1.in │ ├── ncpp-k-2.in │ ├── uspp-gamma-1.in │ ├── uspp-gamma-2.in │ ├── uspp-k-restart-1.in │ ├── uspp-k-restart-2.in │ ├── uspp-k-smearing-1.in │ └── uspp-k-smearing-2.in ├── pw_workflow_relax_relax │ ├── benchmark.out.git.inp=relax-1.in.args=1 │ ├── benchmark.out.git.inp=relax-2.in.args=2 │ ├── relax-1.in │ └── relax-2.in ├── pw_workflow_scf_dos │ ├── benchmark.out.git.inp=scf-dos-1.in.args=1 │ ├── benchmark.out.git.inp=scf-dos-2.in.args=2 │ ├── scf-dos-1.in │ └── scf-dos-2.in ├── pw_workflow_vc-relax_dos │ ├── benchmark.out.git.inp=vc-relax-dos-1.in.args=1 │ ├── benchmark.out.git.inp=vc-relax-dos-2.in.args=2 │ ├── vc-relax-dos-1.in │ └── vc-relax-dos-2.in ├── pw_workflow_vc-relax_scf │ ├── benchmark.out.git.inp=vc-relax-scf-1.in.args=1 │ ├── benchmark.out.git.inp=vc-relax-scf-2.in.args=2 │ ├── vc-relax-scf-1.expected_exit_msg │ ├── vc-relax-scf-1.in │ └── vc-relax-scf-2.in ├── run-cp.sh ├── run-epw.sh ├── run-hp.sh ├── run-image.sh ├── run-kcw.sh ├── run-oscdft.sh ├── run-ph.sh ├── run-pp.sh ├── run-pw.sh ├── run-tddfpt.sh ├── run-zg.sh ├── tddfpt_CH4 │ ├── CH4.pw.in │ ├── CH4.tddfpt.in │ ├── CH4.tddfpt_pp.in │ ├── benchmark.out.git.inp=CH4.pw.in.args=1 │ ├── benchmark.out.git.inp=CH4.tddfpt.in.args=2 │ └── benchmark.out.git.inp=CH4.tddfpt_pp.in.args=3 ├── tddfpt_eels-si │ ├── Si.pw.in │ ├── Si.tddfpt-eels.in │ ├── Si.tddfpt_pp_eels.in │ ├── benchmark.out.git.inp=Si.pw.in.args=1 │ ├── benchmark.out.git.inp=Si.tddfpt-eels.in.args=5 │ └── benchmark.out.git.inp=Si.tddfpt_pp_eels.in.args=4 ├── tddfpt_magnons_fe │ ├── Fe.pw.in │ ├── Fe.tddfpt-magnons.in │ ├── Fe.tddfpt_pp_magnons.in │ ├── benchmark.out.git.inp=Fe.pw.in.args=1 │ ├── benchmark.out.git.inp=Fe.tddfpt-magnons.in.args=6 │ └── benchmark.out.git.inp=Fe.tddfpt_pp_magnons.in.args=7 ├── testcode │ ├── LICENSE │ ├── README.rst │ ├── bin │ │ └── testcode.py │ ├── docs │ │ ├── .static │ │ │ └── dummy_file │ │ ├── .templates │ │ │ └── dummy_file │ │ ├── Makefile │ │ ├── conf.py │ │ ├── configuration_files.rst │ │ ├── index.rst │ │ ├── installation.rst │ │ ├── jobconfig.rst │ │ ├── testcode.py.rst │ │ ├── userconfig.rst │ │ └── verification.rst │ └── lib │ │ └── testcode2 │ │ ├── __init__.py │ │ ├── _functools_dummy.py │ │ ├── ansi.py │ │ ├── compatibility.py │ │ ├── config.py │ │ ├── dir_lock.py │ │ ├── exceptions.py │ │ ├── queues.py │ │ ├── util.py │ │ ├── validation.py │ │ └── vcs.py ├── userconfig.tmp ├── validate_xsd_pw.py ├── xsd_pw │ └── WaterP1_0_scf_0.in └── zg_conf │ ├── benchmark.out.git.inp=zg.in.args=0 │ ├── si.10_10_10.fc │ └── zg.in └── upflib ├── CMakeLists.txt ├── Makefile ├── README.md ├── TODO_upflib.md ├── atom.f90 ├── atomic_number.f90 ├── beta_mod.f90 ├── casino2upf.f90 ├── casino_pp.f90 ├── dom.f90 ├── dqvan2.f90 ├── dylmr2.f90 ├── fixfiles.py ├── gen_us_dj.f90 ├── gen_us_dy.f90 ├── gth.f90 ├── hgh2qe.f90 ├── init_tab_atwfc.f90 ├── init_us_0.f90 ├── init_us_1.f90 ├── init_us_2_acc.f90 ├── init_us_b0.f90 ├── interp_atwfc.f90 ├── paw_variables.f90 ├── pseudo_types.f90 ├── qrad_mod.f90 ├── qvan2.f90 ├── radial_grids.f90 ├── read_cpmd.f90 ├── read_fhi.f90 ├── read_ncpp.f90 ├── read_ps.f90 ├── read_psml.f90 ├── read_upf_new.f90 ├── read_upf_v1.f90 ├── read_uspp.f90 ├── rhoat_mod.f90 ├── rhoc_mod.f90 ├── simpsn.f90 ├── sph_bes.f90 ├── sph_ind.f90 ├── spinor.f90 ├── splinelib.f90 ├── upf_auxtools.f90 ├── upf_const.f90 ├── upf_error.f90 ├── upf_invmat.f90 ├── upf_io.f90 ├── upf_ions.f90 ├── upf_kinds.f90 ├── upf_kinds.h ├── upf_parallel_include.f90 ├── upf_params.f90 ├── upf_spinorb.f90 ├── upf_to_internal.f90 ├── upf_utils.f90 ├── upfconv.f90 ├── uspp.f90 ├── uspp_data.f90 ├── uspp_param.f90 ├── virtual_v2.f90 ├── vloc_mod.f90 ├── write_upf_new.f90 ├── wxml.f90 ├── xmltools.f90 ├── ylmr2.f90 └── ylmr2_gpu.f90 /.ci/cineca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/.ci/cineca.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COUPLE/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/COUPLE/CMakeLists.txt -------------------------------------------------------------------------------- /COUPLE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/COUPLE/Makefile -------------------------------------------------------------------------------- /COUPLE/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/COUPLE/README -------------------------------------------------------------------------------- /COUPLE/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/COUPLE/src/Makefile -------------------------------------------------------------------------------- /COUPLE/src/libcpv.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/COUPLE/src/libcpv.f90 -------------------------------------------------------------------------------- /CPV/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/CMakeLists.txt -------------------------------------------------------------------------------- /CPV/Doc/INPUT_CP.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/Doc/INPUT_CP.def -------------------------------------------------------------------------------- /CPV/Doc/INPUT_CP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/Doc/INPUT_CP.html -------------------------------------------------------------------------------- /CPV/Doc/INPUT_CP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/Doc/INPUT_CP.txt -------------------------------------------------------------------------------- /CPV/Doc/INPUT_WFDD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/Doc/INPUT_WFDD -------------------------------------------------------------------------------- /CPV/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/Doc/Makefile -------------------------------------------------------------------------------- /CPV/Doc/tp.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/Doc/tp.tex -------------------------------------------------------------------------------- /CPV/Doc/user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/Doc/user_guide.md -------------------------------------------------------------------------------- /CPV/Ford.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/Ford.md -------------------------------------------------------------------------------- /CPV/Ford/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/Ford/index.md -------------------------------------------------------------------------------- /CPV/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/Makefile -------------------------------------------------------------------------------- /CPV/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/examples/README -------------------------------------------------------------------------------- /CPV/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/Makefile -------------------------------------------------------------------------------- /CPV/src/berryion.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/berryion.f90 -------------------------------------------------------------------------------- /CPV/src/bforceion.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/bforceion.f90 -------------------------------------------------------------------------------- /CPV/src/cell_nose.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/cell_nose.f90 -------------------------------------------------------------------------------- /CPV/src/cg.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/cg.f90 -------------------------------------------------------------------------------- /CPV/src/cg_sub.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/cg_sub.f90 -------------------------------------------------------------------------------- /CPV/src/cp_emass.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/cp_emass.f90 -------------------------------------------------------------------------------- /CPV/src/cplib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/cplib.f90 -------------------------------------------------------------------------------- /CPV/src/cppp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/cppp.f90 -------------------------------------------------------------------------------- /CPV/src/cpr.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/cpr.f90 -------------------------------------------------------------------------------- /CPV/src/cpr_loop.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/cpr_loop.f90 -------------------------------------------------------------------------------- /CPV/src/cpr_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/cpr_mod.f90 -------------------------------------------------------------------------------- /CPV/src/cprstart.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/cprstart.f90 -------------------------------------------------------------------------------- /CPV/src/dealloc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/dealloc.f90 -------------------------------------------------------------------------------- /CPV/src/dforceb.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/dforceb.f90 -------------------------------------------------------------------------------- /CPV/src/efermi.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/efermi.f90 -------------------------------------------------------------------------------- /CPV/src/efield.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/efield.f90 -------------------------------------------------------------------------------- /CPV/src/eigs0.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/eigs0.f90 -------------------------------------------------------------------------------- /CPV/src/electrons.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/electrons.f90 -------------------------------------------------------------------------------- /CPV/src/energies.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/energies.f90 -------------------------------------------------------------------------------- /CPV/src/entropy.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/entropy.f90 -------------------------------------------------------------------------------- /CPV/src/exch_corr.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/exch_corr.f90 -------------------------------------------------------------------------------- /CPV/src/exx_cg.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/exx_cg.f90 -------------------------------------------------------------------------------- /CPV/src/exx_es.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/exx_es.f90 -------------------------------------------------------------------------------- /CPV/src/exx_gs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/exx_gs.f90 -------------------------------------------------------------------------------- /CPV/src/exx_pair.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/exx_pair.f90 -------------------------------------------------------------------------------- /CPV/src/exx_psi.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/exx_psi.f90 -------------------------------------------------------------------------------- /CPV/src/exx_vofr.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/exx_vofr.f90 -------------------------------------------------------------------------------- /CPV/src/forces.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/forces.f90 -------------------------------------------------------------------------------- /CPV/src/fromscra.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/fromscra.f90 -------------------------------------------------------------------------------- /CPV/src/gram.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/gram.f90 -------------------------------------------------------------------------------- /CPV/src/gtable.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/gtable.f90 -------------------------------------------------------------------------------- /CPV/src/init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/init.f90 -------------------------------------------------------------------------------- /CPV/src/init_run.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/init_run.f90 -------------------------------------------------------------------------------- /CPV/src/input.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/input.f90 -------------------------------------------------------------------------------- /CPV/src/ions_nose.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/ions_nose.f90 -------------------------------------------------------------------------------- /CPV/src/ksstates.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/ksstates.f90 -------------------------------------------------------------------------------- /CPV/src/ldaU.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/ldaU.f90 -------------------------------------------------------------------------------- /CPV/src/ldaU_cp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/ldaU_cp.f90 -------------------------------------------------------------------------------- /CPV/src/ldaUpen.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/ldaUpen.f90 -------------------------------------------------------------------------------- /CPV/src/mainvar.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/mainvar.f90 -------------------------------------------------------------------------------- /CPV/src/manycp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/manycp.f90 -------------------------------------------------------------------------------- /CPV/src/metaxc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/metaxc.f90 -------------------------------------------------------------------------------- /CPV/src/modules.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/modules.f90 -------------------------------------------------------------------------------- /CPV/src/newd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/newd.f90 -------------------------------------------------------------------------------- /CPV/src/nl_base.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/nl_base.f90 -------------------------------------------------------------------------------- /CPV/src/nlcc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/nlcc.f90 -------------------------------------------------------------------------------- /CPV/src/ortho.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/ortho.f90 -------------------------------------------------------------------------------- /CPV/src/print_out.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/print_out.f90 -------------------------------------------------------------------------------- /CPV/src/pseudopot.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/pseudopot.f90 -------------------------------------------------------------------------------- /CPV/src/qmatrixd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/qmatrixd.f90 -------------------------------------------------------------------------------- /CPV/src/qqberry.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/qqberry.f90 -------------------------------------------------------------------------------- /CPV/src/restart.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/restart.f90 -------------------------------------------------------------------------------- /CPV/src/runcp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/runcp.f90 -------------------------------------------------------------------------------- /CPV/src/sic.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/sic.f90 -------------------------------------------------------------------------------- /CPV/src/smallbox.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/smallbox.f90 -------------------------------------------------------------------------------- /CPV/src/spinsq.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/spinsq.f90 -------------------------------------------------------------------------------- /CPV/src/spline.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/spline.f90 -------------------------------------------------------------------------------- /CPV/src/stop_run.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/stop_run.f90 -------------------------------------------------------------------------------- /CPV/src/stress.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/stress.f90 -------------------------------------------------------------------------------- /CPV/src/vofrho.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/vofrho.f90 -------------------------------------------------------------------------------- /CPV/src/vol_clu.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/vol_clu.f90 -------------------------------------------------------------------------------- /CPV/src/wannier.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/wannier.f90 -------------------------------------------------------------------------------- /CPV/src/wave.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/wave.f90 -------------------------------------------------------------------------------- /CPV/src/wave_base.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/wave_base.f90 -------------------------------------------------------------------------------- /CPV/src/wf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/wf.f90 -------------------------------------------------------------------------------- /CPV/src/wfdd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/CPV/src/wfdd.f90 -------------------------------------------------------------------------------- /Doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/CMakeLists.txt -------------------------------------------------------------------------------- /Doc/ChangeLog.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/ChangeLog.cp -------------------------------------------------------------------------------- /Doc/ChangeLog.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/ChangeLog.old -------------------------------------------------------------------------------- /Doc/ChangeLog.pw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/ChangeLog.pw -------------------------------------------------------------------------------- /Doc/Hubbard_input.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/Hubbard_input.tex -------------------------------------------------------------------------------- /Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/Makefile -------------------------------------------------------------------------------- /Doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/README -------------------------------------------------------------------------------- /Doc/html.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/html.sty -------------------------------------------------------------------------------- /Doc/images/bcc_bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/bcc_bi.png -------------------------------------------------------------------------------- /Doc/images/bco_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/bco_1.png -------------------------------------------------------------------------------- /Doc/images/bco_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/bco_2.png -------------------------------------------------------------------------------- /Doc/images/bco_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/bco_3.png -------------------------------------------------------------------------------- /Doc/images/bco_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/bco_4.png -------------------------------------------------------------------------------- /Doc/images/bco_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/bco_5.png -------------------------------------------------------------------------------- /Doc/images/bco_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/bco_6.png -------------------------------------------------------------------------------- /Doc/images/fcc_bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/fcc_bi.png -------------------------------------------------------------------------------- /Doc/images/fcc_sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/fcc_sc.png -------------------------------------------------------------------------------- /Doc/images/hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/hex.png -------------------------------------------------------------------------------- /Doc/images/monob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/monob.png -------------------------------------------------------------------------------- /Doc/images/monoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/monoc.png -------------------------------------------------------------------------------- /Doc/images/ofc_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_1.png -------------------------------------------------------------------------------- /Doc/images/ofc_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_10.png -------------------------------------------------------------------------------- /Doc/images/ofc_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_11.png -------------------------------------------------------------------------------- /Doc/images/ofc_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_12.png -------------------------------------------------------------------------------- /Doc/images/ofc_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_13.png -------------------------------------------------------------------------------- /Doc/images/ofc_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_14.png -------------------------------------------------------------------------------- /Doc/images/ofc_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_15.png -------------------------------------------------------------------------------- /Doc/images/ofc_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_16.png -------------------------------------------------------------------------------- /Doc/images/ofc_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_17.png -------------------------------------------------------------------------------- /Doc/images/ofc_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_18.png -------------------------------------------------------------------------------- /Doc/images/ofc_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_2.png -------------------------------------------------------------------------------- /Doc/images/ofc_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_3.png -------------------------------------------------------------------------------- /Doc/images/ofc_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_4.png -------------------------------------------------------------------------------- /Doc/images/ofc_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_5.png -------------------------------------------------------------------------------- /Doc/images/ofc_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_6.png -------------------------------------------------------------------------------- /Doc/images/ofc_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_7.png -------------------------------------------------------------------------------- /Doc/images/ofc_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_8.png -------------------------------------------------------------------------------- /Doc/images/ofc_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofc_9.png -------------------------------------------------------------------------------- /Doc/images/ofco_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofco_1.png -------------------------------------------------------------------------------- /Doc/images/ofco_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/ofco_2.png -------------------------------------------------------------------------------- /Doc/images/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/so.png -------------------------------------------------------------------------------- /Doc/images/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/st.png -------------------------------------------------------------------------------- /Doc/images/stc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/stc1.png -------------------------------------------------------------------------------- /Doc/images/stc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/stc2.png -------------------------------------------------------------------------------- /Doc/images/tri_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/tri_1.png -------------------------------------------------------------------------------- /Doc/images/tri_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/images/tri_2.png -------------------------------------------------------------------------------- /Doc/pic/hh_fes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/pic/hh_fes.pdf -------------------------------------------------------------------------------- /Doc/pic/sn2_fes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/pic/sn2_fes.pdf -------------------------------------------------------------------------------- /Doc/pic/sn2cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/pic/sn2cv.pdf -------------------------------------------------------------------------------- /Doc/pic/sn2cvs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/pic/sn2cvs.pdf -------------------------------------------------------------------------------- /Doc/quote.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/quote.tex -------------------------------------------------------------------------------- /Doc/release-notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/release-notes -------------------------------------------------------------------------------- /Doc/user_guide.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Doc/user_guide.tex -------------------------------------------------------------------------------- /EPW/.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/.dependencies -------------------------------------------------------------------------------- /EPW/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/CMakeLists.txt -------------------------------------------------------------------------------- /EPW/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/License -------------------------------------------------------------------------------- /EPW/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/Makefile -------------------------------------------------------------------------------- /EPW/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/README -------------------------------------------------------------------------------- /EPW/ZG/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/ZG/README -------------------------------------------------------------------------------- /EPW/ZG/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/ZG/src/Makefile -------------------------------------------------------------------------------- /EPW/ZG/src/ZG.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/ZG/src/ZG.f90 -------------------------------------------------------------------------------- /EPW/ZG/src/disca.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/ZG/src/disca.f90 -------------------------------------------------------------------------------- /EPW/bin/allocate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/bin/allocate.py -------------------------------------------------------------------------------- /EPW/bin/pp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/bin/pp.py -------------------------------------------------------------------------------- /EPW/doc/Ford/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/doc/Ford/index.md -------------------------------------------------------------------------------- /EPW/doc/graveyard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/doc/graveyard.txt -------------------------------------------------------------------------------- /EPW/epw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/epw.md -------------------------------------------------------------------------------- /EPW/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/Makefile -------------------------------------------------------------------------------- /EPW/src/bfield.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/bfield.f90 -------------------------------------------------------------------------------- /EPW/src/bloch2wan.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/bloch2wan.f90 -------------------------------------------------------------------------------- /EPW/src/change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/change.sh -------------------------------------------------------------------------------- /EPW/src/check_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/check_deps.sh -------------------------------------------------------------------------------- /EPW/src/close_epw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/close_epw.f90 -------------------------------------------------------------------------------- /EPW/src/cum_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/cum_mod.f90 -------------------------------------------------------------------------------- /EPW/src/division.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/division.f90 -------------------------------------------------------------------------------- /EPW/src/dvqpsi.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/dvqpsi.f90 -------------------------------------------------------------------------------- /EPW/src/elph2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/elph2.f90 -------------------------------------------------------------------------------- /EPW/src/epw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/epw.f90 -------------------------------------------------------------------------------- /EPW/src/epw_init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/epw_init.f90 -------------------------------------------------------------------------------- /EPW/src/epw_setup.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/epw_setup.f90 -------------------------------------------------------------------------------- /EPW/src/epwcom.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/epwcom.f90 -------------------------------------------------------------------------------- /EPW/src/grid.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/grid.f90 -------------------------------------------------------------------------------- /EPW/src/indabs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/indabs.f90 -------------------------------------------------------------------------------- /EPW/src/io_epw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/io_epw.f90 -------------------------------------------------------------------------------- /EPW/src/io_indabs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/io_indabs.f90 -------------------------------------------------------------------------------- /EPW/src/io_selfen.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/io_selfen.f90 -------------------------------------------------------------------------------- /EPW/src/io_var.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/io_var.f90 -------------------------------------------------------------------------------- /EPW/src/kfold.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/kfold.f90 -------------------------------------------------------------------------------- /EPW/src/kgen.f90.prog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/kgen.f90.prog -------------------------------------------------------------------------------- /EPW/src/loadbm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/loadbm.f90 -------------------------------------------------------------------------------- /EPW/src/loadumat.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/loadumat.f90 -------------------------------------------------------------------------------- /EPW/src/low_lvl.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/low_lvl.f90 -------------------------------------------------------------------------------- /EPW/src/make.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/make.inc -------------------------------------------------------------------------------- /EPW/src/make.libs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/make.libs -------------------------------------------------------------------------------- /EPW/src/polaron.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/polaron.f90 -------------------------------------------------------------------------------- /EPW/src/printing.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/printing.f90 -------------------------------------------------------------------------------- /EPW/src/qdabs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/qdabs.f90 -------------------------------------------------------------------------------- /EPW/src/rigid_epw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/rigid_epw.f90 -------------------------------------------------------------------------------- /EPW/src/rotate.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/rotate.f90 -------------------------------------------------------------------------------- /EPW/src/selfen.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/selfen.f90 -------------------------------------------------------------------------------- /EPW/src/stop_epw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/stop_epw.f90 -------------------------------------------------------------------------------- /EPW/src/supercond.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/supercond.f90 -------------------------------------------------------------------------------- /EPW/src/transport.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/transport.f90 -------------------------------------------------------------------------------- /EPW/src/utilities.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/utilities.f90 -------------------------------------------------------------------------------- /EPW/src/wan2bloch.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/wan2bloch.f90 -------------------------------------------------------------------------------- /EPW/src/wfpt_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/wfpt_mod.f90 -------------------------------------------------------------------------------- /EPW/src/wigner.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/EPW/src/wigner.f90 -------------------------------------------------------------------------------- /FFTXlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/FFTXlib/Makefile -------------------------------------------------------------------------------- /FFTXlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/FFTXlib/README.md -------------------------------------------------------------------------------- /FFTXlib/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/FFTXlib/src/Makefile -------------------------------------------------------------------------------- /FFTXlib/src/fftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/FFTXlib/src/fftw.c -------------------------------------------------------------------------------- /FFTXlib/src/fftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/FFTXlib/src/fftw.h -------------------------------------------------------------------------------- /FFTXlib/src/fftw_dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/FFTXlib/src/fftw_dp.c -------------------------------------------------------------------------------- /FFTXlib/src/fftw_dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/FFTXlib/src/fftw_dp.h -------------------------------------------------------------------------------- /FFTXlib/src/fftw_sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/FFTXlib/src/fftw_sp.c -------------------------------------------------------------------------------- /FFTXlib/src/fftw_sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/FFTXlib/src/fftw_sp.h -------------------------------------------------------------------------------- /FFTXlib/src/konst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/FFTXlib/src/konst.h -------------------------------------------------------------------------------- /GUI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/CMakeLists.txt -------------------------------------------------------------------------------- /GUI/Guib/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/AUTHORS -------------------------------------------------------------------------------- /GUI/Guib/BUGS: -------------------------------------------------------------------------------- 1 | BUGS -- known bugs. 2 | 3 | BUGS ends here. -------------------------------------------------------------------------------- /GUI/Guib/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/COPYING -------------------------------------------------------------------------------- /GUI/Guib/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/COPYRIGHT -------------------------------------------------------------------------------- /GUI/Guib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/ChangeLog -------------------------------------------------------------------------------- /GUI/Guib/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/INSTALL -------------------------------------------------------------------------------- /GUI/Guib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/Makefile -------------------------------------------------------------------------------- /GUI/Guib/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/NEWS -------------------------------------------------------------------------------- /GUI/Guib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/README -------------------------------------------------------------------------------- /GUI/Guib/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/THANKS -------------------------------------------------------------------------------- /GUI/Guib/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/TODO -------------------------------------------------------------------------------- /GUI/Guib/VERSION: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /GUI/Guib/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/doc/Makefile -------------------------------------------------------------------------------- /GUI/Guib/doc/diagrams/Makefile: -------------------------------------------------------------------------------- 1 | 2 | default: 3 | 4 | clean: 5 | rm -f *.eps *~ 6 | -------------------------------------------------------------------------------- /GUI/Guib/guib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/guib -------------------------------------------------------------------------------- /GUI/Guib/guib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/guib.bat -------------------------------------------------------------------------------- /GUI/Guib/guib.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/guib.tcl -------------------------------------------------------------------------------- /GUI/Guib/guib.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/guib.theme -------------------------------------------------------------------------------- /GUI/Guib/header.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/header.tcl -------------------------------------------------------------------------------- /GUI/Guib/init.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/init.tcl -------------------------------------------------------------------------------- /GUI/Guib/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/lib/Makefile -------------------------------------------------------------------------------- /GUI/Guib/lib/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/lib/tclIndex -------------------------------------------------------------------------------- /GUI/Guib/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/pkgIndex.tcl -------------------------------------------------------------------------------- /GUI/Guib/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/src/Makefile -------------------------------------------------------------------------------- /GUI/Guib/src/aindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/src/aindex -------------------------------------------------------------------------------- /GUI/Guib/src/fnml.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/src/fnml.tcl -------------------------------------------------------------------------------- /GUI/Guib/src/gui.itcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/src/gui.itcl -------------------------------------------------------------------------------- /GUI/Guib/src/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Guib/src/tclIndex -------------------------------------------------------------------------------- /GUI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/Makefile -------------------------------------------------------------------------------- /GUI/PWgui/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/AUTHORS -------------------------------------------------------------------------------- /GUI/PWgui/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/BUGS -------------------------------------------------------------------------------- /GUI/PWgui/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/COPYING -------------------------------------------------------------------------------- /GUI/PWgui/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/COPYRIGHT -------------------------------------------------------------------------------- /GUI/PWgui/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/ChangeLog -------------------------------------------------------------------------------- /GUI/PWgui/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/INSTALL -------------------------------------------------------------------------------- /GUI/PWgui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/Makefile -------------------------------------------------------------------------------- /GUI/PWgui/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/NEWS -------------------------------------------------------------------------------- /GUI/PWgui/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/README -------------------------------------------------------------------------------- /GUI/PWgui/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/THANKS -------------------------------------------------------------------------------- /GUI/PWgui/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/TODO -------------------------------------------------------------------------------- /GUI/PWgui/VERSION: -------------------------------------------------------------------------------- 1 | 7.3.1 2 | -------------------------------------------------------------------------------- /GUI/PWgui/header.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/header.tcl -------------------------------------------------------------------------------- /GUI/PWgui/init.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/init.tcl -------------------------------------------------------------------------------- /GUI/PWgui/lib/.dont-delete: -------------------------------------------------------------------------------- 1 | !!! do not delete this file !!! 2 | -------------------------------------------------------------------------------- /GUI/PWgui/make.usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/make.usage -------------------------------------------------------------------------------- /GUI/PWgui/pwgui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/pwgui -------------------------------------------------------------------------------- /GUI/PWgui/pwgui.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/pwgui.bat -------------------------------------------------------------------------------- /GUI/PWgui/pwgui.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/pwgui.tcl -------------------------------------------------------------------------------- /GUI/PWgui/src/aindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/PWgui/src/aindex -------------------------------------------------------------------------------- /GUI/QE-modes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/QE-modes/Makefile -------------------------------------------------------------------------------- /GUI/QE-modes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/QE-modes/README -------------------------------------------------------------------------------- /GUI/QE-modes/THANKS: -------------------------------------------------------------------------------- 1 | 2 | For acknowledgments, see the file: Doc/user_guide.pdf 3 | 4 | -------------------------------------------------------------------------------- /GUI/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GUI/README -------------------------------------------------------------------------------- /GWW/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/CMakeLists.txt -------------------------------------------------------------------------------- /GWW/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/Makefile -------------------------------------------------------------------------------- /GWW/bse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/Makefile -------------------------------------------------------------------------------- /GWW/bse/bse_main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/bse_main.f90 -------------------------------------------------------------------------------- /GWW/bse/cgsolve.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/cgsolve.f90 -------------------------------------------------------------------------------- /GWW/bse/conjgrad.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/conjgrad.f90 -------------------------------------------------------------------------------- /GWW/bse/diago_exc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/diago_exc.f90 -------------------------------------------------------------------------------- /GWW/bse/dvpsi_bse.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/dvpsi_bse.f90 -------------------------------------------------------------------------------- /GWW/bse/exc_h_a.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/exc_h_a.f90 -------------------------------------------------------------------------------- /GWW/bse/exciton.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/exciton.f90 -------------------------------------------------------------------------------- /GWW/bse/find_eig.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/find_eig.f90 -------------------------------------------------------------------------------- /GWW/bse/h_h.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/h_h.f90 -------------------------------------------------------------------------------- /GWW/bse/lanczos.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/lanczos.f90 -------------------------------------------------------------------------------- /GWW/bse/print_bse.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/print_bse.f90 -------------------------------------------------------------------------------- /GWW/bse/qpe_exc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/qpe_exc.f90 -------------------------------------------------------------------------------- /GWW/bse/sdescent.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/sdescent.f90 -------------------------------------------------------------------------------- /GWW/bse/spectrum.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/spectrum.f90 -------------------------------------------------------------------------------- /GWW/bse/start_bse.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/start_bse.f90 -------------------------------------------------------------------------------- /GWW/bse/tmp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/tmp.f90 -------------------------------------------------------------------------------- /GWW/bse/tspace.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/bse/tspace.f90 -------------------------------------------------------------------------------- /GWW/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/doc/README -------------------------------------------------------------------------------- /GWW/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/examples/README -------------------------------------------------------------------------------- /GWW/examples/example04/reference/pippo.txt: -------------------------------------------------------------------------------- 1 | pippo 2 | -------------------------------------------------------------------------------- /GWW/gww/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/gww/Makefile -------------------------------------------------------------------------------- /GWW/gww/contour.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/gww/contour.f90 -------------------------------------------------------------------------------- /GWW/gww/create_hf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/gww/create_hf.f90 -------------------------------------------------------------------------------- /GWW/gww/expansion.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/gww/expansion.f90 -------------------------------------------------------------------------------- /GWW/gww/fft_gw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/gww/fft_gw.f90 -------------------------------------------------------------------------------- /GWW/gww/go_fft.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/gww/go_fft.f90 -------------------------------------------------------------------------------- /GWW/gww/go_green.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/gww/go_green.f90 -------------------------------------------------------------------------------- /GWW/gww/gv_time.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/gww/gv_time.f90 -------------------------------------------------------------------------------- /GWW/gww/gww.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/gww/gww.f90 -------------------------------------------------------------------------------- /GWW/gww/gww_fit.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/gww/gww_fit.f90 -------------------------------------------------------------------------------- /GWW/gww/input_gw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/gww/input_gw.f90 -------------------------------------------------------------------------------- /GWW/gww/para_gww.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/gww/para_gww.f90 -------------------------------------------------------------------------------- /GWW/gww/remainder.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/gww/remainder.f90 -------------------------------------------------------------------------------- /GWW/gww/start_end.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/gww/start_end.f90 -------------------------------------------------------------------------------- /GWW/gww/times_gw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/gww/times_gw.f90 -------------------------------------------------------------------------------- /GWW/gww/vcprim.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/gww/vcprim.f90 -------------------------------------------------------------------------------- /GWW/head/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/head/Makefile -------------------------------------------------------------------------------- /GWW/head/head.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/head/head.f90 -------------------------------------------------------------------------------- /GWW/minpack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/minpack/Makefile -------------------------------------------------------------------------------- /GWW/minpack/enorm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/minpack/enorm.f90 -------------------------------------------------------------------------------- /GWW/minpack/lmder.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/minpack/lmder.f90 -------------------------------------------------------------------------------- /GWW/minpack/lmdif.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/minpack/lmdif.f90 -------------------------------------------------------------------------------- /GWW/minpack/lmpar.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/minpack/lmpar.f90 -------------------------------------------------------------------------------- /GWW/minpack/qrfac.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/minpack/qrfac.f90 -------------------------------------------------------------------------------- /GWW/minpack/test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/minpack/test.f90 -------------------------------------------------------------------------------- /GWW/pw4gww/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/pw4gww/Makefile -------------------------------------------------------------------------------- /GWW/pw4gww/full.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/pw4gww/full.f90 -------------------------------------------------------------------------------- /GWW/pw4gww/o_1psi.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/pw4gww/o_1psi.f90 -------------------------------------------------------------------------------- /GWW/pw4gww/pw4gww.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/pw4gww/pw4gww.f90 -------------------------------------------------------------------------------- /GWW/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/simple/Makefile -------------------------------------------------------------------------------- /GWW/simple/epe.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/simple/epe.f90 -------------------------------------------------------------------------------- /GWW/simple/simple.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/simple/simple.f90 -------------------------------------------------------------------------------- /GWW/util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/util/Makefile -------------------------------------------------------------------------------- /GWW/util/graph.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/GWW/util/graph.f90 -------------------------------------------------------------------------------- /HP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/CMakeLists.txt -------------------------------------------------------------------------------- /HP/Doc/INPUT_HP.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/Doc/INPUT_HP.def -------------------------------------------------------------------------------- /HP/Doc/INPUT_HP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/Doc/INPUT_HP.html -------------------------------------------------------------------------------- /HP/Doc/INPUT_HP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/Doc/INPUT_HP.txt -------------------------------------------------------------------------------- /HP/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/Doc/Makefile -------------------------------------------------------------------------------- /HP/Doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/Doc/README -------------------------------------------------------------------------------- /HP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/Makefile -------------------------------------------------------------------------------- /HP/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/examples/README -------------------------------------------------------------------------------- /HP/examples/clean_all: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | \rm -rf */results* >& /dev/null 4 | -------------------------------------------------------------------------------- /HP/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/src/Makefile -------------------------------------------------------------------------------- /HP/src/hp_clean_q.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/src/hp_clean_q.f90 -------------------------------------------------------------------------------- /HP/src/hp_close_q.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/src/hp_close_q.f90 -------------------------------------------------------------------------------- /HP/src/hp_dnsq.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/src/hp_dnsq.f90 -------------------------------------------------------------------------------- /HP/src/hp_init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/src/hp_init.f90 -------------------------------------------------------------------------------- /HP/src/hp_init_q.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/src/hp_init_q.f90 -------------------------------------------------------------------------------- /HP/src/hp_load_q.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/src/hp_load_q.f90 -------------------------------------------------------------------------------- /HP/src/hp_main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/src/hp_main.f90 -------------------------------------------------------------------------------- /HP/src/hp_readin.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/src/hp_readin.f90 -------------------------------------------------------------------------------- /HP/src/hp_setup_q.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/src/hp_setup_q.f90 -------------------------------------------------------------------------------- /HP/src/hp_summary.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/src/hp_summary.f90 -------------------------------------------------------------------------------- /HP/src/hp_symdnsq.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/src/hp_symdnsq.f90 -------------------------------------------------------------------------------- /HP/src/hpcom.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/HP/src/hpcom.f90 -------------------------------------------------------------------------------- /KCW/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/CMakeLists.txt -------------------------------------------------------------------------------- /KCW/Doc/INPUT_kcw.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/Doc/INPUT_kcw.def -------------------------------------------------------------------------------- /KCW/Doc/INPUT_kcw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/Doc/INPUT_kcw.txt -------------------------------------------------------------------------------- /KCW/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/Doc/Makefile -------------------------------------------------------------------------------- /KCW/Doc/input_xx.xsl: -------------------------------------------------------------------------------- 1 | ../../dev-tools/input_xx.xsl -------------------------------------------------------------------------------- /KCW/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/Makefile -------------------------------------------------------------------------------- /KCW/PP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/PP/CMakeLists.txt -------------------------------------------------------------------------------- /KCW/PP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/PP/Makefile -------------------------------------------------------------------------------- /KCW/PP/kcw_bands.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/PP/kcw_bands.f90 -------------------------------------------------------------------------------- /KCW/PP/makedeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/PP/makedeps.sh -------------------------------------------------------------------------------- /KCW/PP/read_hr.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/PP/read_hr.f90 -------------------------------------------------------------------------------- /KCW/PP/sh_setup.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/PP/sh_setup.f90 -------------------------------------------------------------------------------- /KCW/PP/ups.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/PP/ups.f90 -------------------------------------------------------------------------------- /KCW/kcw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/kcw.md -------------------------------------------------------------------------------- /KCW/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/src/Makefile -------------------------------------------------------------------------------- /KCW/src/bare_pot.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/src/bare_pot.f90 -------------------------------------------------------------------------------- /KCW/src/bcast_wfc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/src/bcast_wfc.f90 -------------------------------------------------------------------------------- /KCW/src/close_kcw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/src/close_kcw.f90 -------------------------------------------------------------------------------- /KCW/src/coulomb.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/src/coulomb.f90 -------------------------------------------------------------------------------- /KCW/src/full_ham.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/src/full_ham.f90 -------------------------------------------------------------------------------- /KCW/src/hamilt.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/src/hamilt.f90 -------------------------------------------------------------------------------- /KCW/src/kcw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/src/kcw.f90 -------------------------------------------------------------------------------- /KCW/src/kcw_comm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/src/kcw_comm.f90 -------------------------------------------------------------------------------- /KCW/src/kcw_ham.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/src/kcw_ham.f90 -------------------------------------------------------------------------------- /KCW/src/kcw_setup.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/src/kcw_setup.f90 -------------------------------------------------------------------------------- /KCW/src/makedeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/src/makedeps.sh -------------------------------------------------------------------------------- /KCW/src/rho_of_q.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/src/rho_of_q.f90 -------------------------------------------------------------------------------- /KCW/src/rotate_ks.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/src/rotate_ks.f90 -------------------------------------------------------------------------------- /KCW/src/wann2kcw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KCW/src/wann2kcw.f90 -------------------------------------------------------------------------------- /KS_Solvers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/KS_Solvers/Makefile -------------------------------------------------------------------------------- /LAXlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/CMakeLists.txt -------------------------------------------------------------------------------- /LAXlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/Makefile -------------------------------------------------------------------------------- /LAXlib/README.TEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/README.TEST -------------------------------------------------------------------------------- /LAXlib/cdiaghg.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/cdiaghg.f90 -------------------------------------------------------------------------------- /LAXlib/distools.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/distools.f90 -------------------------------------------------------------------------------- /LAXlib/dspev_drv.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/dspev_drv.f90 -------------------------------------------------------------------------------- /LAXlib/la_error.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/la_error.f90 -------------------------------------------------------------------------------- /LAXlib/la_helper.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/la_helper.f90 -------------------------------------------------------------------------------- /LAXlib/la_module.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/la_module.f90 -------------------------------------------------------------------------------- /LAXlib/la_param.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/la_param.f90 -------------------------------------------------------------------------------- /LAXlib/la_types.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/la_types.f90 -------------------------------------------------------------------------------- /LAXlib/laxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/laxlib.h -------------------------------------------------------------------------------- /LAXlib/laxlib_hi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/laxlib_hi.h -------------------------------------------------------------------------------- /LAXlib/laxlib_kinds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/laxlib_kinds.h -------------------------------------------------------------------------------- /LAXlib/laxlib_low.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/laxlib_low.h -------------------------------------------------------------------------------- /LAXlib/laxlib_mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/laxlib_mid.h -------------------------------------------------------------------------------- /LAXlib/laxlib_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/laxlib_param.h -------------------------------------------------------------------------------- /LAXlib/mp_diag.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/mp_diag.f90 -------------------------------------------------------------------------------- /LAXlib/ptoolkit.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/ptoolkit.f90 -------------------------------------------------------------------------------- /LAXlib/rdiaghg.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/rdiaghg.f90 -------------------------------------------------------------------------------- /LAXlib/test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/test.f90 -------------------------------------------------------------------------------- /LAXlib/tests/.gitattributes: -------------------------------------------------------------------------------- 1 | *.bin binary 2 | -------------------------------------------------------------------------------- /LAXlib/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/tests/Makefile -------------------------------------------------------------------------------- /LAXlib/transto.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/transto.f90 -------------------------------------------------------------------------------- /LAXlib/zhpev_drv.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LAXlib/zhpev_drv.f90 -------------------------------------------------------------------------------- /LR_Modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LR_Modules/Makefile -------------------------------------------------------------------------------- /LR_Modules/cg_psi.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LR_Modules/cg_psi.f90 -------------------------------------------------------------------------------- /LR_Modules/h_prec.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LR_Modules/h_prec.f90 -------------------------------------------------------------------------------- /LR_Modules/lr_dot.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LR_Modules/lr_dot.f90 -------------------------------------------------------------------------------- /LR_Modules/lrcom.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LR_Modules/lrcom.f90 -------------------------------------------------------------------------------- /LR_Modules/newdq.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LR_Modules/newdq.f90 -------------------------------------------------------------------------------- /LR_Modules/star_q.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/LR_Modules/star_q.f90 -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/License -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Makefile -------------------------------------------------------------------------------- /Modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/Makefile -------------------------------------------------------------------------------- /Modules/autopilot.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/autopilot.f90 -------------------------------------------------------------------------------- /Modules/becmod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/becmod.f90 -------------------------------------------------------------------------------- /Modules/bspline.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/bspline.f90 -------------------------------------------------------------------------------- /Modules/bz_form.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/bz_form.f90 -------------------------------------------------------------------------------- /Modules/capital.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/capital.f90 -------------------------------------------------------------------------------- /Modules/cell_base.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/cell_base.f90 -------------------------------------------------------------------------------- /Modules/chempot.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/chempot.f90 -------------------------------------------------------------------------------- /Modules/closure.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/closure.f90 -------------------------------------------------------------------------------- /Modules/constants.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/constants.f90 -------------------------------------------------------------------------------- /Modules/dist.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/dist.f90 -------------------------------------------------------------------------------- /Modules/do_1drism.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/do_1drism.f90 -------------------------------------------------------------------------------- /Modules/do_3drism.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/do_3drism.f90 -------------------------------------------------------------------------------- /Modules/err_rism.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/err_rism.f90 -------------------------------------------------------------------------------- /Modules/expint.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/expint.f90 -------------------------------------------------------------------------------- /Modules/extffield.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/extffield.f90 -------------------------------------------------------------------------------- /Modules/fft_base.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/fft_base.f90 -------------------------------------------------------------------------------- /Modules/fft_rho.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/fft_rho.f90 -------------------------------------------------------------------------------- /Modules/fft_wave.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/fft_wave.f90 -------------------------------------------------------------------------------- /Modules/fsockets.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/fsockets.f90 -------------------------------------------------------------------------------- /Modules/funct.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/funct.f90 -------------------------------------------------------------------------------- /Modules/gradutils.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/gradutils.f90 -------------------------------------------------------------------------------- /Modules/gvecw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/gvecw.f90 -------------------------------------------------------------------------------- /Modules/has_xml.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/has_xml.f90 -------------------------------------------------------------------------------- /Modules/hdf5_qe.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/hdf5_qe.f90 -------------------------------------------------------------------------------- /Modules/inpfile.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/inpfile.f90 -------------------------------------------------------------------------------- /Modules/invmat.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/invmat.f90 -------------------------------------------------------------------------------- /Modules/io_base.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/io_base.f90 -------------------------------------------------------------------------------- /Modules/io_files.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/io_files.f90 -------------------------------------------------------------------------------- /Modules/io_global.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/io_global.f90 -------------------------------------------------------------------------------- /Modules/ions_base.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/ions_base.f90 -------------------------------------------------------------------------------- /Modules/kind.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/kind.f90 -------------------------------------------------------------------------------- /Modules/latgen.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/latgen.f90 -------------------------------------------------------------------------------- /Modules/lauefft.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/lauefft.f90 -------------------------------------------------------------------------------- /Modules/linpack.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/linpack.f90 -------------------------------------------------------------------------------- /Modules/lj_solute.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/lj_solute.f90 -------------------------------------------------------------------------------- /Modules/lmdif.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/lmdif.f90 -------------------------------------------------------------------------------- /Modules/matches.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/matches.f90 -------------------------------------------------------------------------------- /Modules/mbdlib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/mbdlib.f90 -------------------------------------------------------------------------------- /Modules/mdiis.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/mdiis.f90 -------------------------------------------------------------------------------- /Modules/mp_bands.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/mp_bands.f90 -------------------------------------------------------------------------------- /Modules/mp_exx.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/mp_exx.f90 -------------------------------------------------------------------------------- /Modules/mp_global.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/mp_global.f90 -------------------------------------------------------------------------------- /Modules/mp_images.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/mp_images.f90 -------------------------------------------------------------------------------- /Modules/mp_pools.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/mp_pools.f90 -------------------------------------------------------------------------------- /Modules/mp_rism.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/mp_rism.f90 -------------------------------------------------------------------------------- /Modules/mp_wave.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/mp_wave.f90 -------------------------------------------------------------------------------- /Modules/mp_world.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/mp_world.f90 -------------------------------------------------------------------------------- /Modules/noncol.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/noncol.f90 -------------------------------------------------------------------------------- /Modules/parser.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/parser.f90 -------------------------------------------------------------------------------- /Modules/plot_io.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/plot_io.f90 -------------------------------------------------------------------------------- /Modules/plot_rism.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/plot_rism.f90 -------------------------------------------------------------------------------- /Modules/pw_dot.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/pw_dot.f90 -------------------------------------------------------------------------------- /Modules/qexsd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/qexsd.f90 -------------------------------------------------------------------------------- /Modules/qmmm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/qmmm.f90 -------------------------------------------------------------------------------- /Modules/qmmm_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/qmmm_aux.c -------------------------------------------------------------------------------- /Modules/radfft.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/radfft.f90 -------------------------------------------------------------------------------- /Modules/read_mol.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/read_mol.f90 -------------------------------------------------------------------------------- /Modules/read_solv.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/read_solv.f90 -------------------------------------------------------------------------------- /Modules/recips.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/recips.f90 -------------------------------------------------------------------------------- /Modules/recvec.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/recvec.f90 -------------------------------------------------------------------------------- /Modules/rgen.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/rgen.f90 -------------------------------------------------------------------------------- /Modules/rism.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/rism.f90 -------------------------------------------------------------------------------- /Modules/run_info.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/run_info.f90 -------------------------------------------------------------------------------- /Modules/setqf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/setqf.f90 -------------------------------------------------------------------------------- /Modules/sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/sockets.c -------------------------------------------------------------------------------- /Modules/solute.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/solute.f90 -------------------------------------------------------------------------------- /Modules/solvavg.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/solvavg.f90 -------------------------------------------------------------------------------- /Modules/solvmol.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/solvmol.f90 -------------------------------------------------------------------------------- /Modules/sort.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/sort.f90 -------------------------------------------------------------------------------- /Modules/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/stack.c -------------------------------------------------------------------------------- /Modules/timestep.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/timestep.f90 -------------------------------------------------------------------------------- /Modules/trimcheck.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/trimcheck.f90 -------------------------------------------------------------------------------- /Modules/tsvdw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/tsvdw.f90 -------------------------------------------------------------------------------- /Modules/version.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/version.f90 -------------------------------------------------------------------------------- /Modules/volume.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/volume.f90 -------------------------------------------------------------------------------- /Modules/w0gauss.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/w0gauss.f90 -------------------------------------------------------------------------------- /Modules/w1gauss.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/w1gauss.f90 -------------------------------------------------------------------------------- /Modules/wgauss.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/wgauss.f90 -------------------------------------------------------------------------------- /Modules/ws_base.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/ws_base.f90 -------------------------------------------------------------------------------- /Modules/wyckoff.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/wyckoff.f90 -------------------------------------------------------------------------------- /Modules/wypos.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/wypos.f90 -------------------------------------------------------------------------------- /Modules/xc_rVV10.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/xc_rVV10.f90 -------------------------------------------------------------------------------- /Modules/xc_vdW_DF.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/xc_vdW_DF.f90 -------------------------------------------------------------------------------- /Modules/xsf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/xsf.f90 -------------------------------------------------------------------------------- /Modules/zvscal.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/Modules/zvscal.f90 -------------------------------------------------------------------------------- /NEB/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/NEB/CMakeLists.txt -------------------------------------------------------------------------------- /NEB/Doc/INPUT_NEB.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/NEB/Doc/INPUT_NEB.def -------------------------------------------------------------------------------- /NEB/Doc/INPUT_NEB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/NEB/Doc/INPUT_NEB.txt -------------------------------------------------------------------------------- /NEB/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/NEB/Doc/Makefile -------------------------------------------------------------------------------- /NEB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/NEB/Makefile -------------------------------------------------------------------------------- /NEB/examples/neb0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/NEB/examples/neb0.in -------------------------------------------------------------------------------- /NEB/examples/neb0.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/NEB/examples/neb0.ref -------------------------------------------------------------------------------- /NEB/examples/neb1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/NEB/examples/neb1.in -------------------------------------------------------------------------------- /NEB/examples/neb1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/NEB/examples/neb1.ref -------------------------------------------------------------------------------- /NEB/examples/neb2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/NEB/examples/neb2.in -------------------------------------------------------------------------------- /NEB/examples/neb2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/NEB/examples/neb2.ref -------------------------------------------------------------------------------- /NEB/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/NEB/src/Makefile -------------------------------------------------------------------------------- /NEB/src/neb.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/NEB/src/neb.f90 -------------------------------------------------------------------------------- /NEB/src/neb_input.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/NEB/src/neb_input.f90 -------------------------------------------------------------------------------- /NEB/src/path_base.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/NEB/src/path_base.f90 -------------------------------------------------------------------------------- /PHonon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/CMakeLists.txt -------------------------------------------------------------------------------- /PHonon/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/Doc/Makefile -------------------------------------------------------------------------------- /PHonon/Doc/input_xx.xsl: -------------------------------------------------------------------------------- 1 | ../../dev-tools/input_xx.xsl -------------------------------------------------------------------------------- /PHonon/FD/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/FD/Makefile -------------------------------------------------------------------------------- /PHonon/FD/fd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/FD/fd.f90 -------------------------------------------------------------------------------- /PHonon/FD/fd_ef.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/FD/fd_ef.f90 -------------------------------------------------------------------------------- /PHonon/FD/fd_ifc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/FD/fd_ifc.f90 -------------------------------------------------------------------------------- /PHonon/FD/run_fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/FD/run_fd -------------------------------------------------------------------------------- /PHonon/FD/stop_pp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/FD/stop_pp.f90 -------------------------------------------------------------------------------- /PHonon/Ford.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/Ford.md -------------------------------------------------------------------------------- /PHonon/Ford/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/Ford/index.md -------------------------------------------------------------------------------- /PHonon/Gamma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/Gamma/Makefile -------------------------------------------------------------------------------- /PHonon/Gamma/a_h.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/Gamma/a_h.f90 -------------------------------------------------------------------------------- /PHonon/Gamma/h_h.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/Gamma/h_h.f90 -------------------------------------------------------------------------------- /PHonon/Gamma/phcg.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/Gamma/phcg.f90 -------------------------------------------------------------------------------- /PHonon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/Makefile -------------------------------------------------------------------------------- /PHonon/PH/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/Makefile -------------------------------------------------------------------------------- /PHonon/PH/addcore.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/addcore.f90 -------------------------------------------------------------------------------- /PHonon/PH/addnlcc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/addnlcc.f90 -------------------------------------------------------------------------------- /PHonon/PH/ahc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/ahc.f90 -------------------------------------------------------------------------------- /PHonon/PH/alpha2f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/alpha2f.f90 -------------------------------------------------------------------------------- /PHonon/PH/clinear.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/clinear.f90 -------------------------------------------------------------------------------- /PHonon/PH/d2ionq.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/d2ionq.f90 -------------------------------------------------------------------------------- /PHonon/PH/d2mxc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/d2mxc.f90 -------------------------------------------------------------------------------- /PHonon/PH/dielec.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/dielec.f90 -------------------------------------------------------------------------------- /PHonon/PH/do_q2r.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/do_q2r.f90 -------------------------------------------------------------------------------- /PHonon/PH/drho.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/drho.f90 -------------------------------------------------------------------------------- /PHonon/PH/drhodv.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/drhodv.f90 -------------------------------------------------------------------------------- /PHonon/PH/dvanqq.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/dvanqq.f90 -------------------------------------------------------------------------------- /PHonon/PH/dvkb3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/dvkb3.f90 -------------------------------------------------------------------------------- /PHonon/PH/dvpsi_e.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/dvpsi_e.f90 -------------------------------------------------------------------------------- /PHonon/PH/dwfc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/dwfc.f90 -------------------------------------------------------------------------------- /PHonon/PH/dyndia.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/dyndia.f90 -------------------------------------------------------------------------------- /PHonon/PH/dynmat.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/dynmat.f90 -------------------------------------------------------------------------------- /PHonon/PH/dynmat0.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/dynmat0.f90 -------------------------------------------------------------------------------- /PHonon/PH/el_opt.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/el_opt.f90 -------------------------------------------------------------------------------- /PHonon/PH/elph.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/elph.f90 -------------------------------------------------------------------------------- /PHonon/PH/elphon.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/elphon.f90 -------------------------------------------------------------------------------- /PHonon/PH/epa.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/epa.f90 -------------------------------------------------------------------------------- /PHonon/PH/fqha.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/fqha.f90 -------------------------------------------------------------------------------- /PHonon/PH/hdiag.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/hdiag.f90 -------------------------------------------------------------------------------- /PHonon/PH/lambda.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/lambda.f90 -------------------------------------------------------------------------------- /PHonon/PH/matdyn.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/matdyn.f90 -------------------------------------------------------------------------------- /PHonon/PH/pcgreen.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/pcgreen.f90 -------------------------------------------------------------------------------- /PHonon/PH/phcom.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/phcom.f90 -------------------------------------------------------------------------------- /PHonon/PH/phescf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/phescf.f90 -------------------------------------------------------------------------------- /PHonon/PH/phonon.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/phonon.f90 -------------------------------------------------------------------------------- /PHonon/PH/phqscf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/phqscf.f90 -------------------------------------------------------------------------------- /PHonon/PH/psyme.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/psyme.f90 -------------------------------------------------------------------------------- /PHonon/PH/q2r.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/q2r.f90 -------------------------------------------------------------------------------- /PHonon/PH/raman.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/raman.f90 -------------------------------------------------------------------------------- /PHonon/PH/rigid.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/rigid.f90 -------------------------------------------------------------------------------- /PHonon/PH/swfc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/swfc.f90 -------------------------------------------------------------------------------- /PHonon/PH/syme.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/syme.f90 -------------------------------------------------------------------------------- /PHonon/PH/syme2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/syme2.f90 -------------------------------------------------------------------------------- /PHonon/PH/symm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/symm.f90 -------------------------------------------------------------------------------- /PHonon/PH/yambo.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PHonon/PH/yambo.f90 -------------------------------------------------------------------------------- /PHonon/examples/clean_all: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | \rm -rf */results* >& /dev/null 4 | -------------------------------------------------------------------------------- /PHonon/examples/example15/reference/co2.dm.in: -------------------------------------------------------------------------------- 1 | &input fildyn='dmat.co2', asr='zero-dim' / 2 | -------------------------------------------------------------------------------- /PHonon/examples/example15/reference/zno.dm.in: -------------------------------------------------------------------------------- 1 | &input fildyn='dmat.zno', asr='zero-dim' / 2 | -------------------------------------------------------------------------------- /PP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/CMakeLists.txt -------------------------------------------------------------------------------- /PP/Doc/INPUT_PP.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/Doc/INPUT_PP.def -------------------------------------------------------------------------------- /PP/Doc/INPUT_PP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/Doc/INPUT_PP.txt -------------------------------------------------------------------------------- /PP/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/Doc/Makefile -------------------------------------------------------------------------------- /PP/Doc/eps_man.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/Doc/eps_man.pdf -------------------------------------------------------------------------------- /PP/Doc/eps_man.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/Doc/eps_man.tex -------------------------------------------------------------------------------- /PP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/Makefile -------------------------------------------------------------------------------- /PP/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/examples/README -------------------------------------------------------------------------------- /PP/examples/clean_all: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | \rm -rf */results* >& /dev/null 4 | -------------------------------------------------------------------------------- /PP/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/Makefile -------------------------------------------------------------------------------- /PP/src/average.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/average.f90 -------------------------------------------------------------------------------- /PP/src/bands.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/bands.f90 -------------------------------------------------------------------------------- /PP/src/cube.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/cube.f90 -------------------------------------------------------------------------------- /PP/src/d3hess.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/d3hess.f90 -------------------------------------------------------------------------------- /PP/src/dos.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/dos.f90 -------------------------------------------------------------------------------- /PP/src/dosg.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/dosg.f90 -------------------------------------------------------------------------------- /PP/src/elf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/elf.f90 -------------------------------------------------------------------------------- /PP/src/epsilon.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/epsilon.f90 -------------------------------------------------------------------------------- /PP/src/ggen1d.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/ggen1d.f90 -------------------------------------------------------------------------------- /PP/src/idwmod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/idwmod.f90 -------------------------------------------------------------------------------- /PP/src/lebedev.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/lebedev.f90 -------------------------------------------------------------------------------- /PP/src/pawplot.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/pawplot.f90 -------------------------------------------------------------------------------- /PP/src/plan_avg.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/plan_avg.f90 -------------------------------------------------------------------------------- /PP/src/plotband.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/plotband.f90 -------------------------------------------------------------------------------- /PP/src/plotproj.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/plotproj.f90 -------------------------------------------------------------------------------- /PP/src/plotrho.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/plotrho.f90 -------------------------------------------------------------------------------- /PP/src/postproc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/postproc.f90 -------------------------------------------------------------------------------- /PP/src/postrism.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/postrism.f90 -------------------------------------------------------------------------------- /PP/src/ppacf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/ppacf.f90 -------------------------------------------------------------------------------- /PP/src/projwfc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/projwfc.f90 -------------------------------------------------------------------------------- /PP/src/pw2bgw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/pw2bgw.f90 -------------------------------------------------------------------------------- /PP/src/pw2gt.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/pw2gt.f90 -------------------------------------------------------------------------------- /PP/src/pw2gw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/pw2gw.f90 -------------------------------------------------------------------------------- /PP/src/smallgk.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/smallgk.f90 -------------------------------------------------------------------------------- /PP/src/solvdens.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/solvdens.f90 -------------------------------------------------------------------------------- /PP/src/stm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/stm.f90 -------------------------------------------------------------------------------- /PP/src/stop_pp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/stop_pp.f90 -------------------------------------------------------------------------------- /PP/src/sumpdos.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/sumpdos.f90 -------------------------------------------------------------------------------- /PP/src/sym_band.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/sym_band.f90 -------------------------------------------------------------------------------- /PP/src/wfck2r.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PP/src/wfck2r.f90 -------------------------------------------------------------------------------- /PW/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/CMakeLists.txt -------------------------------------------------------------------------------- /PW/Doc/INPUT_PW.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/Doc/INPUT_PW.def -------------------------------------------------------------------------------- /PW/Doc/INPUT_PW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/Doc/INPUT_PW.txt -------------------------------------------------------------------------------- /PW/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/Doc/Makefile -------------------------------------------------------------------------------- /PW/Ford.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/Ford.md -------------------------------------------------------------------------------- /PW/Ford/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/Ford/index.md -------------------------------------------------------------------------------- /PW/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/Makefile -------------------------------------------------------------------------------- /PW/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/examples/README -------------------------------------------------------------------------------- /PW/examples/clean_all: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | \rm -rf */results* >& /dev/null 4 | -------------------------------------------------------------------------------- /PW/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/Makefile -------------------------------------------------------------------------------- /PW/src/a2fmod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/a2fmod.f90 -------------------------------------------------------------------------------- /PW/src/beef.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/beef.f90 -------------------------------------------------------------------------------- /PW/src/bp_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/bp_mod.f90 -------------------------------------------------------------------------------- /PW/src/buffers.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/buffers.f90 -------------------------------------------------------------------------------- /PW/src/c_bands.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/c_bands.f90 -------------------------------------------------------------------------------- /PW/src/cdiagh.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/cdiagh.f90 -------------------------------------------------------------------------------- /PW/src/clean_pw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/clean_pw.f90 -------------------------------------------------------------------------------- /PW/src/coset.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/coset.f90 -------------------------------------------------------------------------------- /PW/src/d_matrix.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/d_matrix.f90 -------------------------------------------------------------------------------- /PW/src/efermig.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/efermig.f90 -------------------------------------------------------------------------------- /PW/src/efermit.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/efermit.f90 -------------------------------------------------------------------------------- /PW/src/eqvect.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/eqvect.f90 -------------------------------------------------------------------------------- /PW/src/esm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/esm.f90 -------------------------------------------------------------------------------- /PW/src/ewald.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/ewald.f90 -------------------------------------------------------------------------------- /PW/src/extfield.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/extfield.f90 -------------------------------------------------------------------------------- /PW/src/exx.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/exx.f90 -------------------------------------------------------------------------------- /PW/src/exx_band.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/exx_band.f90 -------------------------------------------------------------------------------- /PW/src/exx_base.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/exx_base.f90 -------------------------------------------------------------------------------- /PW/src/force_cc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/force_cc.f90 -------------------------------------------------------------------------------- /PW/src/force_ew.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/force_ew.f90 -------------------------------------------------------------------------------- /PW/src/force_lc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/force_lc.f90 -------------------------------------------------------------------------------- /PW/src/force_us.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/force_us.f90 -------------------------------------------------------------------------------- /PW/src/forces.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/forces.f90 -------------------------------------------------------------------------------- /PW/src/g2_kin.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/g2_kin.f90 -------------------------------------------------------------------------------- /PW/src/g_psi.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/g_psi.f90 -------------------------------------------------------------------------------- /PW/src/gk_sort.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/gk_sort.f90 -------------------------------------------------------------------------------- /PW/src/gradcorr.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/gradcorr.f90 -------------------------------------------------------------------------------- /PW/src/gweights.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/gweights.f90 -------------------------------------------------------------------------------- /PW/src/h_psi.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/h_psi.f90 -------------------------------------------------------------------------------- /PW/src/hinit0.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/hinit0.f90 -------------------------------------------------------------------------------- /PW/src/hinit1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/hinit1.f90 -------------------------------------------------------------------------------- /PW/src/hs_1psi.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/hs_1psi.f90 -------------------------------------------------------------------------------- /PW/src/hs_psi.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/hs_psi.f90 -------------------------------------------------------------------------------- /PW/src/hubbard.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/hubbard.f90 -------------------------------------------------------------------------------- /PW/src/init_ns.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/init_ns.f90 -------------------------------------------------------------------------------- /PW/src/init_nsg.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/init_nsg.f90 -------------------------------------------------------------------------------- /PW/src/init_run.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/init_run.f90 -------------------------------------------------------------------------------- /PW/src/input.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/input.f90 -------------------------------------------------------------------------------- /PW/src/irrek.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/irrek.f90 -------------------------------------------------------------------------------- /PW/src/iweights.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/iweights.f90 -------------------------------------------------------------------------------- /PW/src/ldaU.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/ldaU.f90 -------------------------------------------------------------------------------- /PW/src/loc_scdm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/loc_scdm.f90 -------------------------------------------------------------------------------- /PW/src/manypw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/manypw.f90 -------------------------------------------------------------------------------- /PW/src/mix_rho.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/mix_rho.f90 -------------------------------------------------------------------------------- /PW/src/multable.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/multable.f90 -------------------------------------------------------------------------------- /PW/src/new_ns.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/new_ns.f90 -------------------------------------------------------------------------------- /PW/src/new_nsb.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/new_nsb.f90 -------------------------------------------------------------------------------- /PW/src/new_nsg.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/new_nsg.f90 -------------------------------------------------------------------------------- /PW/src/new_occ.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/new_occ.f90 -------------------------------------------------------------------------------- /PW/src/newd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/newd.f90 -------------------------------------------------------------------------------- /PW/src/newd_gpu.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/newd_gpu.f90 -------------------------------------------------------------------------------- /PW/src/non_scf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/non_scf.f90 -------------------------------------------------------------------------------- /PW/src/ns_adj.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/ns_adj.f90 -------------------------------------------------------------------------------- /PW/src/nsg_adj.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/nsg_adj.f90 -------------------------------------------------------------------------------- /PW/src/openfil.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/openfil.f90 -------------------------------------------------------------------------------- /PW/src/para.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/para.f90 -------------------------------------------------------------------------------- /PW/src/paw_exx.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/paw_exx.f90 -------------------------------------------------------------------------------- /PW/src/paw_init.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/paw_init.f90 -------------------------------------------------------------------------------- /PW/src/potinit.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/potinit.f90 -------------------------------------------------------------------------------- /PW/src/punch.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/punch.f90 -------------------------------------------------------------------------------- /PW/src/pw2blip.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/pw2blip.f90 -------------------------------------------------------------------------------- /PW/src/pwcom.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/pwcom.f90 -------------------------------------------------------------------------------- /PW/src/pwscf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/pwscf.f90 -------------------------------------------------------------------------------- /PW/src/rdiagh.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/rdiagh.f90 -------------------------------------------------------------------------------- /PW/src/realus.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/realus.f90 -------------------------------------------------------------------------------- /PW/src/rho2zeta.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/rho2zeta.f90 -------------------------------------------------------------------------------- /PW/src/ruotaijk.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/ruotaijk.f90 -------------------------------------------------------------------------------- /PW/src/s_1psi.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/s_1psi.f90 -------------------------------------------------------------------------------- /PW/src/s_psi.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/s_psi.f90 -------------------------------------------------------------------------------- /PW/src/scale_h.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/scale_h.f90 -------------------------------------------------------------------------------- /PW/src/scf_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/scf_mod.f90 -------------------------------------------------------------------------------- /PW/src/scissor.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/scissor.f90 -------------------------------------------------------------------------------- /PW/src/set_rhoc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/set_rhoc.f90 -------------------------------------------------------------------------------- /PW/src/set_vrs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/set_vrs.f90 -------------------------------------------------------------------------------- /PW/src/setlocal.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/setlocal.f90 -------------------------------------------------------------------------------- /PW/src/setup.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/setup.f90 -------------------------------------------------------------------------------- /PW/src/sic.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/sic.f90 -------------------------------------------------------------------------------- /PW/src/start_k.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/start_k.f90 -------------------------------------------------------------------------------- /PW/src/stop_run.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/stop_run.f90 -------------------------------------------------------------------------------- /PW/src/stres_cc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/stres_cc.f90 -------------------------------------------------------------------------------- /PW/src/stres_us.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/stres_us.f90 -------------------------------------------------------------------------------- /PW/src/stress.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/stress.f90 -------------------------------------------------------------------------------- /PW/src/sum_band.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/sum_band.f90 -------------------------------------------------------------------------------- /PW/src/sumkg.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/sumkg.f90 -------------------------------------------------------------------------------- /PW/src/sumkt.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/sumkt.f90 -------------------------------------------------------------------------------- /PW/src/summary.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/summary.f90 -------------------------------------------------------------------------------- /PW/src/symme.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/symme.f90 -------------------------------------------------------------------------------- /PW/src/tetra.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/tetra.f90 -------------------------------------------------------------------------------- /PW/src/trnvecc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/trnvecc.f90 -------------------------------------------------------------------------------- /PW/src/two_chem.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/two_chem.f90 -------------------------------------------------------------------------------- /PW/src/us_exx.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/us_exx.f90 -------------------------------------------------------------------------------- /PW/src/usnldiag.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/usnldiag.f90 -------------------------------------------------------------------------------- /PW/src/utils.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/utils.f90 -------------------------------------------------------------------------------- /PW/src/v_of_rho.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/v_of_rho.f90 -------------------------------------------------------------------------------- /PW/src/vcsmd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/vcsmd.f90 -------------------------------------------------------------------------------- /PW/src/vcsubs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/vcsubs.f90 -------------------------------------------------------------------------------- /PW/src/vhpsi.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/vhpsi.f90 -------------------------------------------------------------------------------- /PW/src/vloc_psi.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/vloc_psi.f90 -------------------------------------------------------------------------------- /PW/src/weights.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/weights.f90 -------------------------------------------------------------------------------- /PW/src/wfcinit.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/wfcinit.f90 -------------------------------------------------------------------------------- /PW/src/write_ns.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/write_ns.f90 -------------------------------------------------------------------------------- /PW/src/wsweight.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/src/wsweight.f90 -------------------------------------------------------------------------------- /PW/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/tools/Makefile -------------------------------------------------------------------------------- /PW/tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/tools/README -------------------------------------------------------------------------------- /PW/tools/bs.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/tools/bs.awk -------------------------------------------------------------------------------- /PW/tools/cif2qe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/tools/cif2qe.sh -------------------------------------------------------------------------------- /PW/tools/ev.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/tools/ev.f90 -------------------------------------------------------------------------------- /PW/tools/mv.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/tools/mv.awk -------------------------------------------------------------------------------- /PW/tools/pwi2xsf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/tools/pwi2xsf.sh -------------------------------------------------------------------------------- /PW/tools/pwo2xsf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/tools/pwo2xsf.sh -------------------------------------------------------------------------------- /PW/tools/rism1d.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/tools/rism1d.f90 -------------------------------------------------------------------------------- /PW/tools/xsf2pwi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PW/tools/xsf2pwi.sh -------------------------------------------------------------------------------- /PWCOND/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PWCOND/Doc/Makefile -------------------------------------------------------------------------------- /PWCOND/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PWCOND/Makefile -------------------------------------------------------------------------------- /PWCOND/examples/clean_all: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | \rm -rf */results* >& /dev/null 4 | -------------------------------------------------------------------------------- /PWCOND/examples/example03/reference/bands.Auwire.co_im: -------------------------------------------------------------------------------- 1 | # Im(k), E-Ef 2 | # k-point 1 3 | -------------------------------------------------------------------------------- /PWCOND/examples/example03/reference/bands.Auwire.co_re: -------------------------------------------------------------------------------- 1 | # Re(k), E-Ef 2 | # k-point 1 3 | -------------------------------------------------------------------------------- /PWCOND/examples/example03/reference/bandsU.Auwire.co_im: -------------------------------------------------------------------------------- 1 | # Im(k), E-Ef 2 | # k-point 1 3 | -------------------------------------------------------------------------------- /PWCOND/examples/example03/reference/bandsU.Auwire.co_re: -------------------------------------------------------------------------------- 1 | # Re(k), E-Ef 2 | # k-point 1 3 | -------------------------------------------------------------------------------- /PWCOND/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PWCOND/src/Makefile -------------------------------------------------------------------------------- /PWCOND/src/four.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/PWCOND/src/four.f90 -------------------------------------------------------------------------------- /QEHeat/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/QEHeat/Doc/Makefile -------------------------------------------------------------------------------- /QEHeat/Doc/input_xx.xsl: -------------------------------------------------------------------------------- 1 | ../../dev-tools/input_xx.xsl -------------------------------------------------------------------------------- /QEHeat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/QEHeat/Makefile -------------------------------------------------------------------------------- /QEHeat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/QEHeat/README -------------------------------------------------------------------------------- /QEHeat/examples/example_small_H20_trajectory/reference/traj/cp.con: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QEHeat/examples/example_small_H20_trajectory/reference/traj/cp.for: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QEHeat/examples/example_small_H20_trajectory/reference/traj/cp.hrs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QEHeat/examples/example_small_H20_trajectory/reference/traj/cp.ncg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QEHeat/examples/example_small_H20_trajectory/reference/traj/cp.pol: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QEHeat/examples/example_small_H20_trajectory/reference/traj/cp.spr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QEHeat/examples/example_small_H20_trajectory/reference/traj/cp.str: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QEHeat/examples/example_small_H20_trajectory/reference/traj/cp.the: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QEHeat/examples/example_small_H20_trajectory/reference/traj/cp.wfc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QEHeat/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/QEHeat/src/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/README.md -------------------------------------------------------------------------------- /README_GPU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/README_GPU.md -------------------------------------------------------------------------------- /TDDFPT/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/TDDFPT/Doc/Makefile -------------------------------------------------------------------------------- /TDDFPT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/TDDFPT/Makefile -------------------------------------------------------------------------------- /TDDFPT/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/TDDFPT/README -------------------------------------------------------------------------------- /TDDFPT/examples/clean_all: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | \rm -rf */results* >& /dev/null 4 | -------------------------------------------------------------------------------- /TDDFPT/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/TDDFPT/src/Makefile -------------------------------------------------------------------------------- /UtilXlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/UtilXlib/Makefile -------------------------------------------------------------------------------- /UtilXlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/UtilXlib/README.md -------------------------------------------------------------------------------- /UtilXlib/c_mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/UtilXlib/c_mkdir.c -------------------------------------------------------------------------------- /UtilXlib/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/UtilXlib/copy.c -------------------------------------------------------------------------------- /UtilXlib/cptimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/UtilXlib/cptimer.c -------------------------------------------------------------------------------- /UtilXlib/divide.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/UtilXlib/divide.f90 -------------------------------------------------------------------------------- /UtilXlib/hash.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/UtilXlib/hash.f90 -------------------------------------------------------------------------------- /UtilXlib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/UtilXlib/md5.c -------------------------------------------------------------------------------- /UtilXlib/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/UtilXlib/md5.h -------------------------------------------------------------------------------- /UtilXlib/memstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/UtilXlib/memstat.c -------------------------------------------------------------------------------- /UtilXlib/memusage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/UtilXlib/memusage.c -------------------------------------------------------------------------------- /UtilXlib/mp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/UtilXlib/mp.f90 -------------------------------------------------------------------------------- /UtilXlib/ptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/UtilXlib/ptrace.c -------------------------------------------------------------------------------- /XClib/Ford/Ford.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/XClib/Ford/Ford.md -------------------------------------------------------------------------------- /XClib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/XClib/Makefile -------------------------------------------------------------------------------- /XClib/README.BEEF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/XClib/README.BEEF -------------------------------------------------------------------------------- /XClib/README.TEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/XClib/README.TEST -------------------------------------------------------------------------------- /XClib/beefleg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/XClib/beefleg.h -------------------------------------------------------------------------------- /XClib/beefun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/XClib/beefun.c -------------------------------------------------------------------------------- /XClib/pbecor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/XClib/pbecor.c -------------------------------------------------------------------------------- /XClib/pbecor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/XClib/pbecor.h -------------------------------------------------------------------------------- /XClib/qe_kind.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/XClib/qe_kind.f90 -------------------------------------------------------------------------------- /XClib/xc_infos.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/XClib/xc_infos.f90 -------------------------------------------------------------------------------- /XClib/xc_lib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/XClib/xc_lib.f90 -------------------------------------------------------------------------------- /XSpectra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/XSpectra/Makefile -------------------------------------------------------------------------------- /XSpectra/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/XSpectra/README -------------------------------------------------------------------------------- /archive/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/archive/.gitignore -------------------------------------------------------------------------------- /archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/archive/README.md -------------------------------------------------------------------------------- /atomic/Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/atomic/Doc/Makefile -------------------------------------------------------------------------------- /atomic/KLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/atomic/KLI.md -------------------------------------------------------------------------------- /atomic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/atomic/Makefile -------------------------------------------------------------------------------- /atomic/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/atomic/README -------------------------------------------------------------------------------- /atomic/examples/all-electron/clean.sh: -------------------------------------------------------------------------------- 1 | rm -r results 2 | rm difference ld1.wfc* 3 | -------------------------------------------------------------------------------- /atomic/examples/vdw-in-tfvw/clean.sh: -------------------------------------------------------------------------------- 1 | rm -r results *.out *.dat ld1* 2 | -------------------------------------------------------------------------------- /atomic/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/atomic/src/Makefile -------------------------------------------------------------------------------- /atomic/src/dvex.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/atomic/src/dvex.f90 -------------------------------------------------------------------------------- /atomic/src/elsd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/atomic/src/elsd.f90 -------------------------------------------------------------------------------- /atomic/src/esic.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/atomic/src/esic.f90 -------------------------------------------------------------------------------- /atomic/src/kli.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/atomic/src/kli.f90 -------------------------------------------------------------------------------- /atomic/src/ld1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/atomic/src/ld1.f90 -------------------------------------------------------------------------------- /atomic/src/scf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/atomic/src/scf.f90 -------------------------------------------------------------------------------- /atomic/src/trou.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/atomic/src/trou.f90 -------------------------------------------------------------------------------- /atomic/src/vext.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/atomic/src/vext.f90 -------------------------------------------------------------------------------- /cmake/FindFoX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/cmake/FindFoX.cmake -------------------------------------------------------------------------------- /cmake/FindMBD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/cmake/FindMBD.cmake -------------------------------------------------------------------------------- /cmake/GitInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/cmake/GitInfo.cmake -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/configure -------------------------------------------------------------------------------- /dev-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/dev-tools/Makefile -------------------------------------------------------------------------------- /dev-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/dev-tools/README.md -------------------------------------------------------------------------------- /dev-tools/check_gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/dev-tools/check_gui -------------------------------------------------------------------------------- /dev-tools/helpdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/dev-tools/helpdoc -------------------------------------------------------------------------------- /dft-d3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/dft-d3/Makefile -------------------------------------------------------------------------------- /dft-d3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/dft-d3/README -------------------------------------------------------------------------------- /dft-d3/api.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/dft-d3/api.f90 -------------------------------------------------------------------------------- /dft-d3/common.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/dft-d3/common.f90 -------------------------------------------------------------------------------- /dft-d3/core.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/dft-d3/core.f90 -------------------------------------------------------------------------------- /dft-d3/dftd3_qe.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/dft-d3/dftd3_qe.f90 -------------------------------------------------------------------------------- /dft-d3/pars.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/dft-d3/pars.f90 -------------------------------------------------------------------------------- /dft-d3/sizes.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/dft-d3/sizes.f90 -------------------------------------------------------------------------------- /external/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/external/.gitignore -------------------------------------------------------------------------------- /external/devxlib/bin/__tmp__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/devxlib/src/device_fbuff_interf.F: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /external/devxlib/src/device_fbuff_interf.f90: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /external/devxlib/src_generator/make.depend: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /external/fox.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/external/fox.cmake -------------------------------------------------------------------------------- /external/fox/DoX/index.html: -------------------------------------------------------------------------------- 1 | FoX.html -------------------------------------------------------------------------------- /external/fox/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/external/fox/README -------------------------------------------------------------------------------- /external/fox/arch.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/fox/sax/test/test.sh: -------------------------------------------------------------------------------- 1 | ../../common/test/test.sh -------------------------------------------------------------------------------- /external/fox/sax/test/test2.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /external/fox/sax/test/test_sax_reader_1.in: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /external/fox/wcml/test/test.sh: -------------------------------------------------------------------------------- 1 | ../../common/test/test.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlAddBandList.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlAddCrystal.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlAddEigenValue.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlAddEigenValueVector.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlAddKpoint.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlAddLattice.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlAddMetadata.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlAddMolecule.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlAddNamespace.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlAddParameter.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlAddProperty.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlAddSymmetry.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlBeginFile.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlDumpDec.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlEndBand.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlEndCml.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlEndKpoint.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlEndKpointList.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlEndMetadataList.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlEndModule.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlEndParameterList.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlEndPropertyList.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlEndStep.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlFinishFile.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlStartBand.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlStartCml.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlStartKpoint.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlStartKpointList.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlStartMetadataList.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlStartModule.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlStartParameterList.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlStartPropertyList.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wcml/test/test_cmlStartStep.sh: -------------------------------------------------------------------------------- 1 | test_cml.sh -------------------------------------------------------------------------------- /external/fox/wxml/test/test.sh: -------------------------------------------------------------------------------- 1 | ../../common/test/test.sh -------------------------------------------------------------------------------- /external/fox/wxml/test/test_xml_AddAttribute.sh: -------------------------------------------------------------------------------- 1 | test_xml.sh -------------------------------------------------------------------------------- /external/fox/wxml/test/test_xml_AddCharacters.sh: -------------------------------------------------------------------------------- 1 | test_xml.sh -------------------------------------------------------------------------------- /external/fox/wxml/test/test_xml_AddComment.sh: -------------------------------------------------------------------------------- 1 | test_xml.sh -------------------------------------------------------------------------------- /external/fox/wxml/test/test_xml_AddDOCTYPE.sh: -------------------------------------------------------------------------------- 1 | test_xml.sh -------------------------------------------------------------------------------- /external/fox/wxml/test/test_xml_AddExternalEntity.sh: -------------------------------------------------------------------------------- 1 | test_xml.sh -------------------------------------------------------------------------------- /external/fox/wxml/test/test_xml_AddInternalEntity.sh: -------------------------------------------------------------------------------- 1 | test_xml.sh -------------------------------------------------------------------------------- /external/fox/wxml/test/test_xml_AddNotation.sh: -------------------------------------------------------------------------------- 1 | test_xml.sh -------------------------------------------------------------------------------- /external/fox/wxml/test/test_xml_AddParameterEntity.sh: -------------------------------------------------------------------------------- 1 | test_xml.sh -------------------------------------------------------------------------------- /external/fox/wxml/test/test_xml_AddPseudoAttribute.sh: -------------------------------------------------------------------------------- 1 | test_xml.sh -------------------------------------------------------------------------------- /external/fox/wxml/test/test_xml_AddXMLDeclaration.sh: -------------------------------------------------------------------------------- 1 | test_xml.sh -------------------------------------------------------------------------------- /external/fox/wxml/test/test_xml_AddXMLDeclaration_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /external/fox/wxml/test/test_xml_AddXMLPI.sh: -------------------------------------------------------------------------------- 1 | test_xml.sh -------------------------------------------------------------------------------- /external/fox/wxml/test/test_xml_AddXMLStylesheet.sh: -------------------------------------------------------------------------------- 1 | test_xml.sh -------------------------------------------------------------------------------- /external/fox/wxml/test/test_xml_Close.sh: -------------------------------------------------------------------------------- 1 | test_xml.sh -------------------------------------------------------------------------------- /external/fox/wxml/test/test_xml_EndElement.sh: -------------------------------------------------------------------------------- 1 | test_xml.sh -------------------------------------------------------------------------------- /external/fox/wxml/test/test_xml_Namespaces.sh: -------------------------------------------------------------------------------- 1 | test_xml.sh -------------------------------------------------------------------------------- /external/fox/wxml/test/test_xml_NewElement.sh: -------------------------------------------------------------------------------- 1 | test_xml.sh -------------------------------------------------------------------------------- /external/gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/external/gitmodules -------------------------------------------------------------------------------- /external/mbd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/external/mbd.cmake -------------------------------------------------------------------------------- /external/mbd.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/external/mbd.make -------------------------------------------------------------------------------- /external/mbd/docs/version.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install/README.FX10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/install/README.FX10 -------------------------------------------------------------------------------- /install/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/install/aclocal.m4 -------------------------------------------------------------------------------- /install/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/install/config.sub -------------------------------------------------------------------------------- /install/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/install/configure -------------------------------------------------------------------------------- /install/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/install/install-sh -------------------------------------------------------------------------------- /install/m4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/install/m4/README -------------------------------------------------------------------------------- /install/make.inc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/install/make.inc.in -------------------------------------------------------------------------------- /install/makedeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/install/makedeps.sh -------------------------------------------------------------------------------- /install/namedep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/install/namedep.sh -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/logo.jpg -------------------------------------------------------------------------------- /pseudo/B-PBE.upf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/pseudo/B-PBE.upf -------------------------------------------------------------------------------- /pseudo/C-q4.gth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/pseudo/C-q4.gth -------------------------------------------------------------------------------- /pseudo/H-q1.gth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/pseudo/H-q1.gth -------------------------------------------------------------------------------- /pseudo/HUSPBE.RRKJ3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/pseudo/HUSPBE.RRKJ3 -------------------------------------------------------------------------------- /pseudo/H_US.van: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/pseudo/H_US.van -------------------------------------------------------------------------------- /pseudo/Mo-PBE.upf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/pseudo/Mo-PBE.upf -------------------------------------------------------------------------------- /pseudo/N-PBE.upf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/pseudo/N-PBE.upf -------------------------------------------------------------------------------- /pseudo/O-q6.gth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/pseudo/O-q6.gth -------------------------------------------------------------------------------- /pseudo/O_US.van: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/pseudo/O_US.van -------------------------------------------------------------------------------- /pseudo/S-PBE.upf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/pseudo/S-PBE.upf -------------------------------------------------------------------------------- /pseudo/Si.bhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/pseudo/Si.bhs -------------------------------------------------------------------------------- /pseudo/Si_r.upf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/pseudo/Si_r.upf -------------------------------------------------------------------------------- /pseudo/clean_ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/pseudo/clean_ps -------------------------------------------------------------------------------- /test-suite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/test-suite/Makefile -------------------------------------------------------------------------------- /test-suite/QEHeat_rotation/types: -------------------------------------------------------------------------------- 1 | H 2 | H 3 | O 4 | -------------------------------------------------------------------------------- /test-suite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/test-suite/README -------------------------------------------------------------------------------- /test-suite/epw_2D/pp.in: -------------------------------------------------------------------------------- 1 | mos2 2 | -------------------------------------------------------------------------------- /test-suite/epw_base/pp.in: -------------------------------------------------------------------------------- 1 | diam 2 | -------------------------------------------------------------------------------- /test-suite/epw_hall/pp.in: -------------------------------------------------------------------------------- 1 | bn 2 | -------------------------------------------------------------------------------- /test-suite/epw_metal/pp.in: -------------------------------------------------------------------------------- 1 | pb 2 | -------------------------------------------------------------------------------- /test-suite/epw_mob/pp.in: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /test-suite/epw_mob_ibte/pp.in: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /test-suite/epw_mob_ibte_sym/pp.in: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /test-suite/epw_mob_polar/pp.in: -------------------------------------------------------------------------------- 1 | gan 2 | -------------------------------------------------------------------------------- /test-suite/epw_pl/pp.in: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /test-suite/epw_plrn/pp.in: -------------------------------------------------------------------------------- 1 | lif 2 | -------------------------------------------------------------------------------- /test-suite/epw_polar/pp.in: -------------------------------------------------------------------------------- 1 | sic 2 | -------------------------------------------------------------------------------- /test-suite/epw_qdpt/pp.in: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /test-suite/epw_soc/pp.in: -------------------------------------------------------------------------------- 1 | pb 2 | -------------------------------------------------------------------------------- /test-suite/epw_super/pp.in: -------------------------------------------------------------------------------- 1 | MgB2 2 | -------------------------------------------------------------------------------- /test-suite/epw_trev/pp.in: -------------------------------------------------------------------------------- 1 | sic 2 | -------------------------------------------------------------------------------- /test-suite/epw_trev_paw/pp.in: -------------------------------------------------------------------------------- 1 | sic 2 | -------------------------------------------------------------------------------- /test-suite/epw_trev_uspp/pp.in: -------------------------------------------------------------------------------- 1 | sic 2 | -------------------------------------------------------------------------------- /test-suite/epw_wfpt/pp.in: -------------------------------------------------------------------------------- 1 | BAs 2 | -------------------------------------------------------------------------------- /test-suite/not_epw_scdm/pp.in: -------------------------------------------------------------------------------- 1 | si 2 | -------------------------------------------------------------------------------- /test-suite/testcode/docs/.static/dummy_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-suite/testcode/docs/.templates/dummy_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upflib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/Makefile -------------------------------------------------------------------------------- /upflib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/README.md -------------------------------------------------------------------------------- /upflib/atom.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/atom.f90 -------------------------------------------------------------------------------- /upflib/beta_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/beta_mod.f90 -------------------------------------------------------------------------------- /upflib/dom.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/dom.f90 -------------------------------------------------------------------------------- /upflib/dqvan2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/dqvan2.f90 -------------------------------------------------------------------------------- /upflib/dylmr2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/dylmr2.f90 -------------------------------------------------------------------------------- /upflib/fixfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/fixfiles.py -------------------------------------------------------------------------------- /upflib/gth.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/gth.f90 -------------------------------------------------------------------------------- /upflib/hgh2qe.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/hgh2qe.f90 -------------------------------------------------------------------------------- /upflib/qrad_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/qrad_mod.f90 -------------------------------------------------------------------------------- /upflib/qvan2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/qvan2.f90 -------------------------------------------------------------------------------- /upflib/read_fhi.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/read_fhi.f90 -------------------------------------------------------------------------------- /upflib/read_ps.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/read_ps.f90 -------------------------------------------------------------------------------- /upflib/rhoc_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/rhoc_mod.f90 -------------------------------------------------------------------------------- /upflib/simpsn.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/simpsn.f90 -------------------------------------------------------------------------------- /upflib/sph_bes.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/sph_bes.f90 -------------------------------------------------------------------------------- /upflib/sph_ind.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/sph_ind.f90 -------------------------------------------------------------------------------- /upflib/spinor.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/spinor.f90 -------------------------------------------------------------------------------- /upflib/upf_io.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/upf_io.f90 -------------------------------------------------------------------------------- /upflib/upf_ions.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/upf_ions.f90 -------------------------------------------------------------------------------- /upflib/upf_kinds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/upf_kinds.h -------------------------------------------------------------------------------- /upflib/upfconv.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/upfconv.f90 -------------------------------------------------------------------------------- /upflib/uspp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/uspp.f90 -------------------------------------------------------------------------------- /upflib/vloc_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/vloc_mod.f90 -------------------------------------------------------------------------------- /upflib/wxml.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/wxml.f90 -------------------------------------------------------------------------------- /upflib/xmltools.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/xmltools.f90 -------------------------------------------------------------------------------- /upflib/ylmr2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QEF/q-e_schrodinger/HEAD/upflib/ylmr2.f90 --------------------------------------------------------------------------------