ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/hydrodynamics/Ellipsoid.cpp
Revision: 2759
Committed: Wed May 17 21:51:42 2006 UTC (18 years, 1 month ago) by tim
File size: 4568 byte(s)
Log Message:
Adding single precision capabilities to c++ side

File Contents

# User Rev Content
1 gezelter 2752 /*
2     * Copyright (c) 2005 The University of Notre Dame. All Rights Reserved.
3     *
4     * The University of Notre Dame grants you ("Licensee") a
5     * non-exclusive, royalty free, license to use, modify and
6     * redistribute this software in source and binary code form, provided
7     * that the following conditions are met:
8     *
9     * 1. Acknowledgement of the program authors must be made in any
10     * publication of scientific results based in part on use of the
11     * program. An acceptable form of acknowledgement is citation of
12     * the article in which the program was described (Matthew
13     * A. Meineke, Charles F. Vardeman II, Teng Lin, Christopher
14     * J. Fennell and J. Daniel Gezelter, "OOPSE: An Object-Oriented
15     * Parallel Simulation Engine for Molecular Dynamics,"
16     * J. Comput. Chem. 26, pp. 252-271 (2005))
17     *
18     * 2. Redistributions of source code must retain the above copyright
19     * notice, this list of conditions and the following disclaimer.
20     *
21     * 3. Redistributions in binary form must reproduce the above copyright
22     * notice, this list of conditions and the following disclaimer in the
23     * documentation and/or other materials provided with the
24     * distribution.
25     *
26     * This software is provided "AS IS," without a warranty of any
27     * kind. All express or implied conditions, representations and
28     * warranties, including any implied warranty of merchantability,
29     * fitness for a particular purpose or non-infringement, are hereby
30     * excluded. The University of Notre Dame and its licensors shall not
31     * be liable for any damages suffered by licensee as a result of
32     * using, modifying or distributing the software or its
33     * derivatives. In no event will the University of Notre Dame or its
34     * licensors be liable for any lost revenue, profit or data, or for
35     * direct, indirect, special, consequential, incidental or punitive
36     * damages, however caused and regardless of the theory of liability,
37     * arising out of the use of or inability to use software, even if the
38     * University of Notre Dame has been advised of the possibility of
39     * such damages.
40     */
41    
42     #include "hydrodynamics/Ellipsoid.hpp"
43     #include "utils/OOPSEConstant.hpp"
44     #include "math/LU.hpp"
45    
46     namespace oopse {
47    
48 tim 2759 Ellipsoid::Ellipsoid(Vector3d origin, RealType rMajor, RealType rMinor,Mat3x3d rotMat)
49 gezelter 2752 : origin_(origin), rMajor_(rMajor), rMinor_(rMinor), rotMat_(rotMat) {
50    
51     }
52     bool Ellipsoid::isInterior(Vector3d pos) {
53     Vector3d r = pos - origin_;
54     Vector3d rbody = rotMat_ * r;
55 tim 2759 RealType xovera = rbody[0]/rMajor_;
56     RealType yovera = rbody[1]/rMajor_;
57     RealType zoverb = rbody[2]/rMinor_;
58 gezelter 2752
59     bool result;
60     if (xovera*xovera + yovera*yovera + zoverb*zoverb < 1)
61     result = true;
62     else
63     result = false;
64    
65     return result;
66     }
67    
68     std::pair<Vector3d, Vector3d> Ellipsoid::getBoundingBox() {
69    
70     std::pair<Vector3d, Vector3d> boundary;
71     //make a cubic box
72 tim 2759 RealType rad = rMajor_ > rMinor_ ? rMajor_ : rMinor_;
73 gezelter 2752 Vector3d r(rad, rad, rad);
74     boundary.first = origin_ - r;
75     boundary.second = origin_ + r;
76     return boundary;
77     }
78    
79 tim 2759 HydroProps Ellipsoid::getHydroProps(RealType viscosity, RealType temperature) {
80 gezelter 2752
81 tim 2759 RealType a = rMinor_;
82     RealType b = rMajor_;
83     RealType a2 = a * a;
84     RealType b2 = b* b;
85 gezelter 2752
86 tim 2759 RealType p = a /b;
87     RealType S;
88 gezelter 2752 if (p > 1.0) { //prolate
89     S = 2.0/sqrt(a2 - b2) * log((a + sqrt(a2-b2))/b);
90     } else { //oblate
91     S = 2.0/sqrt(b2 - a2) * atan(sqrt(b2-a2)/a);
92     }
93    
94 tim 2759 RealType P = 1.0/(a2 - b2) * (S - 2.0/a);
95     RealType Q = 0.5/(a2-b2) * (2.0*a/b2 - S);
96 gezelter 2752
97 tim 2759 RealType transMinor = 16.0 * NumericConstant::PI * viscosity * (a2 - b2) /((2.0*a2-b2)*S -2.0*a);
98     RealType transMajor = 32.0 * NumericConstant::PI * viscosity * (a2 - b2) /((2.0*a2-3.0*b2)*S +2.0*a);
99     RealType rotMinor = 32.0/3.0 * NumericConstant::PI * viscosity *(a2 - b2) * b2 /(2.0*a -b2*S);
100     RealType rotMajor = 32.0/3.0 * NumericConstant::PI * viscosity *(a2*a2 - b2*b2)/((2.0*a2-b2)*S-2.0*a);
101 gezelter 2752
102    
103     HydroProps props;
104    
105     props.Xi(0,0) = transMajor;
106     props.Xi(1,1) = transMajor;
107     props.Xi(2,2) = transMinor;
108     props.Xi(3,3) = rotMajor;
109     props.Xi(4,4) = rotMajor;
110     props.Xi(5,5) = rotMinor;
111    
112 tim 2759 const RealType convertConstant = 6.023; //convert poise.angstrom to amu/fs
113 gezelter 2752 props.Xi *= convertConstant;
114    
115     Mat6x6d XiCopy = props.Xi;
116     invertMatrix(XiCopy, props.D);
117 tim 2759 RealType kt = OOPSEConstant::kB * temperature;
118 gezelter 2752 props.D *= kt;
119     props.Xi *= OOPSEConstant::kb * temperature;
120    
121     return props;
122    
123     }
124     }