Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
idynnode.h
Go to the documentation of this file.
1 //idynnode.h
2 #pragma once
3 
9 namespace zone {
10  class IGp;
11 
14  class IDynNode {
15  public:
17  virtual DVect getAcc() const=0;
19  virtual double getMaxTimeStep(const IGp *gp) const=0;
20  };
21 }
22 // EoF
virtual DVect getAcc() const =0
Returns dynamic acceleration vector.
Interface to provide access to a gridpoint.
Definition: igp.h:64
virtual double getMaxTimeStep(const IGp *gp) const =0
Returns the maximum timestep allowed for this node
DVect3 DVect
Vector of doubles, either 2D or 3D.
Definition: dim.h:145
Interface to access dynamic node data.
Definition: idynnode.h:14