ENH: Update FreeFOAM contributions to GPL v3
[freefoam.git] / src / lagrangian / molecularDynamics / potential / files.cmake
blobf7dd48e0345113e475c6ae3ce9f6ee0330eaffa3
1 #-------------------------------------------------------------------------------
2 #               ______                _     ____          __  __
3 #              |  ____|             _| |_  / __ \   /\   |  \/  |
4 #              | |__ _ __ ___  ___ /     \| |  | | /  \  | \  / |
5 #              |  __| '__/ _ \/ _ ( (| |) ) |  | |/ /\ \ | |\/| |
6 #              | |  | | |  __/  __/\_   _/| |__| / ____ \| |  | |
7 #              |_|  |_|  \___|\___|  |_|   \____/_/    \_\_|  |_|
9 #                   FreeFOAM: The Cross-Platform CFD Toolkit
11 # Copyright (C) 2008-2012 Michael Wild <themiwi@users.sf.net>
12 #                         Gerber van der Graaf <gerber_graaf@users.sf.net>
13 #-------------------------------------------------------------------------------
14 # License
15 #   This file is part of FreeFOAM.
17 #   FreeFOAM is free software: you can redistribute it and/or modify it
18 #   under the terms of the GNU General Public License as published by the
19 #   Free Software Foundation, either version 3 of the License, or (at your
20 #   option) any later version.
22 #   FreeFOAM is distributed in the hope that it will be useful, but WITHOUT
23 #   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
24 #   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
25 #   for more details.
27 #   You should have received a copy of the GNU General Public License
28 #   along with FreeFOAM.  If not, see <http://www.gnu.org/licenses/>.
29 #-------------------------------------------------------------------------------
31 set(SRCS
32   potential/potential.C
33   pairPotential/pairPotentialList/pairPotentialList.C
34   pairPotential/basic/pairPotential.C
35   pairPotential/basic/pairPotentialIO.C
36   pairPotential/basic/newPairPotential.C
37   pairPotential/derived/lennardJones/lennardJones.C
38   pairPotential/derived/maitlandSmith/maitlandSmith.C
39   pairPotential/derived/azizChen/azizChen.C
40   pairPotential/derived/exponentialRepulsion/exponentialRepulsion.C
41   pairPotential/derived/coulomb/coulomb.C
42   pairPotential/derived/dampedCoulomb/dampedCoulomb.C
43   pairPotential/derived/noInteraction/noInteraction.C
44   energyScalingFunction/basic/energyScalingFunction.C
45   energyScalingFunction/basic/newEnergyScalingFunction.C
46   energyScalingFunction/derived/shifted/shifted.C
47   energyScalingFunction/derived/shiftedForce/shiftedForce.C
48   energyScalingFunction/derived/noScaling/noScaling.C
49   energyScalingFunction/derived/sigmoid/sigmoid.C
50   energyScalingFunction/derived/doubleSigmoid/doubleSigmoid.C
51   tetherPotential/tetherPotentialList/tetherPotentialList.C
52   tetherPotential/basic/tetherPotential.C
53   tetherPotential/basic/newTetherPotential.C
54   tetherPotential/derived/harmonicSpring/harmonicSpring.C
55   tetherPotential/derived/restrainedHarmonicSpring/restrainedHarmonicSpring.C
56   tetherPotential/derived/pitchForkRing/pitchForkRing.C
57   electrostaticPotential/electrostaticPotential.C
58   )
60 set(HDRS
61   electrostaticPotential/electrostaticPotential.H
62   energyScalingFunction/basic/energyScalingFunction.H
63   energyScalingFunction/derived/doubleSigmoid/doubleSigmoid.H
64   energyScalingFunction/derived/noScaling/noScaling.H
65   energyScalingFunction/derived/shifted/shifted.H
66   energyScalingFunction/derived/shiftedForce/shiftedForce.H
67   energyScalingFunction/derived/sigmoid/sigmoid.H
68   pairPotential/basic/pairPotential.H
69   pairPotential/basic/pairPotentialI.H
70   pairPotential/derived/azizChen/azizChen.H
71   pairPotential/derived/coulomb/coulomb.H
72   pairPotential/derived/dampedCoulomb/dampedCoulomb.H
73   pairPotential/derived/exponentialRepulsion/exponentialRepulsion.H
74   pairPotential/derived/lennardJones/lennardJones.H
75   pairPotential/derived/maitlandSmith/maitlandSmith.H
76   pairPotential/derived/noInteraction/noInteraction.H
77   pairPotential/pairPotentialList/pairPotentialList.H
78   pairPotential/pairPotentialList/pairPotentialListI.H
79   potential/potential.H
80   potential/potentialI.H
81   tetherPotential/basic/tetherPotential.H
82   tetherPotential/derived/harmonicSpring/harmonicSpring.H
83   tetherPotential/derived/pitchForkRing/pitchForkRing.H
84   tetherPotential/derived/restrainedHarmonicSpring/restrainedHarmonicSpring.H
85   tetherPotential/tetherPotentialList/tetherPotentialList.H
86   tetherPotential/tetherPotentialList/tetherPotentialListI.H
87   )
89 # ------------------------- vim: set sw=2 sts=2 et: --------------- end-of-file