AlexandriaChemistry / AlexandriaChemistry/ACT
Exclusion number in VANDERWAALS is ignored
- Ngôn ngữ chính
- C++
- Star
- 18
- Fork
- 3
- Merge trung bình
- 42 phút
- Pull request đã merge (30 ngày)
- 12
Mô tả
The code to generate exclusions uses the nexcl value in the ELECTROSTATICS for both that and VANDERWAALS
```
auto myItype = InteractionType::ELECTROSTATICS;
if (!ffOption(*pd, myItype, "nexcl", &nexcl))
{
msghandler->fatal(gmx::formatString("The number of exclusions is not specified for %s in %s", interactionTypeToString(myItype).c_str(), pd->filename().c_str()));
}
auto exclusions = generateExclusions(msghandler, nexcl);
makePairs(msghandler, pd, InteractionType::VDW, exclusions);
makePairs(msghandler, pd, InteractionType::ELECTROSTATICS, exclusions);
```
so if the nexcl are different, the result would be incorrect.
Hướng dẫn đóng góp
Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này
Đánh giá
Issue này chưa được đánh giá.