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);
38 std::cout << name << "::Flujo actual = " << ((active && open)?actual_flow:0) \
39 << " de " << max_flow;
40 std::cout << ((active && open)?" (funcionando)":" (apagada)") << std::endl;
44 bool Pump::get_output()
46 /* Si el corte fue manual, no puedo hacer nada */
47 if (active == false) return false;
49 /* Si no, depende del control automatico */
53 void Pump::recieve_msg(int msg, IConector *who, void *data)
56 case MSG_QUERY_MAX_FLOW_OUT: {
57 // Me preguntan por el flujo máximo.
58 // Primero me actualizo, y luego respondo
59 // TODO la bomba nunca deberia ser consultada,pues el flujo sale ella
62 tmp = (actual_flow<max_flow)?actual_flow:max_flow;
63 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);*/
66 case MSG_RESPONSE_MAX_FLOW: {
67 float tmp = *((float *)data);
68 if (tmp < actual_flow) actual_flow = tmp;
72 Source::recieve_msg(msg, who, data);
77 void Pump::get_state_as_xml(std::stringstream &out)
79 // Saco el item basico por XML
80 PlantItem::get_state_as_xml(out);
82 // Saco lo importante de este item
83 out << "\t<pump name=\"" << name << "\">" << std::endl;
84 out << "\t\t<active>" << ((open&&active)?"true":"false") << "</active>" << std::endl;
85 out << "\t</pump>" << std::endl;