Re: [Spglib-users] How to check if two k-points is equivalent
Brought to you by:
atztogo
From: Atsushi T. <atz...@gm...> - 2016-06-02 11:18:20
|
Hi, Let k1 = (x, y, z), k' = (x', y', z') in reduced coordinates. You can check if the following is true: abs((x - x') mod 1) < epsilon and abs((y - y') mod 1) < epsilon and abs((z - z') mod 1) < epsilon epsilon is a positive small number. This is dependent on the implementation of mod function. I suppose mod gives the number closest to 0. Togo On Thu, Jun 2, 2016 at 7:42 PM, Hongliang Yang <hly...@gm...> wrote: > Dear users and devlopers: > > How to check if two k-points is equivalent? For example, one k-point is > outside the FBZ and the other is in FBZ. > > Best wishes. > > Yang > > > ------------------------------------------------------------------------------ > What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic > patterns at an interface-level. Reveals which users, apps, and protocols are > consuming the most bandwidth. Provides multi-vendor support for NetFlow, > J-Flow, sFlow and other flows. Make informed decisions using capacity > planning reports. https://ad.doubleclick.net/ddm/clk/305295220;132659582;e > _______________________________________________ > Spglib-users mailing list > Spg...@li... > https://lists.sourceforge.net/lists/listinfo/spglib-users > -- Atsushi Togo Elements Strategy Initiative for Structural Materials, Kyoto university E-mail: atz...@gm... |