-
Notifications
You must be signed in to change notification settings - Fork 0
/
sonde_sim.c
216 lines (175 loc) · 4.48 KB
/
sonde_sim.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#include <math.h>
#include <errno.h>
#include <string.h>
struct opt
{
int sondVers;
int sleepTime;
};
static
void printHelp(char *progName)
{
fprintf(stderr,"usage: %s [-v<version>] [-w<seconds>] [-h]\n\n",progName);
fprintf(stderr,"-v <version>\tset the version to simulate; standard: 8\n");
fprintf(stderr,"\t\t<=7: simulate GS07\n");
fprintf(stderr,"\t\t>=8: simulate GS08\n");
fprintf(stderr,"-w <seconds>\tset the time befor next output is generated; standard: 1\n");
fprintf(stderr,"-h\t\tprint this help\n");
fprintf(stderr,"\n");
exit(0);
}
static
void parseopt(int argc, char *argv[], struct opt *opts)
{
opts->sondVers = 8;
opts->sleepTime = 1;
int o;
while(1)
{
o=getopt(argc, argv, "hv:w:");
if(o < 0)
break;
switch(o)
{
case 'v':
opts->sondVers = atoi(optarg);
break;
case 'w':
opts->sleepTime = atoi(optarg);
if(opts->sleepTime <= 0)
opts->sleepTime = 1;
break;
case 'h':
default:
printHelp(argv[0]);
break;
}
}
}
static
int generateND(int min, int max)
{
static int i = 0;
i++;
i %= 20;
return i;
int nd = min;
double scl;
scl = (double) (max-min)/(RAND_MAX-0);
nd = scl * random()+min;
return nd;
}
static
double generateTemperature(double t1, double maxChange, double minChange, double min, double max)
{
/* t1: aktuelle Temperatur */
/* maxChange: wie viel soll sich der Wert maximal veraendern ? */
/* minChange: wie viel soll sich der Wert minimal veraendern ? */
/* max: wie hoch ist die maximaltemperatur ? */
/* min: wie niedrig ist die minimaltemperatur ? */
double randChange; /* um wie viel veraendern? */
int sign; /* plus(1) oder minus(0) ? */
int change; /* ueberhaupt veraendern ? */
double scl; /* Scale factor */
scl = (double) (maxChange-minChange)/(RAND_MAX-0);
change = random() % 2;
if(change == 0)
return t1; /* Wert nicht aendern */
sign = random() % 2; /* 1 == +; 0 == - */
randChange = scl *random()+minChange;
if(t1 <= min)
sign = 1;
else if(t1 >= max)
sign = 0;
switch(sign)
{
case 0:
t1 -= randChange;
break;
case 1:
t1 += randChange;
break;
default:
fprintf(stderr,"%s: something went terribly wrong !\n",__func__);
return t1;
}
return t1;
}
static
double generateFeuchte(double f, double maxChange, double minChange, double min, double max)
{
/* f: aktuelle feuchte */
/* maxChange: wie viel soll sich der Wert maximal veraendern ? */
/* minChange: wie viel soll sich der Wert minimal veraendern ? */
/* max: wie hoch ist die maximaltemperatur ? */
/* min: wie niedrig ist die minimaltemperatur ? */
static int cnt = -1;
/* nur bei jedem vielfachen von 5. aendern */
cnt++;
cnt %= 5;
if(cnt != 0)
return f;
f = generateTemperature(f, maxChange, minChange, min, max);
return f;
}
static
double generateDruck(double d, double maxChange, double minChange, double min, double max)
{
/* d: aktuelle feuchte */
/* maxChange: wie viel soll sich der Wert maximal veraendern ? */
/* minChange: wie viel soll sich der Wert minimal veraendern ? */
/* max: wie hoch ist die maximaltemperatur ? */
/* min: wie niedrig ist die minimaltemperatur ? */
static int cnt = -1;
/* nur bei jedem vielfachen von 5. aendern */
cnt++;
cnt %= 5;
if(cnt != 0)
return d;
d = generateTemperature(d, maxChange, minChange, min, max);
return d;
}
int main(int argc, char *argv[])
{
static int cnt = 0;
int nd; /* niederdosis */
double t1, t2, t3; /* temperaturen */
double d,f; /* Druck, Rel. Feuchte */
double x,y,z; /* beschleunigung */
struct opt opts;
parseopt(argc,argv,&opts);
srandom(time(NULL));
nd = 0;
t1 = 20.0;
t2 = 20.0;
t3 = 20.0;
d = 1000.0;
f = 40.0;
x = 0.0;
y = 0.0;
z = 0.0;
while(1)
{
cnt++;
if (cnt == 11)
cnt -= 10;
nd = generateND(0,10);
t1 = generateTemperature(t1, 0.5, 0.01 , -20, +50);
f = generateFeuchte(f, 0.5, 0.05 , 10, +100);
if(opts.sondVers == 7)
{
t2 = generateTemperature(t2, 1, 0.1 , -20, +50);
t3 = generateTemperature(t3, 2, 0.5 , -50, +80);
d = generateDruck(d, 0.1, 0.05 , 990, 1100);
}
printf("%d %g %g %g %g %g %g %g %g\n",
nd, t1, t2, t3, d, f, x, y, z);
fflush(stdout);
sleep(opts.sleepTime);
}
return EXIT_SUCCESS;
}