├── Manifest.toml ├── Project.toml ├── README.md ├── ctl ├── aux-func.scm ├── aux-functionality.scm ├── berry-phase.scm ├── berry-shared.scm ├── calc-fourier-sum-fast-mu-copy.scm ├── calc-fourier-sum-fast.scm ├── experiments │ ├── bench-load-calc-fourier-sum-fast.scm │ ├── experiments-calc-fourier-sum.scm │ ├── levelset-breaktr-mirror-debug.ctl │ ├── oblique-lattice-levelset-breaktr-mirror-debug.ctl │ ├── oblique-lattice-sphere-breaktr-mirror-debug.ctl │ └── sphere-breaktr-mirror-debug.ctl ├── fourier-lattice.ctl ├── level-set-fourier-lattice.scm └── print-symeigs.scm ├── fig-overview.png ├── fullbz ├── DOS-calculation │ ├── .gitignore │ ├── 3Dexample.ctl │ ├── 3Dexample.png │ ├── DOS_GGR.m │ ├── DOS_Tr.m │ ├── DOS_Tr_SG13.m │ ├── DOS_Tr_SG81.m │ ├── DOS_Tr_SG82.m │ ├── LICENSE.txt │ ├── README.md │ ├── convert_file.jl │ ├── dompb.sh │ └── plotdata.m ├── brillouin_zones.jl ├── bz_utils.jl ├── gen_bz_full │ ├── bzfull_sg13.jl │ ├── bzfull_sg147.jl │ ├── bzfull_sg168.jl │ ├── bzfull_sg27.jl │ ├── bzfull_sg37.jl │ ├── bzfull_sg68.jl │ ├── bzfull_sg75.jl │ ├── bzfull_sg81.jl │ ├── bzfull_sg81_g.jl │ └── bzfull_sg82.jl ├── nodal_features_from_meshing.jl ├── nodalfreq_frommesh.jl ├── nodalfreq_fromslice.jl ├── plot_mesh_sg13.jl ├── plot_mesh_sg27.jl ├── plot_mesh_sg37.jl ├── plot_mesh_sg81.jl ├── plot_mesh_sg82.jl ├── plot_nodalsearch_sg68.jl ├── plotbandsurf.jl ├── plotfullbands.jl ├── plotnodal_sg13.jl ├── plotnodalslice_sg13.jl ├── plotpockets_sg13.jl ├── plotpockets_sg27.jl ├── plotpockets_sg37.jl ├── plotpockets_sg81.jl ├── plotpockets_sg81_double.jl ├── plotpockets_sg82.jl ├── plotweylfit_sg27.jl ├── projectedbands.jl ├── weylslice_sg27_32.jl └── weylslice_sg81.jl ├── nlopt.sh ├── nlopt_chern.jl ├── nlopt_chern_local.jl ├── nlopt_gap.jl ├── nlopt_gap_local.jl ├── nlopt_gaps.jl ├── nlopt_gaps_local.jl ├── process ├── plot_makie.jl ├── plot_opt_best.jl ├── plotbands_dos.jl ├── plotdirdisp.jl ├── plotdirdispchern.jl ├── plotdirdispgaps.jl ├── plotdirpc.jl └── process_nlopt_gap.jl └── src ├── bands.jl ├── fix-unitcell.sh ├── get-berry-phases.sh ├── get-freqs.sh ├── get-symeigs.sh ├── interpolate-custom.jl ├── opt_utils.jl ├── params.jl ├── process_symeigs.jl ├── random.jl ├── run-fourier-lattice-sc.sh ├── run-fourier-lattice.sh ├── run-mpb-fourier-lattice-sc.sh ├── run-mpb-fourier-lattice.sh ├── run-mpbi-fourier-lattice-sc.sh ├── run-mpbi-fourier-lattice.sh ├── topology.jl └── write_ctl.jl /Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/Manifest.toml -------------------------------------------------------------------------------- /Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/Project.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/README.md -------------------------------------------------------------------------------- /ctl/aux-func.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/ctl/aux-func.scm -------------------------------------------------------------------------------- /ctl/aux-functionality.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/ctl/aux-functionality.scm -------------------------------------------------------------------------------- /ctl/berry-phase.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/ctl/berry-phase.scm -------------------------------------------------------------------------------- /ctl/berry-shared.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/ctl/berry-shared.scm -------------------------------------------------------------------------------- /ctl/calc-fourier-sum-fast-mu-copy.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/ctl/calc-fourier-sum-fast-mu-copy.scm -------------------------------------------------------------------------------- /ctl/calc-fourier-sum-fast.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/ctl/calc-fourier-sum-fast.scm -------------------------------------------------------------------------------- /ctl/experiments/bench-load-calc-fourier-sum-fast.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/ctl/experiments/bench-load-calc-fourier-sum-fast.scm -------------------------------------------------------------------------------- /ctl/experiments/experiments-calc-fourier-sum.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/ctl/experiments/experiments-calc-fourier-sum.scm -------------------------------------------------------------------------------- /ctl/experiments/levelset-breaktr-mirror-debug.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/ctl/experiments/levelset-breaktr-mirror-debug.ctl -------------------------------------------------------------------------------- /ctl/experiments/oblique-lattice-levelset-breaktr-mirror-debug.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/ctl/experiments/oblique-lattice-levelset-breaktr-mirror-debug.ctl -------------------------------------------------------------------------------- /ctl/experiments/oblique-lattice-sphere-breaktr-mirror-debug.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/ctl/experiments/oblique-lattice-sphere-breaktr-mirror-debug.ctl -------------------------------------------------------------------------------- /ctl/experiments/sphere-breaktr-mirror-debug.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/ctl/experiments/sphere-breaktr-mirror-debug.ctl -------------------------------------------------------------------------------- /ctl/fourier-lattice.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/ctl/fourier-lattice.ctl -------------------------------------------------------------------------------- /ctl/level-set-fourier-lattice.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/ctl/level-set-fourier-lattice.scm -------------------------------------------------------------------------------- /ctl/print-symeigs.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/ctl/print-symeigs.scm -------------------------------------------------------------------------------- /fig-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fig-overview.png -------------------------------------------------------------------------------- /fullbz/DOS-calculation/.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints 2 | -------------------------------------------------------------------------------- /fullbz/DOS-calculation/3Dexample.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/DOS-calculation/3Dexample.ctl -------------------------------------------------------------------------------- /fullbz/DOS-calculation/3Dexample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/DOS-calculation/3Dexample.png -------------------------------------------------------------------------------- /fullbz/DOS-calculation/DOS_GGR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/DOS-calculation/DOS_GGR.m -------------------------------------------------------------------------------- /fullbz/DOS-calculation/DOS_Tr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/DOS-calculation/DOS_Tr.m -------------------------------------------------------------------------------- /fullbz/DOS-calculation/DOS_Tr_SG13.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/DOS-calculation/DOS_Tr_SG13.m -------------------------------------------------------------------------------- /fullbz/DOS-calculation/DOS_Tr_SG81.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/DOS-calculation/DOS_Tr_SG81.m -------------------------------------------------------------------------------- /fullbz/DOS-calculation/DOS_Tr_SG82.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/DOS-calculation/DOS_Tr_SG82.m -------------------------------------------------------------------------------- /fullbz/DOS-calculation/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/DOS-calculation/LICENSE.txt -------------------------------------------------------------------------------- /fullbz/DOS-calculation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/DOS-calculation/README.md -------------------------------------------------------------------------------- /fullbz/DOS-calculation/convert_file.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/DOS-calculation/convert_file.jl -------------------------------------------------------------------------------- /fullbz/DOS-calculation/dompb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/DOS-calculation/dompb.sh -------------------------------------------------------------------------------- /fullbz/DOS-calculation/plotdata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/DOS-calculation/plotdata.m -------------------------------------------------------------------------------- /fullbz/brillouin_zones.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/brillouin_zones.jl -------------------------------------------------------------------------------- /fullbz/bz_utils.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/bz_utils.jl -------------------------------------------------------------------------------- /fullbz/gen_bz_full/bzfull_sg13.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/gen_bz_full/bzfull_sg13.jl -------------------------------------------------------------------------------- /fullbz/gen_bz_full/bzfull_sg147.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/gen_bz_full/bzfull_sg147.jl -------------------------------------------------------------------------------- /fullbz/gen_bz_full/bzfull_sg168.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/gen_bz_full/bzfull_sg168.jl -------------------------------------------------------------------------------- /fullbz/gen_bz_full/bzfull_sg27.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/gen_bz_full/bzfull_sg27.jl -------------------------------------------------------------------------------- /fullbz/gen_bz_full/bzfull_sg37.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/gen_bz_full/bzfull_sg37.jl -------------------------------------------------------------------------------- /fullbz/gen_bz_full/bzfull_sg68.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/gen_bz_full/bzfull_sg68.jl -------------------------------------------------------------------------------- /fullbz/gen_bz_full/bzfull_sg75.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/gen_bz_full/bzfull_sg75.jl -------------------------------------------------------------------------------- /fullbz/gen_bz_full/bzfull_sg81.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/gen_bz_full/bzfull_sg81.jl -------------------------------------------------------------------------------- /fullbz/gen_bz_full/bzfull_sg81_g.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/gen_bz_full/bzfull_sg81_g.jl -------------------------------------------------------------------------------- /fullbz/gen_bz_full/bzfull_sg82.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/gen_bz_full/bzfull_sg82.jl -------------------------------------------------------------------------------- /fullbz/nodal_features_from_meshing.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/nodal_features_from_meshing.jl -------------------------------------------------------------------------------- /fullbz/nodalfreq_frommesh.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/nodalfreq_frommesh.jl -------------------------------------------------------------------------------- /fullbz/nodalfreq_fromslice.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/nodalfreq_fromslice.jl -------------------------------------------------------------------------------- /fullbz/plot_mesh_sg13.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/plot_mesh_sg13.jl -------------------------------------------------------------------------------- /fullbz/plot_mesh_sg27.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/plot_mesh_sg27.jl -------------------------------------------------------------------------------- /fullbz/plot_mesh_sg37.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/plot_mesh_sg37.jl -------------------------------------------------------------------------------- /fullbz/plot_mesh_sg81.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/plot_mesh_sg81.jl -------------------------------------------------------------------------------- /fullbz/plot_mesh_sg82.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/plot_mesh_sg82.jl -------------------------------------------------------------------------------- /fullbz/plot_nodalsearch_sg68.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/plot_nodalsearch_sg68.jl -------------------------------------------------------------------------------- /fullbz/plotbandsurf.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/plotbandsurf.jl -------------------------------------------------------------------------------- /fullbz/plotfullbands.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/plotfullbands.jl -------------------------------------------------------------------------------- /fullbz/plotnodal_sg13.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/plotnodal_sg13.jl -------------------------------------------------------------------------------- /fullbz/plotnodalslice_sg13.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/plotnodalslice_sg13.jl -------------------------------------------------------------------------------- /fullbz/plotpockets_sg13.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/plotpockets_sg13.jl -------------------------------------------------------------------------------- /fullbz/plotpockets_sg27.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/plotpockets_sg27.jl -------------------------------------------------------------------------------- /fullbz/plotpockets_sg37.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/plotpockets_sg37.jl -------------------------------------------------------------------------------- /fullbz/plotpockets_sg81.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/plotpockets_sg81.jl -------------------------------------------------------------------------------- /fullbz/plotpockets_sg81_double.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/plotpockets_sg81_double.jl -------------------------------------------------------------------------------- /fullbz/plotpockets_sg82.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/plotpockets_sg82.jl -------------------------------------------------------------------------------- /fullbz/plotweylfit_sg27.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/plotweylfit_sg27.jl -------------------------------------------------------------------------------- /fullbz/projectedbands.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/projectedbands.jl -------------------------------------------------------------------------------- /fullbz/weylslice_sg27_32.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/weylslice_sg27_32.jl -------------------------------------------------------------------------------- /fullbz/weylslice_sg81.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/fullbz/weylslice_sg81.jl -------------------------------------------------------------------------------- /nlopt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/nlopt.sh -------------------------------------------------------------------------------- /nlopt_chern.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/nlopt_chern.jl -------------------------------------------------------------------------------- /nlopt_chern_local.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/nlopt_chern_local.jl -------------------------------------------------------------------------------- /nlopt_gap.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/nlopt_gap.jl -------------------------------------------------------------------------------- /nlopt_gap_local.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/nlopt_gap_local.jl -------------------------------------------------------------------------------- /nlopt_gaps.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/nlopt_gaps.jl -------------------------------------------------------------------------------- /nlopt_gaps_local.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/nlopt_gaps_local.jl -------------------------------------------------------------------------------- /process/plot_makie.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/process/plot_makie.jl -------------------------------------------------------------------------------- /process/plot_opt_best.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/process/plot_opt_best.jl -------------------------------------------------------------------------------- /process/plotbands_dos.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/process/plotbands_dos.jl -------------------------------------------------------------------------------- /process/plotdirdisp.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/process/plotdirdisp.jl -------------------------------------------------------------------------------- /process/plotdirdispchern.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/process/plotdirdispchern.jl -------------------------------------------------------------------------------- /process/plotdirdispgaps.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/process/plotdirdispgaps.jl -------------------------------------------------------------------------------- /process/plotdirpc.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/process/plotdirpc.jl -------------------------------------------------------------------------------- /process/process_nlopt_gap.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/process/process_nlopt_gap.jl -------------------------------------------------------------------------------- /src/bands.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/bands.jl -------------------------------------------------------------------------------- /src/fix-unitcell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/fix-unitcell.sh -------------------------------------------------------------------------------- /src/get-berry-phases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/get-berry-phases.sh -------------------------------------------------------------------------------- /src/get-freqs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/get-freqs.sh -------------------------------------------------------------------------------- /src/get-symeigs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/get-symeigs.sh -------------------------------------------------------------------------------- /src/interpolate-custom.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/interpolate-custom.jl -------------------------------------------------------------------------------- /src/opt_utils.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/opt_utils.jl -------------------------------------------------------------------------------- /src/params.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/params.jl -------------------------------------------------------------------------------- /src/process_symeigs.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/process_symeigs.jl -------------------------------------------------------------------------------- /src/random.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/random.jl -------------------------------------------------------------------------------- /src/run-fourier-lattice-sc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/run-fourier-lattice-sc.sh -------------------------------------------------------------------------------- /src/run-fourier-lattice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/run-fourier-lattice.sh -------------------------------------------------------------------------------- /src/run-mpb-fourier-lattice-sc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/run-mpb-fourier-lattice-sc.sh -------------------------------------------------------------------------------- /src/run-mpb-fourier-lattice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/run-mpb-fourier-lattice.sh -------------------------------------------------------------------------------- /src/run-mpbi-fourier-lattice-sc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/run-mpbi-fourier-lattice-sc.sh -------------------------------------------------------------------------------- /src/run-mpbi-fourier-lattice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/run-mpbi-fourier-lattice.sh -------------------------------------------------------------------------------- /src/topology.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/topology.jl -------------------------------------------------------------------------------- /src/write_ctl.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelkim314/topo-phc-opt/HEAD/src/write_ctl.jl --------------------------------------------------------------------------------