5 using namespace PlaQui::Model;
7 Pump::Pump(const std::string &_name):Source(_name),Control(_name)
13 max_flow = actual_flow = 0.0f;
15 output = new ByPass();
16 ((ByPass *)output)->set_control(this);
25 void Pump::update(int dir)
28 // Me fijo si me tengo que apagar automaticamente
29 open = input->get_output();
31 actual_flow = max_flow;
35 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&actual_flow);
42 std::cout << ((active && open)?" (funcionando)":" (apagada)") << std::endl;
47 bool Pump::get_output()
49 /* Si el corte fue manual, no puedo hacer nada */
50 if (active == false) return false;
52 /* Si no, depende del control automatico */
56 void Pump::recieve_msg(int msg, IConector *who, void *data)
59 case MSG_RESPONSE_MAX_FLOW: {
60 float tmp = *((float *)data);
61 if (max_flow < tmp) tmp = max_flow;
62 if (tmp < actual_flow) actual_flow = tmp;
66 Source::recieve_msg(msg, who, data);
71 void Pump::get_state_as_xml(std::stringstream &out)
73 // Saco el item basico por XML
74 PlantItem::get_state_as_xml(out);
76 // Saco lo importante de este item
77 out << "\t<pump name=\"" << name << "\">" << std::endl;
78 out << "\t\t<active>" << ((open&&active)?"true":"false") << "</active>" << std::endl;
79 out << "\t</pump>" << std::endl;