EPANET  3.0
EPANET Development Project
All Classes Files Functions Variables Enumerations Enumerator Pages
qualengine.h
Go to the documentation of this file.
1 /* EPANET 3
2  *
3  * Copyright (c) 2016 Open Water Analytics
4  * Licensed under the terms of the MIT License (see the LICENSE file for details).
5  *
6  */
7 
10 
11 #ifndef QUALENGINE_H_
12 #define QUALENGINE_H_
13 
14 #include <vector>
15 
16 class Network;
17 class QualSolver;
18 //class JuncMixer;
19 //class TankMixer;
20 
27 
29 {
30  public:
31 
32  // Constructor/Destructor
33 
34  QualEngine();
35  ~QualEngine();
36 
37  // Public Methods
38 
39  void open(Network* nw);
40  void init();
41  void solve(int tstep);
42  void close();
43 
44 private:
45 
46  // Engine state
47 
48  enum EngineState {CLOSED, OPENED, INITIALIZED};
49  EngineState engineState;
50 
51  // Engine components
52 
53  Network* network;
54  QualSolver* qualSolver;
55 
56  // Engine properties
57 
58  int nodeCount;
59  int linkCount;
60  int qualTime;
61  int qualStep;
62  std::vector<int> sortedLinks;
63  std::vector<char> flowDirection;
64 
65  // Simulation sub-tasks
66 
67  bool flowDirectionsChanged();
68  void setFlowDirections();
69  void sortLinks();
70  void setSourceQuality();
71 };
72 
73 #endif
Abstract class from which a specific water quality solver is derived.
Definition: qualsolver.h:23
Simulates extended period water quality in a network.
Definition: qualengine.h:28
Contains the data elements that describe a pipe network.
Definition: network.h:41