HTML Users Guide
This commit is contained in:
115
doc/html/_curves_page.html
Normal file
115
doc/html/_curves_page.html
Normal file
@@ -0,0 +1,115 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.16"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>EPANET: [CURVES]</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="dynsections.js"></script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">EPANET
|
||||
 <span id="projectnumber">2.2.0</span>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.16 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
<!-- window showing the filter options -->
|
||||
<div id="MSearchSelectWindow"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||
</div>
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
</div>
|
||||
|
||||
<div id="nav-path" class="navpath">
|
||||
<ul>
|
||||
<li class="navelem"><a class="el" href="_files.html">Toolkit Files</a></li><li class="navelem"><a class="el" href="_inp_file.html">Input File</a></li> </ul>
|
||||
</div>
|
||||
</div><!-- top -->
|
||||
<div class="PageDoc"><div class="header">
|
||||
<div class="headertitle">
|
||||
<div class="title">[CURVES] </div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<div class="textblock"><p><b>Purpose:</b></p>
|
||||
<p>Defines data curves and their X,Y points.<br />
|
||||
</p>
|
||||
<p><b>Format:</b></p>
|
||||
<p>One line for each X,Y point on each curve containing:</p><ul>
|
||||
<li>Curve ID label</li>
|
||||
<li>an X value</li>
|
||||
<li>a Y value</li>
|
||||
</ul>
|
||||
<p><b>Remarks:</b></p><ol type="1">
|
||||
<li>Curves can be used to represent the following relations:<ul>
|
||||
<li>Head v. Flow for pumps</li>
|
||||
<li>Efficiency v. Flow for pumps</li>
|
||||
<li>Volume v. Depth for tanks</li>
|
||||
<li>Head Loss v. Flow for General Purpose Valves</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>The points of a curve must be entered in order of increasing X-values (lower to higher).</li>
|
||||
<li>If the input file will be used with the Windows version of EPANET, then adding a comment which contains the curve type and description, separated by a colon, directly above the first entry for a curve will ensure that these items appear correctly in EPANET's Curve Editor. Curve types include <b>PUMP, EFFICIENCY, VOLUME</b>, and <b>HEADLOSS</b>. See the examples below.</li>
|
||||
</ol>
|
||||
<p><b>Example:</b> </p><div class="fragment"><div class="line">[CURVES]</div>
|
||||
<div class="line">;ID Flow Head</div>
|
||||
<div class="line">;PUMP: Curve <span class="keywordflow">for</span> Pump 1</div>
|
||||
<div class="line">C1 0 200</div>
|
||||
<div class="line">C1 1000 100</div>
|
||||
<div class="line">C1 3000 0</div>
|
||||
<div class="line"> </div>
|
||||
<div class="line">;ID Flow Effic.</div>
|
||||
<div class="line">;EFFICIENCY:</div>
|
||||
<div class="line">E1 200 50</div>
|
||||
<div class="line">E1 1000 85</div>
|
||||
<div class="line">E1 2000 75</div>
|
||||
<div class="line">E1 3000 65</div>
|
||||
</div><!-- fragment --> </div></div><!-- contents -->
|
||||
</div><!-- PageDoc -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user