Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
ifluidzone.h
Go to the documentation of this file.
1 //ifluidzone.h
2 #pragma once
3 
9 namespace zone
10 {
13  class IFluidZone
14  {
15  public:
17  virtual void setZoneBasedPP(double pp)=0;
19  virtual QString getModelName() const=0;
20  virtual double getFluidDensity() const=0;
21  virtual void setFluidDensity(double d)=0;
22  };
23 } // namespace zone
24 // EoF
virtual void setZoneBasedPP(double pp)=0
Sets the zone pore pressure.
Interface to access fluid zone data.
Definition: ifluidzone.h:13
virtual QString getModelName() const =0
Returns the fluid model name.