mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-06-12 16:26:23 +00:00
114 lines
2.3 KiB
C++
114 lines
2.3 KiB
C++
/*------------------------------- phasicFlow ---------------------------------
|
|
O C enter of
|
|
O O E ngineering and
|
|
O O M ultiscale modeling of
|
|
OOOOOOO F luid flow
|
|
------------------------------------------------------------------------------
|
|
Copyright (C): www.cemf.ir
|
|
email: hamid.r.norouzi AT gmail.com
|
|
------------------------------------------------------------------------------
|
|
Licence:
|
|
This file is part of phasicFlow code. It is a free software for simulating
|
|
granular and multiphase flows. You can redistribute it and/or modify it under
|
|
the terms of GNU General Public License v3 or any other later versions.
|
|
|
|
phasicFlow is distributed to help others in their research in the field of
|
|
granular and multiphase flows, but WITHOUT ANY WARRANTY; without even the
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
-----------------------------------------------------------------------------*/
|
|
|
|
|
|
#ifndef __Time_hpp__
|
|
#define __Time_hpp__
|
|
|
|
|
|
#include "types.hpp"
|
|
#include "error.hpp"
|
|
|
|
#include "timeControl.hpp"
|
|
#include "repository.hpp"
|
|
|
|
|
|
|
|
namespace pFlow
|
|
{
|
|
|
|
class dictionary;
|
|
|
|
class Time
|
|
:
|
|
public repository,
|
|
public timeControl
|
|
{
|
|
|
|
protected:
|
|
|
|
bool outFormatBinary_ = false;
|
|
|
|
// - geometry folder/repository
|
|
repository geometry_;
|
|
|
|
// - integration folder/repository
|
|
repository integration_;
|
|
|
|
|
|
bool readDictionary(const dictionary& dict);
|
|
|
|
public:
|
|
|
|
// Constructor with owner and settings dict
|
|
Time( repository* owner, const dictionary& setiingsDict);
|
|
|
|
Time(
|
|
repository* owner,
|
|
dictionary& setiingsDict,
|
|
real startTime,
|
|
real endTime,
|
|
real saveInterval,
|
|
word startTimeName);
|
|
|
|
|
|
//// - Methods
|
|
virtual fileSystem localPath()const
|
|
{
|
|
return timeName();
|
|
}
|
|
|
|
// - geometry repository
|
|
const repository& geometry()const
|
|
{
|
|
return geometry_;
|
|
}
|
|
|
|
repository& geometry()
|
|
{
|
|
return geometry_;
|
|
}
|
|
|
|
const repository& integration()const
|
|
{
|
|
return integration_;
|
|
}
|
|
|
|
repository& integration()
|
|
{
|
|
return integration_;
|
|
}
|
|
|
|
/// Write to the file with binary format?
|
|
bool outFileBinary()const override
|
|
{
|
|
return outFormatBinary_;
|
|
}
|
|
|
|
// override the base write to manage write operation
|
|
// based on the valid write time intervals
|
|
virtual bool write(bool verbose = false) const;
|
|
|
|
};
|
|
|
|
} // pFlow
|
|
|
|
#endif // __Time_hpp__
|