-
Notifications
You must be signed in to change notification settings - Fork 0
/
hill6.c
134 lines (113 loc) · 2.71 KB
/
hill6.c
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
#include "hill6.h"
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <float.h>
#define H 6.6260755e-27
#define K 1.380658e-16
#define TBG 2.73
#define NSIG 2.0
static double *velocity_array;
static double *temperature_array;
static double *hill_array;
static double frequency;
static int nchan;
static double vrange[2];
static double lsrrange[2];
static double jfunc(double t, double nu) {
double to;
if(nu<1.0e-6) return t;
to = H*nu/K;
return to/(exp(to/t)-1.0);
}
void hill6_init(int channels, double *varray, double *tarray, double nu, double vmin, double vmax) {
hill_array = malloc(channels*sizeof(double));
if(hill_array==NULL) {
fprintf(stderr, "hill6_init: Out of memory.\n");
exit(1);
}
velocity_array=varray;
temperature_array=tarray;
nchan = channels;
frequency = nu;
vrange[0]=vmin;
vrange[1]=vmax;
lsrrange[0]=vmin+2.0*(vmax-vmin)/6.0;
lsrrange[1]=vmax-2.0*(vmax-vmin)/6.0;
}
void hill6_free() {
free(hill_array);
}
double *hill6_getfit() {
return hill_array;
}
double hill6_model(double tau_core, double tau_env, double v_lsr, double v_in, double sigma, double tpeak) {
double taufr;
double tauF;
/* double tauR; */
int i;
/* double vr; */
double vf;
double resrms;
double resid;
double sub;
vf = v_lsr+v_in;
/* vr = v_lsr-v_in; */
resrms=0.0;
for(i=0;i<nchan;i++) {
taufr = tau_core*exp(-pow((velocity_array[i]-v_lsr)/sigma,2.0)/2.0);
tauF = tau_env*exp(-pow((velocity_array[i]-vf)/sigma,2.0)/2.0);
/* tauR = tau_env*exp(-pow((velocity_array[i]-vr)/sigma,2.0)/2.0); */
if(taufr>1.0e-4) {
sub = (1.0-exp(-taufr))/taufr;
}
else {
sub = 1.0;
}
hill_array[i]=(jfunc(tpeak,frequency)-jfunc(TBG,frequency))*sub*(1.0-exp(-taufr))*exp(-tauF);
resid=temperature_array[i]-hill_array[i];
if(velocity_array[i]>vrange[0] && velocity_array[i]<vrange[1]) {
resrms+=resid*resid;
}
}
return resrms;
}
/* Solvable 6 parameter hill model, calculates fit and returns rms
residual.
parameters:
0: tau_core
1: tau_env
2: v_lsr
3: v_in -- infall in the envelope
4: sigma
5: Tpeak
*/
double hill6_evaluate(double *params) {
double tau_core = params[0];
double tau_env = params[1];
double v_lsr = params[2];
double v_in = params[3];
double sigma = params[4];
double tpeak = params[5];
double resrms;
if(sigma<0.0) {
return DBL_MAX;
}
if(v_in<0.0) {
return DBL_MAX;
}
if(v_lsr<lsrrange[0] || v_lsr>lsrrange[1]) {
return DBL_MAX;
}
if(v_in>NSIG*sigma) {
return DBL_MAX;
}
if(tau_core<0.0) {
return DBL_MAX;
}
if(tau_env<0.0) {
return DBL_MAX;
}
resrms = hill6_model(tau_core,tau_env,v_lsr,v_in,sigma,tpeak);
return resrms;
}