Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #include "restrainedHarmonicSpring.H"
00027 #include <OpenFOAM/addToRunTimeSelectionTable.H>
00028
00029
00030
00031 namespace Foam
00032 {
00033 namespace tetherPotentials
00034 {
00035
00036
00037
00038 defineTypeNameAndDebug(restrainedHarmonicSpring, 0);
00039
00040 addToRunTimeSelectionTable
00041 (
00042 tetherPotential,
00043 restrainedHarmonicSpring,
00044 dictionary
00045 );
00046
00047
00048
00049
00050 restrainedHarmonicSpring::restrainedHarmonicSpring
00051 (
00052 const word& name,
00053 const dictionary& tetherPotentialProperties
00054 )
00055 :
00056 tetherPotential(name, tetherPotentialProperties),
00057 restrainedHarmonicSpringCoeffs_
00058 (
00059 tetherPotentialProperties.subDict(typeName + "Coeffs")
00060 ),
00061 springConstant_
00062 (
00063 readScalar(restrainedHarmonicSpringCoeffs_.lookup("springConstant"))
00064 ),
00065 rR_
00066 (
00067 readScalar(restrainedHarmonicSpringCoeffs_.lookup("rR"))
00068 )
00069 {}
00070
00071
00072
00073 scalar restrainedHarmonicSpring::energy(const vector r) const
00074 {
00075 scalar magR = mag(r);
00076
00077 if (magR < rR_)
00078 {
00079 return 0.5 * springConstant_ * magSqr(r);
00080 }
00081 else
00082 {
00083 return 0.5 * springConstant_ * rR_ * rR_
00084 + springConstant_ * rR_ * (magR - rR_);
00085 }
00086 }
00087
00088
00089 vector restrainedHarmonicSpring::force(const vector r) const
00090 {
00091 scalar magR = mag(r);
00092
00093 if (magR < rR_)
00094 {
00095 return -springConstant_ * r;
00096 }
00097 else
00098 {
00099 return -springConstant_ * rR_ * r / magR;
00100 }
00101 }
00102
00103
00104 bool restrainedHarmonicSpring::read
00105 (
00106 const dictionary& tetherPotentialProperties
00107 )
00108 {
00109 tetherPotential::read(tetherPotentialProperties);
00110
00111 restrainedHarmonicSpringCoeffs_ =
00112 tetherPotentialProperties.subDict(typeName + "Coeffs");
00113
00114 restrainedHarmonicSpringCoeffs_.lookup("springConstant") >> springConstant_;
00115 restrainedHarmonicSpringCoeffs_.lookup("rR") >> rR_;
00116
00117 return true;
00118 }
00119
00120
00121
00122
00123 }
00124 }
00125
00126