Updates to toolkit documentation

This commit is contained in:
Lew Rossman
2025-03-30 10:06:29 -04:00
parent bd97f66097
commit d4c41a2d52
6 changed files with 112 additions and 73 deletions

View File

@@ -1528,7 +1528,7 @@ HTML_COLORSTYLE_GAMMA = 80
# The default value is: YES. # The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES. # This tag requires that the tag GENERATE_HTML is set to YES.
HTML_DYNAMIC_MENUS = YES HTML_DYNAMIC_MENUS = NO
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the # documentation will contain sections that can be hidden and shown after the
@@ -1554,7 +1554,7 @@ HTML_CODE_FOLDING = YES
# The default value is: YES. # The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES. # This tag requires that the tag GENERATE_HTML is set to YES.
HTML_COPY_CLIPBOARD = YES HTML_COPY_CLIPBOARD = NO
# Doxygen stores a couple of settings persistently in the browser (via e.g. # Doxygen stores a couple of settings persistently in the browser (via e.g.
# cookies). By default these settings apply to all HTML pages generated by # cookies). By default these settings apply to all HTML pages generated by
@@ -1815,7 +1815,7 @@ DISABLE_INDEX = YES
# The default value is: YES. # The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES. # This tag requires that the tag GENERATE_HTML is set to YES.
GENERATE_TREEVIEW = YES GENERATE_TREEVIEW = NO
# When both GENERATE_TREEVIEW and DISABLE_INDEX are set to YES, then the # When both GENERATE_TREEVIEW and DISABLE_INDEX are set to YES, then the
# FULL_SIDEBAR option determines if the side bar is limited to only the treeview # FULL_SIDEBAR option determines if the side bar is limited to only the treeview
@@ -1985,7 +1985,7 @@ MATHJAX_CODEFILE =
# The default value is: YES. # The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES. # This tag requires that the tag GENERATE_HTML is set to YES.
SEARCHENGINE = YES SEARCHENGINE = NO
# When the SERVER_BASED_SEARCH tag is enabled the search engine will be # When the SERVER_BASED_SEARCH tag is enabled the search engine will be
# implemented using a web server instead of a web client using JavaScript. There # implemented using a web server instead of a web client using JavaScript. There

View File

@@ -127,7 +127,8 @@ These are the toolkit's enumerated types whose members are used as function argu
@fn int EN_getstatistic(EN_Project ph, int type, double* value) @fn int EN_getstatistic(EN_Project ph, int type, double* value)
@fn int EN_getresultindex(EN_Project ph, int type, int index, int *value) @fn int EN_getresultindex(EN_Project ph, int type, int index, int *value)
@fn int EN_timetonextevent(EN_Project ph, int *eventType, long *duration, int *elementIndex); @fn int EN_timetonextevent(EN_Project ph, int *eventType, long *duration, int *elementIndex);
@fn int EN_setreportcallback(EN_Project ph, void (*callback)(void *userData, void *EN_projectHandle, const char*))
@fn int EN_setreportcallbackuserdata(EN_Project ph, void *userData)
@} @}
*/ */

View File

@@ -169,6 +169,7 @@ extern "C" {
int DLLEXPORT ENtimetonextevent(int *eventType, long *duration, int *elementIndex); int DLLEXPORT ENtimetonextevent(int *eventType, long *duration, int *elementIndex);
int DLLEXPORT ENsetreportcallback(void (*callback)(void *userData, void *EN_projectHandle, const char*)); int DLLEXPORT ENsetreportcallback(void (*callback)(void *userData, void *EN_projectHandle, const char*));
int DLLEXPORT ENsetreportcallbackuserdata(void *userData); int DLLEXPORT ENsetreportcallbackuserdata(void *userData);

View File

@@ -218,14 +218,14 @@ typedef struct Project *EN_Project;
@brief Saves a project's data to an EPANET-formatted text file. @brief Saves a project's data to an EPANET-formatted text file.
@param ph an EPANET project handle. @param ph an EPANET project handle.
@param filename the name of the file to create. @param filename the name of the file to create.
@return Error code @return an error code
*/ */
int DLLEXPORT EN_saveinpfile(EN_Project ph, const char *filename); int DLLEXPORT EN_saveinpfile(EN_Project ph, const char *filename);
/** /**
@brief Closes a project and frees all of its memory. @brief Closes a project and frees all of its memory.
@param ph an EPANET project handle. @param ph an EPANET project handle.
@return Error code @return an error code
This function clears all existing data from a project but does not delete the This function clears all existing data from a project but does not delete the
project, so it can be re-used with another set of network data. Use ::EN_deleteproject project, so it can be re-used with another set of network data. Use ::EN_deleteproject
@@ -331,7 +331,7 @@ typedef struct Project *EN_Project;
@return an error or warning code. @return an error or warning code.
This function is used in a loop with ::EN_nextH to run an extended period hydraulic This function is used in a loop with ::EN_nextH to run an extended period hydraulic
simulation. This process automatically updates the simulation clock time so \b currentTime simulation. This process automatically updates the simulation clock time so `currentTime`
should be treated as a read-only variable. should be treated as a read-only variable.
::EN_initH must have been called prior to running the ::EN_runH - ::EN_nextH loop. ::EN_initH must have been called prior to running the ::EN_runH - ::EN_nextH loop.
@@ -351,7 +351,7 @@ typedef struct Project *EN_Project;
This function is used in a loop with ::EN_runH to run an extended period hydraulic This function is used in a loop with ::EN_runH to run an extended period hydraulic
simulation. simulation.
The value of \b tstep should be treated as a read-only variable. It is automatically The value of `out_tstep` should be treated as a read-only variable. It is automatically
computed as the smaller of: computed as the smaller of:
- the time interval until the next hydraulic time step begins - the time interval until the next hydraulic time step begins
- the time interval until the next reporting time step begins - the time interval until the next reporting time step begins
@@ -400,7 +400,7 @@ typedef struct Project *EN_Project;
Before calling this function hydraulic results must have been generated and saved by having Before calling this function hydraulic results must have been generated and saved by having
called ::EN_solveH or the ::EN_initH - ::EN_runH - ::EN_nextH sequence with the initflag called ::EN_solveH or the ::EN_initH - ::EN_runH - ::EN_nextH sequence with the initflag
argument of ::EN_initH set to \b EN_SAVE or \b EN_SAVE_AND_INIT. argument of ::EN_initH set to `EN_SAVE` or `EN_SAVE_AND_INIT`.
*/ */
int DLLEXPORT EN_savehydfile(EN_Project ph, const char *filename); int DLLEXPORT EN_savehydfile(EN_Project ph, const char *filename);
@@ -456,8 +456,8 @@ typedef struct Project *EN_Project;
/** /**
@brief Initializes a network prior to running a water quality analysis. @brief Initializes a network prior to running a water quality analysis.
@param ph an EPANET project handle. @param ph an EPANET project handle.
@param saveFlag set to \b EN_SAVE (1) if results are to be saved to the project's @param saveFlag set to `EN_SAVE` (1) if results are to be saved to the project's
binary output file, or to \b EN_NOSAVE (0) if not. binary output file, or to `EN_NOSAVE` (0) if not.
@return an error code. @return an error code.
Call ::EN_initQ prior to running a water quality analysis using ::EN_runQ in Call ::EN_initQ prior to running a water quality analysis using ::EN_runQ in
@@ -484,9 +484,9 @@ typedef struct Project *EN_Project;
::EN_initQ must have been called prior to running an ::EN_runQ - ::EN_nextQ ::EN_initQ must have been called prior to running an ::EN_runQ - ::EN_nextQ
(or ::EN_stepQ) loop. (or ::EN_stepQ) loop.
The current time of the simulation is determined from information saved with the The current time of the simulation, `out_currentTime`, is determined from information
hydraulic analysis that preceded the water quality analysis. Treat it as a read-only saved with the hydraulic analysis that preceded the water quality analysis. Treat it
variable. as a read-only variable.
*/ */
int DLLEXPORT EN_runQ(EN_Project ph, long *out_currentTime); int DLLEXPORT EN_runQ(EN_Project ph, long *out_currentTime);
@@ -502,7 +502,7 @@ typedef struct Project *EN_Project;
time step determined by when the next hydraulic event occurs. Use ::EN_stepQ instead time step determined by when the next hydraulic event occurs. Use ::EN_stepQ instead
if you wish to generate results over each water quality time step. if you wish to generate results over each water quality time step.
The value of \b tStep is determined from information produced by the hydraulic analysis The value of `tStep` is determined from information produced by the hydraulic analysis
that preceded the water quality analysis. Treat it as a read-only variable. that preceded the water quality analysis. Treat it as a read-only variable.
<b>Example:</b> <b>Example:</b>
@@ -533,8 +533,8 @@ typedef struct Project *EN_Project;
quality time step of the simulation, rather than over each hydraulic event period quality time step of the simulation, rather than over each hydraulic event period
as with ::EN_nextQ. as with ::EN_nextQ.
Use the argument \b timeLeft to determine when no more calls to ::EN_runQ are needed Use the argument `timeLeft` to determine when no more calls to ::EN_runQ are needed
because the end of the simulation period has been reached (i.e., when \b timeLeft = 0). because the end of the simulation period has been reached (i.e., when `timeLeft` = 0).
*/ */
int DLLEXPORT EN_stepQ(EN_Project ph, long *out_timeLeft); int DLLEXPORT EN_stepQ(EN_Project ph, long *out_timeLeft);
@@ -557,15 +557,35 @@ typedef struct Project *EN_Project;
===================================================================*/ ===================================================================*/
/** /**
@brief Set a user-supplied callback function for reporting @brief Sets a user-supplied callback function for reporting
@param ph an EPANET project handle. @param ph an EPANET project handle.
@param callback a function pointer with declared signature, which gets called by EPANET for reporting. @param callback a function pointer used for reporting.
@return an error code. @return an error code.
@details The report callback function must have the signature specified - void(void* userData, EN_Project, char*) -
use the userData parameter to pass any client context necessary (a context pointer or wrapper object perhaps). The callback function replaces the project's report file as
Leave un-set or set the report callback to NULL to revert to EPANET's default behavior. the destination for all output written by ::EN_writeline. It must have
**/ the following signature:
int DLLEXPORT EN_setreportcallback(EN_Project ph, void (*callback)(void *userData, void *EN_projectHandle, const char*));
`void(void *userData, void *EN_projectHandle p, const char* s)`
The `userData` parameter is a pointer to a client-side data object.
It can be changed using the ::EN_setreportcallbackuserdata function.
The parameter `s` is a placeholder for the EPANET-generated string
that was passed into ::EN_writeline. Setting the callback function to
NULL reverts to having ::EN_writeline use the project's report file.
*/
int DLLEXPORT EN_setreportcallback(EN_Project ph, void(*callback)(void *userData, void *EN_projectHandle, const char*));
/**
@brief Sets a pointer to a client-side data object
@param ph an EPANET project handle.
@param userData a pointer to a client-side data object.
@return an error code.
The data pointer supplied by this function is passed into the callback
function declared in ::EN_setreportcallback that replaces a project's
report file as the destination for output written with ::EN_writeline.
*/
int DLLEXPORT EN_setreportcallbackuserdata(EN_Project ph, void *userData); int DLLEXPORT EN_setreportcallbackuserdata(EN_Project ph, void *userData);
/** /**
@@ -573,6 +593,9 @@ typedef struct Project *EN_Project;
@param ph an EPANET project handle. @param ph an EPANET project handle.
@param line a text string to write. @param line a text string to write.
@return an error code. @return an error code.
::EN_setreportcallback can be used to assign an alternative destination
to write `line` to in place of the project's report file.
*/ */
int DLLEXPORT EN_writeline(EN_Project ph, const char *line); int DLLEXPORT EN_writeline(EN_Project ph, const char *line);
@@ -647,15 +670,15 @@ typedef struct Project *EN_Project;
Status reporting writes changes in the hydraulics status of network elements to a Status reporting writes changes in the hydraulics status of network elements to a
project's report file as a hydraulic simulation unfolds. There are three levels project's report file as a hydraulic simulation unfolds. There are three levels
of reporting: \b EN_NO_REPORT (no status reporting), \b EN_NORMAL_REPORT (normal of reporting: `EN_NO_REPORT` (no status reporting), `EN_NORMAL_REPORT` (normal
reporting) \b EN_FULL_REPORT (full status reporting). reporting) `EN_FULL_REPORT` (full status reporting).
The full status report contains information at each trial of the solution to the The full status report contains information at each trial of the solution to the
system hydraulic equations at each time step of a simulation. It is useful mainly system hydraulic equations at each time step of a simulation. It is useful mainly
for debugging purposes. for debugging purposes.
If many hydraulic analyses will be run in the application it is recommended that If many hydraulic analyses will be run in the application it is recommended that
status reporting be turned off (<b>level = EN_NO_REPORT</b>). status reporting be turned off (`level` = `EN_NO_REPORT`).
*/ */
int DLLEXPORT EN_setstatusreport(EN_Project ph, int level); int DLLEXPORT EN_setstatusreport(EN_Project ph, int level);
@@ -796,7 +819,7 @@ typedef struct Project *EN_Project;
@brief Retrieves the type of water quality analysis to be run. @brief Retrieves the type of water quality analysis to be run.
@param ph an EPANET project handle. @param ph an EPANET project handle.
@param[out] out_qualType the type of analysis to run (see @ref EN_QualityType). @param[out] out_qualType the type of analysis to run (see @ref EN_QualityType).
@param[out] out_traceNode the index of node being traced, if <b>qualType = EN_TRACE</b>. @param[out] out_traceNode the index of node being traced if `out_qualType` = `EN_TRACE`.
@return an error code. @return an error code.
*/ */
int DLLEXPORT EN_getqualtype(EN_Project ph, int *out_qualType, int *out_traceNode); int DLLEXPORT EN_getqualtype(EN_Project ph, int *out_qualType, int *out_traceNode);
@@ -807,7 +830,7 @@ typedef struct Project *EN_Project;
@param qualType the type of analysis to run (see @ref EN_QualityType). @param qualType the type of analysis to run (see @ref EN_QualityType).
@param chemName the name of the quality constituent. @param chemName the name of the quality constituent.
@param chemUnits the concentration units of the constituent. @param chemUnits the concentration units of the constituent.
@param traceNode the ID name of the node being traced if <b>qualType = EN_TRACE</b>. @param traceNode the ID name of the node being traced if `qualType` = `EN_TRACE`.
@return an error code. @return an error code.
Chemical name and units can be an empty string if the analysis is not for a chemical. Chemical name and units can be an empty string if the analysis is not for a chemical.
@@ -843,9 +866,9 @@ typedef struct Project *EN_Project;
@param actionCode the action taken if any control contains the node and its links. @param actionCode the action taken if any control contains the node and its links.
@return an error code. @return an error code.
If \b actionCode is \b EN_UNCONDITIONAL then the node, its incident links and all If `actionCode` is `EN_UNCONDITIONAL` then the node, its incident links and all
simple and rule-based controls that contain them are deleted. If set to simple and rule-based controls that contain them are deleted. If set to
\b EN_CONDITIONAL then the node is not deleted if it or its incident links appear `EN_CONDITIONAL` then the node is not deleted if it or its incident links appear
in any controls and error code 261 is returned. in any controls and error code 261 is returned.
*/ */
@@ -997,7 +1020,7 @@ typedef struct Project *EN_Project;
@param[out] out_pexp Pressure exponent in demand function. @param[out] out_pexp Pressure exponent in demand function.
@return an error code. @return an error code.
Parameters <b>pmin, preq,</b> and \b pexp are only used when the demand model is \b EN_PDA. Parameters `pmin`, `preq`, and `pexp` are only used when the demand model is `EN_PDA`.
*/ */
int DLLEXPORT EN_getdemandmodel(EN_Project ph, int *out_type, double *out_pmin, int DLLEXPORT EN_getdemandmodel(EN_Project ph, int *out_type, double *out_pmin,
double *out_preq, double *out_pexp); double *out_preq, double *out_pexp);
@@ -1011,15 +1034,13 @@ typedef struct Project *EN_Project;
@param pexp Pressure exponent in demand function. @param pexp Pressure exponent in demand function.
@return an error code. @return an error code.
Set \b type to \b EN_DDA for a traditional demand driven analysis (in which case the Set `type` to `EN_DDA` for a traditional demand driven analysis (in which case the
remaining three parameter values are ignored) or to \b EN_PDA for a pressure driven remaining three parameter values are ignored) or to `EN_PDA` for a pressure driven
analysis. In the latter case a node's demand is computed as: analysis. In the latter case a node's demand is computed as:\n
> `Dfull * [ (P - pmin) / (preq - pmin) ] ^ pexp` `Dfull * [ (P - pmin) / (preq - pmin) ] ^ pexp`\n
where `Dfull` is the full demand and `P` is the current pressure. where `Dfull` is the full demand and `P` is the current pressure.
Setting \b preq equal to \b pmin will result in a solution with the smallest amount of A valid value for `preq` must be at least 0.1 pressure units larger than `pmin`.
demand reductions needed to insure that no node delivers positive demand at a pressure
below \b pmin.
*/ */
int DLLEXPORT EN_setdemandmodel(EN_Project ph, int type, double pmin, int DLLEXPORT EN_setdemandmodel(EN_Project ph, int type, double pmin,
double preq, double pexp); double preq, double pexp);
@@ -1126,7 +1147,7 @@ typedef struct Project *EN_Project;
@param[out] out_demandName The name of the selected category. @param[out] out_demandName The name of the selected category.
@return an error code. @return an error code.
\b demandName must be sized to contain at least @ref EN_SizeLimits "EN_MAXID+1" characters. `demandName` must be sized to contain at least @ref EN_SizeLimits "EN_MAXID+1" characters.
*/ */
int DLLEXPORT EN_getdemandname(EN_Project ph, int nodeIndex, int demandIndex, char *out_demandName); int DLLEXPORT EN_getdemandname(EN_Project ph, int nodeIndex, int demandIndex, char *out_demandName);
@@ -1136,7 +1157,7 @@ typedef struct Project *EN_Project;
@param nodeIndex a node's index (starting from 1). @param nodeIndex a node's index (starting from 1).
@param demandIdx the index of one of the node's demand categories (starting from 1). @param demandIdx the index of one of the node's demand categories (starting from 1).
@param demandName the new name assigned to the category. @param demandName the new name assigned to the category.
@return Error code. @return an error code.
The category name must contain no more than @ref EN_SizeLimits "EN_MAXID" characters. The category name must contain no more than @ref EN_SizeLimits "EN_MAXID" characters.
*/ */
@@ -1167,7 +1188,7 @@ typedef struct Project *EN_Project;
All other pipe properties are set to 0. All other pipe properties are set to 0.
A new pump has a status of \b EN_OPEN, a speed setting of 1, and has no pump A new pump has a status of `EN_OPEN`, a speed setting of 1, and has no pump
curve or power rating assigned to it. curve or power rating assigned to it.
A new valve has a diameter of 10 inches (254 mm) and all other properties set to 0. A new valve has a diameter of 10 inches (254 mm) and all other properties set to 0.
@@ -1184,8 +1205,8 @@ typedef struct Project *EN_Project;
@param actionCode The action taken if any control contains the link. @param actionCode The action taken if any control contains the link.
@return an error code. @return an error code.
If \b actionCode is \b EN_UNCONDITIONAL then the link and all simple and rule-based If `actionCode` is `EN_UNCONDITIONAL` then the link and all simple and rule-based
controls that contain it are deleted. If set to \b EN_CONDITIONAL then the link controls that contain it are deleted. If set to `EN_CONDITIONAL` then the link
is not deleted if it appears in any control and error 261 is returned. is not deleted if it appears in any control and error 261 is returned.
*/ */
int DLLEXPORT EN_deletelink(EN_Project ph, int index, int actionCode); int DLLEXPORT EN_deletelink(EN_Project ph, int index, int actionCode);
@@ -1215,7 +1236,7 @@ typedef struct Project *EN_Project;
@param ph an EPANET project handle. @param ph an EPANET project handle.
@param index a link's index (starting from 1). @param index a link's index (starting from 1).
@param newid the new ID name for the link. @param newid the new ID name for the link.
@return Error code. @return an error code.
The ID name must not be longer than @ref EN_SizeLimits "EN_MAXID" characters. The ID name must not be longer than @ref EN_SizeLimits "EN_MAXID" characters.
*/ */
@@ -1238,9 +1259,9 @@ typedef struct Project *EN_Project;
@param actionCode the action taken if any controls contain the link. @param actionCode the action taken if any controls contain the link.
@return an error code. @return an error code.
If \b actionCode is \b EN_UNCONDITIONAL then all simple and rule-based controls that If `actionCode` is `EN_UNCONDITIONAL` then all simple and rule-based controls that
contain the link are deleted when the link's type is changed. If set to contain the link are deleted when the link's type is changed. If set to
\b EN_CONDITIONAL then the type change is cancelled if the link appears in any `EN_CONDITIONAL` then the type change is cancelled if the link appears in any
control and error 261 is returned. control and error 261 is returned.
*/ */
int DLLEXPORT EN_setlinktype(EN_Project ph, int *inout_index, int linkType, int actionCode); int DLLEXPORT EN_setlinktype(EN_Project ph, int *inout_index, int linkType, int actionCode);
@@ -1493,7 +1514,7 @@ typedef struct Project *EN_Project;
@param len the number of factor values supplied. @param len the number of factor values supplied.
@return an error code. @return an error code.
\b values is a zero-based array that contains \b len elements. `values` is a zero-based array that contains `len` elements.
Use this function to redefine (and resize) a time pattern all at once; Use this function to redefine (and resize) a time pattern all at once;
use @ref EN_setpatternvalue to revise pattern factors one at a time. use @ref EN_setpatternvalue to revise pattern factors one at a time.
@@ -1641,7 +1662,7 @@ typedef struct Project *EN_Project;
@param nPoints the new number of data points for the curve. @param nPoints the new number of data points for the curve.
@return an error code. @return an error code.
\b xValues and \b yValues are zero-based arrays that contains \b nPoints elements. `xValues` and `yValues` are zero-based arrays that contains `nPoints` elements.
Use this function to redefine (and resize) a curve all at once; Use this function to redefine (and resize) a curve all at once;
use @ref EN_setcurvevalue to revise a curve's data points one at a time. use @ref EN_setcurvevalue to revise a curve's data points one at a time.
@@ -1662,7 +1683,7 @@ typedef struct Project *EN_Project;
@param linkIndex the index of a link to control (starting from 1). @param linkIndex the index of a link to control (starting from 1).
@param setting control setting applied to the link. @param setting control setting applied to the link.
@param nodeIndex index of the node used to control the link @param nodeIndex index of the node used to control the link
(0 for \b EN_TIMER and \b EN_TIMEOFDAY controls). (0 for `EN_TIMER` and `EN_TIMEOFDAY` controls).
@param level action level (tank level, junction pressure, or time in seconds) @param level action level (tank level, junction pressure, or time in seconds)
that triggers the control. that triggers the control.
@param[out] out_index index of the new control. @param[out] out_index index of the new control.
@@ -1687,7 +1708,7 @@ typedef struct Project *EN_Project;
@param[out] out_linkIndex the index of the link being controlled. @param[out] out_linkIndex the index of the link being controlled.
@param[out] out_setting the control setting applied to the link. @param[out] out_setting the control setting applied to the link.
@param[out] out_nodeIndex the index of the node used to trigger the control @param[out] out_nodeIndex the index of the node used to trigger the control
(0 for \b EN_TIMER and \b EN_TIMEOFDAY controls). (0 for `EN_TIMER` and `EN_TIMEOFDAY` controls).
@param[out] out_level the action level (tank level, junction pressure, or time in seconds) @param[out] out_level the action level (tank level, junction pressure, or time in seconds)
that triggers the control. that triggers the control.
@return an error code. @return an error code.
@@ -1703,7 +1724,7 @@ typedef struct Project *EN_Project;
@param linkIndex the index of the link being controlled. @param linkIndex the index of the link being controlled.
@param setting the control setting applied to the link. @param setting the control setting applied to the link.
@param nodeIndex the index of the node used to trigger the control @param nodeIndex the index of the node used to trigger the control
(0 for \b EN_TIMER and \b EN_TIMEOFDAY controls). (0 for `EN_TIMER` and `EN_TIMEOFDAY` controls).
@param level the action level (tank level, junction pressure, or time in seconds) @param level the action level (tank level, junction pressure, or time in seconds)
that triggers the control. that triggers the control.
@return an error code. @return an error code.
@@ -1772,7 +1793,7 @@ typedef struct Project *EN_Project;
@param ph an EPANET project handle. @param ph an EPANET project handle.
@param index the rule's index (starting from 1). @param index the rule's index (starting from 1).
@param[out] out_id the rule's ID name. @param[out] out_id the rule's ID name.
@return Error code. @return an error code.
The ID name must be sized to hold at least @ref EN_SizeLimits "EN_MAXID+1" characters. The ID name must be sized to hold at least @ref EN_SizeLimits "EN_MAXID+1" characters.
*/ */
@@ -1784,7 +1805,7 @@ typedef struct Project *EN_Project;
@param ruleIndex the rule's index (starting from 1). @param ruleIndex the rule's index (starting from 1).
@param premiseIndex the position of the premise in the rule's list of premises @param premiseIndex the position of the premise in the rule's list of premises
(starting from 1). (starting from 1).
@param[out] out_logop the premise's logical operator ( \b IF = 1, \b AND = 2, \b OR = 3 ). @param[out] out_logop the premise's logical operator (`IF` = 1, `AND` = 2, `OR` = 3` ).
@param[out] out_object the type of object the premise refers to (see @ref EN_RuleObject). @param[out] out_object the type of object the premise refers to (see @ref EN_RuleObject).
@param[out] out_objIndex the index of the object (e.g. the index of a tank). @param[out] out_objIndex the index of the object (e.g. the index of a tank).
@param[out] out_variable the object's variable being compared (see @ref EN_RuleVariable). @param[out] out_variable the object's variable being compared (see @ref EN_RuleVariable).
@@ -1803,7 +1824,7 @@ typedef struct Project *EN_Project;
@param ph an EPANET project handle. @param ph an EPANET project handle.
@param ruleIndex the rule's index (starting from 1). @param ruleIndex the rule's index (starting from 1).
@param premiseIndex the position of the premise in the rule's list of premises. @param premiseIndex the position of the premise in the rule's list of premises.
@param logop the premise's logical operator ( \b IF = 1, \b AND = 2, \b OR = 3 ). @param logop the premise's logical operator (`IF` = 1, `AND` = 2, `OR` = 3 ).
@param object the type of object the premise refers to (see @ref EN_RuleObject). @param object the type of object the premise refers to (see @ref EN_RuleObject).
@param objIndex the index of the object (e.g. the index of a tank). @param objIndex the index of the object (e.g. the index of a tank).
@param variable the object's variable being compared (see @ref EN_RuleVariable). @param variable the object's variable being compared (see @ref EN_RuleVariable).

View File

@@ -217,7 +217,7 @@ typedef enum {
/// Link status /// Link status
/** /**
One of these values is returned when @ref EN_getlinkvalue is used to retrieve a link's One of these values is returned when @ref EN_getlinkvalue is used to retrieve a link's
initial status ( \b EN_INITSTATUS ) or its current status ( \b EN_STATUS ). These options are initial status (`EN_INITSTATUS`) or its current status (`EN_STATUS`). These options are
also used with @ref EN_setlinkvalue to set values for these same properties. also used with @ref EN_setlinkvalue to set values for these same properties.
*/ */
typedef enum { typedef enum {
@@ -228,8 +228,8 @@ typedef enum {
/// Pump states /// Pump states
/** /**
One of these codes is returned when @ref EN_getlinkvalue is used to retrieve a pump's One of these codes is returned when @ref EN_getlinkvalue is used to retrieve a pump's
current operating state ( \b EN_PUMP_STATE ). \b EN_PUMP_XHEAD indicates that the pump has been current operating state (`EN_PUMP_STATE`). `EN_PUMP_XHEAD` indicates that the pump has been
shut down because it is being asked to deliver more than its shutoff head. \b EN_PUMP_XFLOW shut down because it is being asked to deliver more than its shutoff head. `EN_PUMP_XFLOW`
indicates that the pump is being asked to deliver more than its maximum flow. indicates that the pump is being asked to deliver more than its maximum flow.
*/ */
typedef enum { typedef enum {
@@ -254,7 +254,7 @@ typedef enum {
/// Water quality source types /// Water quality source types
/** /**
These are the different types of external water quality sources that can be assigned These are the different types of external water quality sources that can be assigned
to a node's \b EN_SOURCETYPE property as used by @ref EN_getnodevalue and @ref EN_setnodevalue. to a node's `EN_SOURCETYPE` property as used by @ref EN_getnodevalue and @ref EN_setnodevalue.
*/ */
typedef enum { typedef enum {
EN_CONCEN = 0, //!< Sets the concentration of external inflow entering a node EN_CONCEN = 0, //!< Sets the concentration of external inflow entering a node
@@ -265,9 +265,9 @@ typedef enum {
/// Head loss formulas /// Head loss formulas
/** /**
The available choices for the \b EN_HEADLOSSFORM option in @ref EN_getoption and The available choices for the `EN_HEADLOSSFORM` option in @ref EN_getoption and
@ref EN_setoption. They are also used for the head loss type argument in @ref EN_init. @ref EN_setoption. They are also used for the head loss type argument in @ref EN_init.
Each head loss formula uses a different type of roughness coefficient ( \b EN_ROUGHNESS ) Each head loss formula uses a different type of roughness coefficient (`EN_ROUGHNESS`)
that can be set with @ref EN_setlinkvalue. that can be set with @ref EN_setlinkvalue.
*/ */
typedef enum { typedef enum {
@@ -280,7 +280,7 @@ typedef enum {
/** /**
These choices for flow units are used with @ref EN_getflowunits and @ref EN_setflowunits. These choices for flow units are used with @ref EN_getflowunits and @ref EN_setflowunits.
They are also used for the flow units type argument in @ref EN_init. If flow units are They are also used for the flow units type argument in @ref EN_init. If flow units are
expressed in US Customary units ( \b EN_CFS through \b EN_AFD ) then all other quantities are expressed in US Customary units (`EN_CFS` through `EN_AFD`) then all other quantities are
in US Customary units. Otherwise they are in metric units. in US Customary units. Otherwise they are in metric units.
*/ */
typedef enum { typedef enum {
@@ -299,10 +299,10 @@ typedef enum {
/// Pressure units /// Pressure units
/** /**
The available choices for pressure units for the \b EN_PRESS_UNITS option in @ref EN_getoption The available choices for pressure units for the `EN_PRESS_UNITS` option in @ref EN_getoption
and @ref EN_setoption. For networks using US Customary units for flow ( \b EN_CFS through and @ref EN_setoption. For networks using US Customary units for flow (`EN_CFS` through
\b EN_AFD ) pressure units can only be set as PSI. For network using metric units, you can `EN_AFD`) pressure units can only be set as PSI. For network using metric units, you can
select either \b EN_METERS or \b EN_KPA. select either `EN_METERS` or `EN_KPA`.
*/ */
typedef enum { typedef enum {
EN_PSI = 0, //!< Pounds per square inch EN_PSI = 0, //!< Pounds per square inch
@@ -377,9 +377,10 @@ typedef enum {
/// Reporting statistic choices /// Reporting statistic choices
/** /**
These options determine what kind of statistical post-processing should be done on These options determine what kind of statistical post-processing should be done on
the time series of simulation results generated before they are reported using the time series of simulation results before they are reported using @ref EN_report
@ref EN_report. An option can be chosen by using \b STATISTIC _option_ as the argument or saved to the project's binary output file. These options are used in the
to @ref EN_setreport. @ref EN_gettimeparam and @ref EN_settimeparam functions when `EN_STATISTIC` is the
time parameter being set or retrieved.
*/ */
typedef enum { typedef enum {
EN_SERIES = 0, //!< Report all time series points EN_SERIES = 0, //!< Report all time series points
@@ -392,7 +393,7 @@ typedef enum {
/// Tank mixing models /// Tank mixing models
/** /**
These are the different types of models that describe water quality mixing in storage tanks. These are the different types of models that describe water quality mixing in storage tanks.
The choice of model is accessed with the \b EN_MIXMODEL property of a Tank node using The choice of model is accessed with the `EN_MIXMODEL` property of a Tank node using
@ref EN_getnodevalue and @ref EN_setnodevalue. @ref EN_getnodevalue and @ref EN_setnodevalue.
*/ */
typedef enum { typedef enum {

View File

@@ -851,13 +851,28 @@ int DLLEXPORT EN_closeQ(EN_Project p)
int DLLEXPORT EN_setreportcallback(EN_Project p, void (*callback)(void*,void*,const char*)) int DLLEXPORT EN_setreportcallback(EN_Project p, void (*callback)(void*,void*,const char*))
{ /*----------------------------------------------------------------
** Input: callback = a pointer to a reporting function
** Output: none
** Returns: error code
** Purpose: replaces EPANET's normal use of a designated report file
**----------------------------------------------------------------
*/
{
p->report.reportCallback = callback; p->report.reportCallback = callback;
return 0; return 0;
} }
int DLLEXPORT EN_setreportcallbackuserdata(EN_Project p, void *userData) int DLLEXPORT EN_setreportcallbackuserdata(EN_Project p, void *userData)
{ /*----------------------------------------------------------------
** Input: userData = a pointer to a client-side data object
** Output: none
** Returns: error code
** Purpose: sets the client-side data object used in conjunction with
** the callback function in EN_setreportcallback
**----------------------------------------------------------------
*/
{
p->report.reportCallbackUserData = userData; p->report.reportCallbackUserData = userData;
return 0; return 0;
} }