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
|
/*
* utils.c
*
* Utility stuff
*
* (c) 2007-2008 Thomas White <taw27@cam.ac.uk>
*
* dtr - Diffraction Tomography Reconstruction
*
*/
#include <math.h>
#include <gsl/gsl_matrix.h>
#include <string.h>
#include "utils.h"
/* Return the MOST POSITIVE of two numbers */
unsigned int biggest(signed int a, signed int b) {
if ( a>b ) {
return a;
}
return b;
}
/* Return the LEAST POSITIVE of two numbers */
unsigned int smallest(signed int a, signed int b) {
if ( a<b ) {
return a;
}
return b;
}
double distance(double x1, double y1, double x2, double y2) {
return sqrt((x2-x1)*(x2-x1) + (y2-y1)*(y2-y1));
}
double modulus(double x, double y, double z) {
return sqrt(x*x + y*y + z*z);
}
double distance3d(double x1, double y1, double z1, double x2, double y2, double z2) {
return modulus(x1-x2, y1-y2, z1-z2);
}
/* Angle between two vectors. Answer in radians */
double angle_between(double x1, double y1, double z1, double x2, double y2, double z2) {
double mod1 = modulus(x1, y1, z1);
double mod2 = modulus(x2, y2, z2);
return acos( (x1*x2 + y1*y2 + z1*z2) / (mod1*mod2) );
}
/* As above, answer in degrees */
double angle_between_d(double x1, double y1, double z1, double x2, double y2, double z2) {
return rad2deg(angle_between(x1, y1, z1, x2, y2, z2));
}
/* Wavelength of an electron (in m) given accelerating potential (in V) */
double lambda(double V) {
double m = 9.110E-31;
double h = 6.625E-34;
double e = 1.60E-19;
double c = 2.998E8;
return h / sqrt(2*m*e*V*(1+((e*V) / (2*m*c*c))));
}
size_t skipspace(const char *s) {
size_t i;
for ( i=0; i<strlen(s); i++ ) {
if ( (s[i] != ' ') && (s[i] != '\t') ) return i;
}
return strlen(s);
}
void chomp(char *s) {
size_t i;
if ( !s ) return;
for ( i=0; i<strlen(s); i++ ) {
if ( (s[i] == '\n') || (s[i] == '\r') ) {
s[i] = '\0';
return;
}
}
}
void matrix_vector_show(const gsl_matrix *m, const gsl_vector *v, const char *prefix) {
int i, j;
if ( prefix == NULL ) prefix = "";
for ( i=0; i<m->size1; i++ ) {
printf("%s[ ", prefix);
for ( j=0; j<m->size2; j++ ) {
printf("%12.8f ", gsl_matrix_get(m, i, j));
}
printf(" ] [ q%i ] = [ %15.2f ]\n", i+1, gsl_vector_get(v, i));
}
}
int sign(double a) {
if ( a < 0 ) return -1;
if ( a > 0 ) return +1;
return 0;
}
|