-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
option to remove molecular internal interaction added
- Loading branch information
1 parent
f8ea385
commit 630e068
Showing
12 changed files
with
187 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "ACEds" | ||
uuid = "286ca7f0-9926-4809-930a-857c1b5bb5cd" | ||
authors = ["Christoph Ortner <[email protected]> and Matthias Sachs <[email protected]>"] | ||
version = "0.1.6" | ||
version = "0.1.7" | ||
|
||
[deps] | ||
ACE = "3e8ccfd2-c8b0-11ea-32f1-f3a5990fd77a" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
|
||
""" | ||
`EvenL`: selects all basis functions where the sum `L = sum_i l_i` of the degrees `l_i` of the spherical harmonics is even. | ||
""" | ||
struct NoMolOnly | ||
isym::Symbol | ||
categories | ||
end | ||
|
||
function (f::NoMolPW)(bb) | ||
if isempty(bb) | ||
return true | ||
else | ||
return length(bb)= sum( [getproperty(b, f.isym) in categories for b in bb]) | ||
end | ||
end |
Oops, something went wrong.