|
| demInteraction (systemControl &control) |
|
| demInteraction (systemControl &control, const fileSystem &file) |
|
| TypeInfoNV ("property") |
| Type info. More...
|
|
| property () |
| Emptry constructor, used for reading from a file. More...
|
|
| property (const wordVector &materials, const realVector &densities) |
| Constructe from materials and densities. More...
|
|
| property (const fileSystem &file) |
| Construct from file. More...
|
|
| property (const dictionary &dict) |
| Construct from dictionary dict. More...
|
|
| property (const property &)=default |
| Default copy. More...
|
|
| property (property &&)=default |
| Default move. More...
|
|
property & | operator= (const property &)=default |
| Default copy assignment. More...
|
|
property & | operator= (property &&)=default |
| Default move assignment. More...
|
|
| ~property ()=default |
| Default destructor. More...
|
|
const auto & | dict () const |
| Return dictionary. More...
|
|
auto | numMaterials () const |
| Return number of materials. More...
|
|
const auto & | materials () const |
| Return list of material names. More...
|
|
const auto & | densities () const |
| Return the list of densities. More...
|
|
const word & | material (uint32 i) const |
| Return the material name of material i. More...
|
|
bool | material (uint32 i, word &name) const |
| Get the name of material i. More...
|
|
real | density (uint32 i) const |
| Return density of material i. More...
|
|
bool | density (uint32 i, real &rho) const |
| Get the density of material i. More...
|
|
bool | nameToIndex (const word &name, uint32 &idx) const |
| Get the name of material in index idx Return true, if the name found, otherwise false. More...
|
|
bool | read (const dictionary &dict) |
| Read from dictionary. More...
|
|
bool | write (dictionary &dict) const |
| Write to dictionary. More...
|
|
| TypeInfo ("demComponent") |
| Type info. More...
|
|
| demComponent (const word &name, systemControl &control) |
| construct from components More...
|
|
| demComponent (const demComponent &)=delete |
| No copy constructor. More...
|
|
| demComponent (demComponent &&)=delete |
| No move constructor. More...
|
|
demComponent & | operator= (const demComponent &)=delete |
| No copy assignment. More...
|
|
demComponent & | operator= (demComponent &&)=delete |
| No move assignment. More...
|
|
virtual | ~demComponent ()=default |
| destructor More...
|
|
const auto & | control () const |
| Const ref to systemControl. More...
|
|
auto & | control () |
| Ref to systemControl. More...
|
|
real | dt () const |
| Time step of integration. More...
|
|
real | currentTime () const |
| Current simulation time. More...
|
|
const auto & | timers () const |
| Const ref to timers. More...
|
|
auto & | timers () |
| Ref to timers. More...
|
|
virtual bool | beforeTimeLoop () |
| This is called before the start of time loop. More...
|
|
virtual bool | beforeIteration ()=0 |
| This is called in time loop, before iterate. More...
|
|
virtual bool | iterate ()=0 |
| This is called in time loop. More...
|
|
virtual bool | afterIteration ()=0 |
| This is called in time loop, after iterate. More...
|
|
virtual bool | afterTimeLoop () |
| This is called after the time loop. More...
|
|
Definition at line 32 of file demInteraction.hpp.