-
Notifications
You must be signed in to change notification settings - Fork 0
/
proc_obj.c
525 lines (498 loc) · 14.2 KB
/
proc_obj.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
#include <stdio.h>
#include "ugm_defines.h"
#include "ugm_macros.h"
#include "coeff_obj.h"
#include "proc_obj.h"
/*****************************************************************************\
*******************************************************************************
** **
** SCCS ID **
** **
*******************************************************************************
\*****************************************************************************/
char proc_obj_c_sccs_id[] = "@(#)proc_obj.c 1.84 12/4/00";
/*****************************************************************************\
*******************************************************************************
** **
** STATIC MEMORY FOR THIS OBJECT **
** **
*******************************************************************************
\*****************************************************************************/
static int type_of_processing;
static int total_runs;
static int total_runs_exec_this_cpu;
static int last_run;
static int last_mc;
static int current_run;
static int current_monte_carlo;
static int current_year;
static int stop_year;
static BOOLEAN restart_flag;
static BOOLEAN last_run_flag;
static BOOLEAN last_mc_flag;
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_MemoryLog
** PURPOSE: log memory map to FILE* fp
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
void
proc_MemoryLog (FILE * fp)
{
LOG_MEM (fp, &type_of_processing, sizeof (int), 1);
LOG_MEM (fp, &total_runs, sizeof (int), 1);
LOG_MEM (fp, &last_run, sizeof (int), 1);
LOG_MEM (fp, &last_mc, sizeof (int), 1);
LOG_MEM (fp, ¤t_run, sizeof (int), 1);
LOG_MEM (fp, ¤t_monte_carlo, sizeof (int), 1);
LOG_MEM (fp, ¤t_year, sizeof (int), 1);
LOG_MEM (fp, &stop_year, sizeof (int), 1);
LOG_MEM (fp, &last_run_flag, sizeof (BOOLEAN), 1);
LOG_MEM (fp, &last_mc_flag, sizeof (BOOLEAN), 1);
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_SetRestartFlag
** PURPOSE: set the restart flag variable
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
void
proc_SetRestartFlag (BOOLEAN i)
{
restart_flag = i;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_GetRestartFlag
** PURPOSE: return the restart flag variable
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
BOOLEAN
proc_GetRestartFlag ()
{
return restart_flag;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_SetProcessingType
** PURPOSE: set the processing type variable
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
void
proc_SetProcessingType (int i)
{
type_of_processing = i;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_SetTotalRuns
** PURPOSE: count the total # of runs
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
void
proc_SetTotalRuns ()
{
int i;
int j;
int k;
int l;
int m;
int x1 = 0;
int x2 = 0;
int x3 = 0;
int x4 = 0;
int x5 = 0;
for (i = coeff_GetStartDiffusion ();
i <= coeff_GetStopDiffusion ();
i += coeff_GetStepDiffusion ())
{
x1++;
}
for (j = coeff_GetStartBreed ();
j <= coeff_GetStopBreed ();
j += coeff_GetStepBreed ())
{
x2++;
}
for (k = coeff_GetStartSpread ();
k <= coeff_GetStopSpread ();
k += coeff_GetStepSpread ())
{
x3++;
}
for (l = coeff_GetStartSlopeResist ();
l <= coeff_GetStopSlopeResist ();
l += coeff_GetStepSlopeResist ())
{
x4++;
}
for (m = coeff_GetStartRoadGravity ();
m <= coeff_GetStopRoadGravity ();
m += coeff_GetStepRoadGravity ())
{
x5++;
}
x1 = MAX (x1, 1);
x2 = MAX (x2, 1);
x3 = MAX (x3, 1);
x4 = MAX (x4, 1);
x5 = MAX (x5, 1);
total_runs = x1 * x2 * x3 * x4 * x5;
last_run_flag = FALSE;
last_mc_flag = FALSE;
last_run = total_runs - 1;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_SetCurrentRun
** PURPOSE: set the current run variable, current_run
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
void
proc_SetCurrentRun (int i)
{
current_run = i;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_SetCurrentMonteCarlo
** PURPOSE: set current monte carlo variable
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
void
proc_SetCurrentMonteCarlo (int i)
{
current_monte_carlo = i;
proc_SetLastMonteCarloFlag ();
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_SetCurrentYear
** PURPOSE: set current year
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
void
proc_SetCurrentYear (int i)
{
current_year = i;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_SetStopYear
** PURPOSE: set the stop year
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
void
proc_SetStopYear (int i)
{
stop_year = i;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_GetProcessingType
** PURPOSE: return the processing type
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
int
proc_GetProcessingType ()
{
return type_of_processing;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_GetTotalRuns
** PURPOSE: return total run count
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
int
proc_GetTotalRuns ()
{
return total_runs;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_GetCurrentRun
** PURPOSE: return the current run
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
int
proc_GetCurrentRun ()
{
return current_run;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_GetCurrentMonteCarlo
** PURPOSE: return the current monte carlo
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
int
proc_GetCurrentMonteCarlo ()
{
return current_monte_carlo;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_GetCurrentYear
** PURPOSE: return the current year
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
int
proc_GetCurrentYear ()
{
return current_year;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_GetStopYear
** PURPOSE: return the stop year
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
int
proc_GetStopYear ()
{
return stop_year;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_GetLastRun
** PURPOSE: return last run count
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
int
proc_GetLastRun ()
{
return last_run;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_GetLastRunFlag
** PURPOSE: return last run flag; TRUE if this is the last run
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
BOOLEAN
proc_GetLastRunFlag ()
{
return last_run_flag;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_SetLastMonteCarlo
** PURPOSE: set last monte carlo run
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
void
proc_SetLastMonteCarlo (int val)
{
last_mc = val;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_GetLastMonteCarloFlag
** PURPOSE: return last monte carlo flag
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
BOOLEAN
proc_GetLastMonteCarloFlag ()
{
return last_mc_flag;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_SetNumRunsExecThisCPU
** PURPOSE: set the num runs executed by this cpu
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
void
proc_SetNumRunsExecThisCPU (int val)
{
total_runs_exec_this_cpu = val;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_GetNumRunsExecThisCPU
** PURPOSE: return the num runs executed by this cpu
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
int
proc_GetNumRunsExecThisCPU ()
{
return total_runs_exec_this_cpu;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_IncrementNumRunsExecThisCPU
** PURPOSE: increment the num runs executed by this cpu
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
void
proc_IncrementNumRunsExecThisCPU ()
{
total_runs_exec_this_cpu++;
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_IncrementCurrentRun
** PURPOSE: increment current run variable
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
int
proc_IncrementCurrentRun ()
{
if ((++current_run) == last_run)
{
last_run_flag = TRUE;
}
return (current_run);
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_SetLastMonteCarloFlag
** PURPOSE: increment current monte carlo variable
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
int
proc_SetLastMonteCarloFlag ()
{
if ((current_monte_carlo) == last_mc)
{
last_mc_flag = TRUE;
}
return (current_monte_carlo);
}
/******************************************************************************
*******************************************************************************
** FUNCTION NAME: proc_IncrementCurrentYear
** PURPOSE: increment current year variable
** AUTHOR: Keith Clarke
** PROGRAMMER: Tommy E. Cathey of NESC (919)541-1500
** CREATION DATE: 11/11/1999
** DESCRIPTION:
**
**
*/
int
proc_IncrementCurrentYear ()
{
return (++current_year);
}