Files
phasicFlow/src/phasicFlow/repository/Time/Time.H
2022-09-11 14:12:09 +04:30

95 lines
2.0 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_H__
#define __Time_H__
#include "types.H"
#include "error.H"
#include "timeControl.H"
#include "repository.H"
namespace pFlow
{
class dictionary;
class Time
:
public repository,
public timeControl
{
protected:
// - geometry folder/repository
repository geometry_;
// - integration folder/repository
repository integration_;
public:
// Constructor with owner and settings dict
Time( repository* owner, const dictionary& setiingsDict);
//// - Methods
virtual fileSystem localPath()const
{
word lp = currentTimeWord();
return lp;
}
// - geometry repository
const repository& geometry()const
{
return geometry_;
}
repository& geometry()
{
return geometry_;
}
const repository& integration()const
{
return integration_;
}
repository& integration()
{
return integration_;
}
// 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_H__