Logan Lang

Results 137 comments of Logan Lang

Hey, so this is similar to another issue. Another user wanted the density of states values so they could plot the values using another software. Getting the exact data from...

Hey, I added an option to bandsplot that will export data to (csv,json,dat,txt) file. ```python pyprocar.bandsplot( code=code, mode='scatter', fermi=5.3017, orbitals = [4,5,6,7,8], export_data_file=os.path.join(current_dir,'data.dat'), dirname=data_dir) ``` Here, is what the files...

That looks correct. Without more details I have no idea what is wrong. Here are the commands I would use. I make sure pyprocar is uninstall from `pip`, then install...

Yes, follow what [ahromero](https://github.com/ahromero), by checking the installations and pacakges. I would advise to do a fresh install. Here, I create a virtual environment to make sure python isn't using...

Hey Cardenas97, Apologies for the delayed response—my graduate school workload has been ramping up. Just to confirm, you're asking for the data in a similar format to what is discussed...

> Thank you for your response. Yes, I would appreciate it if you could provide the interpolated points in a .csv or .dat file, with each column representing an orbital....

Hey good-mood-everyday! I've managed to replicate the error you're encountering. It originates from the custom slicer I developed using pyvista, which was specifically tailored to support spin textures and parametric...

No, the projections are summed together. The sum of all projections should equal to 1 or close to it. For instance if you do ```python pyprocar.bandsplot(... orbitals=[0,3]) ``` This will...

> In the case when the d component is the largest, this would make the line segment purely green. Yes, this is what happens For `overlay_orbitals` we separate the weights...

The issue is here. I guess the logic is failing here probably because the `self.kpath` is None [ebs_plot.py:614:642](https://github.com/romerogroup/pyprocar/blob/ec357097328e82b98839edb5ad7562979fac2432/pyprocar/plotter/ebs_plot.py#L603) ```python def set_xticks(         self,         tick_positions: List[int] = None,         tick_names: List[str] = None,        ...