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);
23 void Pump::update(int dir)
26 // Me fijo si me tengo que apagar automaticamente
27 open = input->get_output();
29 actual_flow = max_flow;
33 send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, (void *)&actual_flow);
39 std::cout << ((active && open)?" (funcionando)":" (apagada)") << std::endl;
43 bool Pump::get_output()
45 /* Si el corte fue manual, no puedo hacer nada */
46 if (active == false) return false;
48 /* Si no, depende del control automatico */
52 void Pump::recieve_msg(int msg, IConector *who, void *data)
55 case MSG_RESPONSE_MAX_FLOW: {
56 float tmp = *((float *)data);
57 if (max_flow < tmp) tmp = max_flow;
58 if (tmp < actual_flow) actual_flow = tmp;
62 Source::recieve_msg(msg, who, data);
67 void Pump::get_state_as_xml(std::stringstream &out)
69 // Saco el item basico por XML
70 PlantItem::get_state_as_xml(out);
72 // Saco lo importante de este item
73 out << "\t<pump name=\"" << name << "\">" << std::endl;
74 out << "\t\t<active>" << ((open&&active)?"true":"false") << "</active>" << std::endl;
75 out << "\t</pump>" << std::endl;