ENinitH {epanet2toolkit} | R Documentation |
ENinitH
Initializes storage tank levels, link status and settings, and the simulation clock
time prior to running a hydraulic analysis.
ENinitH(flag)
flag |
A two-digit flag indicating if hydraulic results will be saved to the hydraulics file (rightmost digit) and if link flows should be re-initialized. |
Call ENinitH
prior to running a hydraulic analysis using ENrunH
and
ENnextH
.ENopenH
must have been called prior to calling ENinitH
. Do not call
ENinitH
if a complete hydraulic analysis is being made with a call to ENsolveH
.
Values of flag have the following meanings:
00 | do not re-initialize flows, do not save results to file |
01 | do not re-initialize flows, save results to file |
10 | re-initialize flows, do not save results to file |
11 | re-initialize flows, save results to file |
Set flag
to 1 (or 11) if you will be making a subsequent water quality run, using
ENreport
to generate a report, or using ENsavehydfile
to save the binary
hydraulics file.
ENopenH
, ENrunH
, ENnextH
, ENcloseH
# path to Net1.inp example file included with this package inp <- file.path( find.package("epanet2toolkit"), "extdata","Net1.inp") ENopen( inp, "Net1.rpt") ENopenH() ENinitH(0) ENrunH() ENcloseH() ENclose()