-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvec_utils_CPU.cpp
More file actions
149 lines (107 loc) · 2.7 KB
/
vec_utils_CPU.cpp
File metadata and controls
149 lines (107 loc) · 2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/********************************************************************************
*
* Copyright (C) 2015 Culham Centre for Fusion Energy,
* United Kingdom Atomic Energy Authority, Oxfordshire OX14 3DB, UK
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
********************************************************************************
*
* Program: SPILADY - A Spin-Lattice Dynamics Simulation Program
* Version: 1.0
* Date: Aug 2015
* Author: Pui-Wai (Leo) MA
* Contact: info@spilady.ccfe.ac.uk
* Address: Culham Centre for Fusion Energy, OX14 3DB, United Kingdom
*
********************************************************************************/
#include "spilady.h"
vector vec_add(vector a, vector b){
vector c;
c.x = a.x + b.x;
c.y = a.y + b.y;
c.z = a.z + b.z;
return c;
}
vector vec_sub(vector a, vector b){
vector c;
c.x = a.x - b.x;
c.y = a.y - b.y;
c.z = a.z - b.z;
return c;
}
vector vec_cross(vector a, vector b){
vector c;
c.x = a.y*b.z - b.y*a.z;
c.y = a.z*b.x - b.z*a.x;
c.z = a.x*b.y - b.x*a.y;
return c;
}
vector vec_times(double a, vector b){
vector c;
c.x = a*b.x;
c.y = a*b.y;
c.z = a*b.z;
return c;
}
vector vec_divide(vector a, double b){
vector c;
c.x = a.x/b;
c.y = a.y/b;
c.z = a.z/b;
return c;
}
double vec_dot(vector a, vector b){
double c;
c = a.x*b.x
+ a.y*b.y
+ a.z*b.z;
return c;
}
double vec_sq(vector a){
double c;
c = a.x*a.x + a.y*a.y + a.z*a.z;
return c;
}
double vec_length(vector a){
double c;
c = sqrt(vec_sq(a));
return c;
}
vector vec_zero(){
vector c;
c.x = 0e0;
c.y = 0e0;
c.z = 0e0;
return c;
}
vector vec_init(double x, double y, double z){
vector c;
c.x = x;
c.y = y;
c.z = z;
return c;
}
double vec_volume(vector a){
return a.x*a.y*a.z;
}
box_vector inverse_box_vector(box_vector d){
box_vector Inv_d;
Inv_d.xx = 1e0/d.xx;
Inv_d.yx = -d.yx/(d.xx*d.yy);
Inv_d.yy = 1e0/d.yy;
Inv_d.zx = (d.yx*d.zy - d.yy*d.zx)/(d.xx*d.yy*d.zz);
Inv_d.zy = -d.zy/(d.yy*d.zz);
Inv_d.zz = 1e0/d.zz;
return Inv_d;
}