1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright 2023-2024 Mikael Lund
//
// Licensed under the Apache license, version 2.0 (the "license");
// you may not use this file except in compliance with the license.
// You may obtain a copy of the license at
//
// http://www.apache.org/licenses/license-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the license is distributed on an "as is" basis,
// without warranties or conditions of any kind, either express or implied.
// See the license for the specific language governing permissions and
// limitations under the license.
//! ## Fourbody interactions
//!
//! Module for describing exactly four particles interacting with each other, such as in a dihedral.
use DynClone;
pub use HarmonicDihedral;
pub use PeriodicDihedral;
pub use SplinedDihedral;
/// Potential energy between four particles as a function of dihedral angle between them.
clone_trait_object!;