source: ThirdParty/mpqc_open/src/lib/chemistry/molecule/localdef.h@ 7516f6

Action_Thermostats Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.1 ChemicalSpaceEvaluator Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Exclude_Hydrogens_annealWithBondGraph Fix_Verbose_Codepatterns ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion Gui_displays_atomic_force_velocity JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool PythonUI_with_named_parameters Recreated_GuiChecks StoppableMakroAction TremoloParser_IncreasedPrecision
Last change on this file since 7516f6 was 860145, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '0b990dfaa8c6007a996d030163a25f7f5fc8a7e7' as 'ThirdParty/mpqc_open'

  • Property mode set to 100644
File size: 2.9 KB
Line 
1//
2// localdef.h
3//
4// Copyright (C) 1996 Limit Point Systems, Inc.
5//
6// Author: Edward Seidl <seidl@janed.com>
7// Maintainer: LPS
8//
9// This file is part of the SC Toolkit.
10//
11// The SC Toolkit is free software; you can redistribute it and/or modify
12// it under the terms of the GNU Library General Public License as published by
13// the Free Software Foundation; either version 2, or (at your option)
14// any later version.
15//
16// The SC Toolkit is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU Library General Public License for more details.
20//
21// You should have received a copy of the GNU Library General Public License
22// along with the SC Toolkit; see the file COPYING.LIB. If not, write to
23// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24//
25// The U.S. Government is granted a limited license as per AL 91-7.
26//
27
28// some inline functions for dealing with 3 dimensional vectors
29
30#ifndef _localdef_h
31#define _localdef_h
32
33#include <math.h>
34
35namespace sc {
36
37static const double pi=M_PI;
38static const double pih=M_PI_2;
39static const double tpi=2.0*pi;
40
41static const double bohr = 0.52917706;
42
43// /////////////////////////////////////////////////////////
44
45static inline void
46delta(double u[], const double a[], const double b[])
47{
48 u[0]=a[0]-b[0];
49 u[1]=a[1]-b[1];
50 u[2]=a[2]-b[2];
51}
52
53// /////////////////////////////////////////////////////////
54
55// returns the distance between two points
56static inline double
57dist(const double a[], const double b[])
58{
59 double x,y,z;
60 return (sqrt((x=a[0]-b[0])*x + (y=a[1]-b[1])*y + (z=a[2]-b[2])*z));
61}
62
63// /////////////////////////////////////////////////////////
64
65// given sin(x) returns cos(x)
66static inline double
67s2(double x)
68{
69 double tmp = 1.0 - x*x;
70 if (tmp < 0.0) tmp = 0.0;
71 return sqrt(tmp);
72}
73
74// /////////////////////////////////////////////////////////
75
76// returns the dot product for two vectors
77static inline double
78scalar(const double a[], const double b[])
79{
80 double x = a[0]*b[0];
81 double x1 = a[1]*b[1];
82 x += a[2]*b[2];
83 return x+x1;
84}
85
86// /////////////////////////////////////////////////////////
87
88// given vectors a and b, returns a unit vector directed along the difference
89// of the two vectors
90static inline void
91norm(double u[], const double a[], const double b[])
92{
93 delta(u,a,b);
94 double x = 1.0/sqrt(scalar(u,u));
95 u[0] *= x; u[1] *= x; u[2] *= x;
96}
97
98// /////////////////////////////////////////////////////////
99
100// given two vectors, returns the normalized cross product of those vectors
101static inline void
102normal(const double a[], const double b[], double w[])
103{
104 w[0] = a[1]*b[2]-a[2]*b[1];
105 w[1] = a[2]*b[0]-a[0]*b[2];
106 w[2] = a[0]*b[1]-a[1]*b[0];
107 double x = 1.0/sqrt(scalar(w,w));
108 w[0] *= x; w[1] *= x; w[2] *= x;
109}
110
111}
112
113#endif
114
115// Local Variables:
116// mode: c++
117// c-file-style: "ETS"
118// End:
Note: See TracBrowser for help on using the repository browser.