31 void reverseFlow(
int k);
32 int solve(
int* sortedLinks,
int tstep);
40 std::vector<double> volIn;
41 std::vector<double> massIn;
42 std::vector<Segment *> firstSegment;
43 std::vector<Segment *> lastSegment;
48 void transport(
int k);
49 void updateNodeQuality();
50 void updateLinkQuality();
51 double findStoredMass();
52 void updateMassBalance(
double dt);
53 void addSegment(
int k,
double v,
double c);
A water quality solver based on the Lagrangian Time Driven method.
Definition: ltdsolver.h:23
Abstract class from which a specific water quality solver is derived.
Definition: qualsolver.h:23
Describes the SegPool class used for water quality transport.
Describes the QualSolver class.
Contains the data elements that describe a pipe network.
Definition: network.h:41