forked from USEPA/Stormwater-Management-Model
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathHow-to-use-the-toolkit.dox
73 lines (52 loc) · 1.51 KB
/
How-to-use-the-toolkit.dox
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
/**
@page how-to-use How to Use the Toolkit
Full Function collection can be found @ref toolkitAPI.h
~~~~~~~~~~~~~~~{.c}
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "swmm5.h"
#include "toolkitAPI.h"
long newHour, oldHour = 0;
long theDay, theHour;
double elapsedTime = 0.0;
char *inputFile;
char *reportFile;
char *binaryFile;
inputFile = "<path2>/inputfile.inp";
reportFile = "<path2>/reportfile.rpt";
binaryFile = "<path2>/outputfile.out";
// Open the files & read input data
ErrorCode = swmm_open(inputFile, reportFile, binaryFile);
// Run the simulation if input data OK
if ( !ErrorCode )
{
int ndType;
double depth = 0;
swmm_getNodeType(0, &ndType);
printf("Node Type: %d", ndType); \\ Print node type (See SM_NodeType)
// Initialize values and Start the Simulation
ErrorCode = swmm_start(TRUE);
// Execute each time step until elapsed time is re-set to 0
if ( !ErrorCode )
{
do
{
ErrorCode = swmm_step(&elapsedTime);
swmm_getNodeResult(0, SM_NODEDEPTH, &depth) \\ Stream Results!
printf("Node Depth %lf", depth); \\ Print node result (See SM_NodeResult)
} while ( elapsedTime > 0.0 && !ErrorCode );
}
// Clean up
ErrorCode = swmm_end();
}
// Get Stats for Node
SM_NodeStats* Node0Stats;
swmm_getNodeStats(0, &Node0Stats);
printf("Node Max Depth %lf", Node0Stats->avgDepth);
// Report results
swmm_report();
// Close the system
swmm_close();
~~~~~~~~~~~~~~~
*/