Former-commit-id:a02aeb236c
[formerly9f19e3f712
] [formerly06a8b51d6d
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]] Former-commit-id:06a8b51d6d
Former-commit-id:3360eb6c5f
50 lines
1.4 KiB
C++
50 lines
1.4 KiB
C++
//------------------------------------------------------------------------------
|
|
// Passflow - Object containing all Passflow scheme information.
|
|
//------------------------------------------------------------------------------
|
|
// Copyright: See the COPYRIGHT file.
|
|
//------------------------------------------------------------------------------
|
|
// Notes:
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
// History:
|
|
//
|
|
// 6 AUG 2004 KSH, OHD Added this method
|
|
//------------------------------------------------------------------------------
|
|
// Variables: I/O Description
|
|
//
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
|
|
#ifndef Passflow_INCLUDED
|
|
#define Passflow_INCLUDED
|
|
|
|
#include "ReservoirMethod.h"
|
|
|
|
class Passflow : public ReservoirMethod
|
|
{
|
|
public:
|
|
Passflow( Reservoir* ); // Default constructor
|
|
|
|
Passflow( const Passflow&, Reservoir* );
|
|
// Copy constructor.
|
|
|
|
virtual ~Passflow(); // Destructor
|
|
|
|
int construct( char**, int ); // Time series construction.
|
|
|
|
Passflow* copy( Component* ); // Calls copy constructor.
|
|
|
|
int freeDataSpace(); // Deletes dynamically allocated data.
|
|
|
|
int solveMethod( TSDate &, int, double** = NULL );
|
|
// Solving algorithm.
|
|
|
|
int print( FILE* ); // Prints all the info about the
|
|
// MaxIncrease object.
|
|
|
|
private:
|
|
int initialize(); // Initialize data members
|
|
|
|
};
|
|
|
|
#endif
|