Itasca C++ Interface
Loading...
Searching...
No Matches
idynnode.h
Go to the documentation of this file.
1//idynnode.h
2#pragma once
3
9namespace zone {
10 class IGp;
11
14 class IDynNode {
15 public:
17 virtual DVect getAcc() const=0;
19 virtual double getMaxTimeStep(const IGp *gp,bool throwException) const=0;
20 };
21}
22// EoF
Interface to access dynamic node data.
Definition idynnode.h:14
virtual DVect getAcc() const =0
Returns dynamic acceleration vector.
virtual double getMaxTimeStep(const IGp *gp, bool throwException) const =0
Returns the maximum timestep allowed for this node
Interface to provide access to a gridpoint.
Definition igp.h:56
DVect3 DVect
Vector of doubles, either 2D or 3D.
Definition dim.h:154