Exemplo n.º 1
0
 bool FanConstantVolume_Impl::setMaximumFlowRate(boost::optional<double> maximumFlowRate) {
   bool result(false);
   if (maximumFlowRate) {
     result = setDouble(OS_Fan_ConstantVolumeFields::MaximumFlowRate, maximumFlowRate.get());
   }
   else {
     resetMaximumFlowRate();
     result = true;
   }
   return result;
 }
Exemplo n.º 2
0
 bool FanZoneExhaust_Impl::setMaximumFlowRate(boost::optional<double> maximumFlowRate) {
   bool result(false);
   if (maximumFlowRate) {
     result = setDouble(OS_Fan_ZoneExhaustFields::MaximumFlowRate, maximumFlowRate.get());
   }
   else {
     resetMaximumFlowRate();
     result = true;
   }
   return result;
 }