-
Notifications
You must be signed in to change notification settings - Fork 6
/
hydrotrend.h
55 lines (52 loc) · 1.67 KB
/
hydrotrend.h
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
/*-------------------------------------------------------------------------------------------
* hydrotrend.h
*
* Author: Albert Kettner, March 2006
*
* Declaration of parameters.
*
* Variable Def.Location Type Units Usage
* -------- ------------ ---- ----- -----
*
*-------------------------------------------------------------------------------------------*/
#ifndef HYDROTREND_H_
#define HYDROTREND_H_
#include "hydroreadclimate.h"
int hydrocommandline (int *argc, char **argv);
void hydrosetparams ();
int hydrosecurityinputcheck ();
int hydroreadinput (char* file);
int hydroreadhypsom (char* path, char* prefix);
int hydroreadearthquake (char* path, char* prefix);
int hydroreadclimate (gw_rainfall_etc* gw_rain, char* in_dir, char* in_file_prefix);
int hydrosetglobalpar ();
int hydrocheckinput ();
int hydroopenfiles ();
int hydrosetgeoparams (gw_rainfall_etc * gw_rain);
int hydrorandom ();
int hydroshoulder ();
int hydroclimate (gw_rainfall_etc * gw_rain);
int hydroweather (gw_rainfall_etc * gw_rain);
int hydrohypsom ();
int hydroglacial ();
int hydrosnow ();
int hydrorain ();
int hydrosumflow ();
int hydromaxevents ();
int hydrosedload (gw_rainfall_etc * gw_rain);
int hydrooutput ();
int hydroprintannual ();
int hydrocalqsnew ();
int hydroprintstat ();
int hydroswap ();
int hydrooutletfraction (int x);
int hydrosetnumberoutlet (int x);
int hydroqfractionshuffle (int k);
void hydroallocmemoutlet (int ep, int nepochs);
void hydroallocmemoutlet1 (int ep, int nepochs);
void hydrofreememoutlet (int j);
void hydrofreememoutlet1 (int ep);
int hydroshuffle (int dvals[31], int mnth);
int hydroexpdist (double pvals[31], int mnth);
void hydroinputalloc (int ep);
#endif /* */