ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/types/HarmonicBendType.hpp
(Generate patch)

Comparing trunk/OOPSE-4/src/types/HarmonicBendType.hpp (file contents):
Revision 2204 by gezelter, Fri Apr 15 22:04:00 2005 UTC vs.
Revision 2759 by tim, Wed May 17 21:51:42 2006 UTC

# Line 61 | Line 61 | namespace oopse {
61  
62    public:
63  
64 <    HarmonicBendType(double theta, double k) : BendType(theta) , k_(k){
64 >    HarmonicBendType(RealType theta, RealType k) : BendType(theta) , k_(k){
65      }
66  
67 <    void setForceConstant(double k) {k_ = k; }
67 >    void setForceConstant(RealType k) {k_ = k; }
68  
69 <    double getForceConstant() {return k_;}
69 >    RealType getForceConstant() {return k_;}
70  
71 <    void calcForce(double theta, double& V, double& dVdr) {
72 <      double delta = theta - theta0_;
71 >    void calcForce(RealType theta, RealType& V, RealType& dVdr) {
72 >      RealType delta = theta - theta0_;
73  
74        V = 0.5 * k_ * delta * delta;
75        dVdr = k_ * delta;
76      }
77                  
78    private:
79 <    double k_;
79 >    RealType k_;
80  
81    };
82  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines