]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/include/source.h
- Se corrige la bomba para que tenga mas informacion sobre el flujo maximo y
[z.facultad/75.42/plaqui.git] / Model / include / source.h
index 48a9a12ce3ed436c0f98179d4628d812d73a2c71..41a7266c85a1db6dad679c4185fff3a9a7d7a078 100644 (file)
@@ -17,8 +17,12 @@ public:
        virtual bool get_output();
 
        virtual void simulate();
        virtual bool get_output();
 
        virtual void simulate();
+       float get_actual_flow() { return actual_flow; }
+       float get_max_flow() { return max_flow; }
+       void  set_max_flow(float _f) { max_flow = _f; }
 protected:
        float max_flow;
 protected:
        float max_flow;
+       float actual_flow;
 private:
        Source(const Source &):Control("null") {}
        Source &operator = (const Source &) { return *this; }
 private:
        Source(const Source &):Control("null") {}
        Source &operator = (const Source &) { return *this; }