Пример #1
0
 def create_electric_demand_curve(self, aggregate_air_demand):
     curve = PolyLine()
     for point in aggregate_air_demand.points:
         curve.add(Point(price=point.y, quantity=self.calcTotalLoad(point.x)))
     self.buyBidCurve = curve
     _log.debug("Report aggregated curve : {}".format(curve.points))
     return curve
Пример #2
0
 def translate_aggregate_demand(self, air_demand, index):
     electric_demand_curve = PolyLine()
     oat = self.oat_predictions[index] if self.oat_predictions else None
     for point in air_demand.points:
         electric_demand_curve.add(Point(price=point.y, quantity=self.model.calculate_load(point.x, oat)))
     _log.debug("{}: electric demand : {}".format(self.agent_name, electric_demand_curve.points))
     return electric_demand_curve
Пример #3
0
    def create_demand_curve(self, market_index, sched_index, occupied):
        """
        Create demand curve.  market_index (0-23) where next hour is 0
        (or for single market 0 for next market).  sched_index (0-23) is hour
        of day corresponding to market that demand_curve is being created.
        :param market_index: int; current market index where 0 is the next hour.
        :param sched_index: int; 0-23 corresponding to hour of day
        :param occupied: bool; true if occupied
        :return:
        """
        _log.debug("%s create_demand_curve - index: %s - sched: %s",
                   self.core.identity, market_index, sched_index)
        demand_curve = PolyLine()
        prices = self.determine_prices()
        self.update_prediction_error()
        for control, price in zip(self.ct_flexibility, prices):
            if occupied:
                _set = control
            else:
                _set = self.off_setpoint
            q = self.get_q(_set, sched_index, market_index, occupied)
            demand_curve.add(Point(price=price, quantity=q))

        topic_suffix = "DemandCurve"
        message = {
            "MarketIndex": market_index,
            "Curve": demand_curve.tuppleize(),
            "Commodity": self.commodity
        }
        _log.debug("%s debug demand_curve - curve: %s", self.core.identity,
                   demand_curve.points)
        self.publish_record(topic_suffix, message)
        return demand_curve
Пример #4
0
 def create_supply_curve(self, clear_price, supply_market):
     index = self.supplier_market.index(supply_market)
     supply_curve = PolyLine()
     min_quantity = self.aggregate_demand[index].min_x()*0.8
     max_quantity = self.aggregate_demand[index].max_x()*1.2
     supply_curve.add(Point(price=clear_price, quantity=min_quantity))
     supply_curve.add(Point(price=clear_price, quantity=max_quantity))
     return supply_curve
Пример #5
0
 def translate_aggregate_demand(self, air_demand, index):
     electric_demand_curve = PolyLine()
     oat = self.oat_predictions[index] if self.oat_predictions else None
     for point in air_demand.points:
         electric_demand_curve.add(Point(price=point.y, quantity=self.model.calculate_load(point.x, oat)))
     _log.debug("{}: electric demand : {}".format(self.agent_name, electric_demand_curve.points))
     # Hard-coding the market names is not ideal.  Need to come up with more robust solution
     for market in self.consumer_market:
         self.consumer_demand_curve[market][index] = electric_demand_curve
Пример #6
0
 def create_air_supply_curve(self, electric_price, electric_quantity):
     supply_curve = PolyLine()
     price = 65
     quantity = 100000
     supply_curve.add(Point(price=price,quantity=quantity))
     price = 65
     quantity = 0 # negative quantities are not real -1*10000
     supply_curve.add(Point(price=price,quantity=quantity))
     return supply_curve
Пример #7
0
def create_supply_curve():
    supply_curve = PolyLine()
    price = 0
    quantity = 0
    supply_curve.add(Point(price,quantity))
    price = 1000
    quantity = 1000
    supply_curve.add(Point(price,quantity))
    return supply_curve
Пример #8
0
def create_demand_curve():
    demand_curve = PolyLine()
    price = 0
    quantity = 1000
    demand_curve.add(Point(price,quantity))
    price = 1000
    quantity = 0
    demand_curve.add(Point(price,quantity))
    return demand_curve
Пример #9
0
 def create_supply_curve(self):
     supply_curve = PolyLine()
     price = self.price
     quantity = self.infinity
     supply_curve.add(Point(price=price, quantity=quantity))
     price = self.price
     quantity = 0
     supply_curve.add(Point(price=price, quantity=quantity))
     return supply_curve
Пример #10
0
 def create_demand_curve(self):
     if self.power_min is not None and self.power_max is not None:
         demand_curve = PolyLine()
         price_min, price_max = self.generate_price_points()
         demand_curve.add(Point(price=price_max, quantity=self.power_min))
         demand_curve.add(Point(price=price_min, quantity=self.power_max))
     else:
         demand_curve = None
     self.demand_curve = demand_curve
     return demand_curve
Пример #11
0
 def create_supply_curve(self, clear_price, supply_market):
     _log.debug("{}: clear consumer market price {}".format(
         self.agent_name, clear_price))
     index = self.supplier_market.index(supply_market)
     supply_curve = PolyLine()
     min_quantity = self.aggregate_demand[index].min_x() * 0.8
     max_quantity = self.aggregate_demand[index].max_x() * 1.2
     supply_curve.add(Point(price=clear_price, quantity=min_quantity))
     supply_curve.add(Point(price=clear_price, quantity=max_quantity))
     return supply_curve
Пример #12
0
 def create_demand_curve(self, index):
     hvac_index = self.determine_hvac_index(index)
     demand_curve = PolyLine()
     oat = self.oat_predictions[index] if self.oat_predictions else self.tOut
     prices = self.determine_prices()
     price_max_bound = max(
         max(prices) + 0.1 * max(prices),
         max(self.prices) + max(self.prices) * 0.1)
     price_min_bound = min(
         min(prices) + 0.1 * min(prices),
         min(self.prices) - min(self.prices) * 0.1)
     temp = self.temp[index]
     quantities = []
     for i in range(len(prices)):
         if self.hvac_avail[hvac_index]:
             temp_stpt = self.tsets[i]
         else:
             temp_stpt = self.tMinAdjUnoc
         quantity = min(
             max(self.getM(oat, temp, temp_stpt, hvac_index), self.mDotMin),
             self.mDotMax)
         quantities.append(quantity)
     demand_curve.add(Point(price=price_max_bound,
                            quantity=min(quantities)))
     prices.sort(reverse=True)
     quantities.sort()
     for i in range(len(prices)):
         demand_curve.add(Point(price=prices[i], quantity=quantities[i]))
     demand_curve.add(Point(price=price_min_bound,
                            quantity=max(quantities)))
     _log.debug("{} debug demand_curve4 - curve: {}".format(
         self.agent_name, demand_curve.points))
     _log.debug("{} market {} has cleared airflow: {}".format(
         self.agent_name, index, demand_curve.x(self.prices[index])))
     return demand_curve
Пример #13
0
    def create_air_supply_curve(self, electric_price):
        _log.debug("{}: clear air price {}".format(self.agent_name,
                                                   electric_price))
        air_supply_curve = PolyLine()
        price = electric_price
        min_quantity = self.load[0]
        max_quantity = self.load[-1]
        air_supply_curve.add(Point(price=price, quantity=min_quantity))
        air_supply_curve.add(Point(price=price, quantity=max_quantity))

        return air_supply_curve
Пример #14
0
    def create_electric_demand_curve(self, aggregate_air_demand):
        electric_demand_curve = PolyLine()
        self.load = []
        for point in aggregate_air_demand.points:
            electric_demand_curve.add(
                Point(price=point.y, quantity=self.calcTotalLoad(point.x)))
            self.load.append(point.x)
        _log.debug("{}: aggregated curve : {}".format(
            self.agent_name, electric_demand_curve.points))

        return electric_demand_curve
Пример #15
0
    def create_demand_curve(self, index):
        demand_curve = PolyLine()
        price_min, price_max = self.determine_prices()
        quantity = self.determin_quantity(index)
        price = np.linspace(price_max, price_min, num=len(quantity)).tolist()
        for pr, qt in zip(price, quantity):
            demand_curve.add(Point(price=pr, quantity=qt))

        _log.debug("{}: demand curve for {} - {}".format(
            self.agent_name, self.market_name[index], demand_curve.points))
        return demand_curve
Пример #16
0
 def create_demand_curve(self):
     """
     Create electric demand curve for agents respective lighting zone.
     :return:
     """
     self.demand_curve = PolyLine()
     p_min = 10.
     p_max = 100.
     if self.hvac_avail:
         self.demand_curve.add(Point(price=min(p_min, p_max), quantity=max(self.qmin, self.qmax) * self.power_absnom))
         self.demand_curve.add(Point(price=max(p_min, p_max), quantity=min(self.qmin, self.qmax)* self.power_absnom))
     else:
         self.demand_curve.add(Point(price=max(p_min, p_max), quantity=0.))
         self.demand_curve.add(Point(price=min(p_min, p_max), quantity=0.))
     return self.demand_curve
Пример #17
0
 def create_demand_curve(self):
     self.demand_curve = PolyLine()
     pMin = 10
     pMax = 100
     qMin = abs(self.getQMin())
     qMax = abs(self.getQMax())
     if (self.hvacAvail > 0):
         self.demand_curve.add(
             Point(price=max(pMin, pMax), quantity=min(qMin, qMax)))
         self.demand_curve.add(
             Point(price=min(pMin, pMax), quantity=max(qMin, qMax)))
     else:
         self.demand_curve.add(Point(price=max(pMin, pMax), quantity=0))
         self.demand_curve.add(Point(price=min(pMin, pMax), quantity=0))
     return self.demand_curve
Пример #18
0
 def create_demand_curve(self):
     self.demand_curve = PolyLine()
     p_min = 10.
     p_max = 100.
     qMin = abs(self.get_q_min())
     qMax = abs(self.get_q_max())
     if self.hvac_avail:
         self.demand_curve.add(Point(price=max(p_min, p_max), quantity=min(qMin, qMax)))
         self.demand_curve.add(Point(price=min(p_min, p_max), quantity=max(qMin, qMax)))
     else:
         self.demand_curve.add(Point(price=max(p_min, p_max), quantity=0.1))
         self.demand_curve.add(Point(price=min(p_min, p_max), quantity=0.1))
     if self.hvac_avail:
         _log.debug("{} - Tout {} - Tin {} - q {}".format(self.agent_name, self.tOut, self.tIn, self.qHvacSens))
     return self.demand_curve
 def __init__(self, market_name, agent_name, min_occupied_lighting_level,
              default_occ_lighting_level, power_absnom, non_responsive,
              verbose_logging, base_rpc_path, schedule_topic,
              schedule_point, actuator, heartbeat_period, **kwargs):
     super(LightAgent, self).__init__(verbose_logging, **kwargs)
     self.market_name = market_name
     self.agent_name = agent_name
     self.qmin = min_occupied_lighting_level / 100.0
     self.qmax = default_occ_lighting_level / 100.0
     self.power_absnom = power_absnom
     self.non_responsive = non_responsive
     self.actuation_topic = base_rpc_path
     self.actuator = actuator
     self.schedule_topic = schedule_topic
     self.schedule_point = schedule_point
     self.demand_curve = None
     self.hvac_avail = 1
     self.price_cleared = None
     self.qnorm = float(self.qmax)
     self.lighting_stpt = None
     self.default_lighting_stpt = None
     self.heartbeat_period = heartbeat_period
     self.demand_curve = []
     for market in self.market_name:
         self.join_market(market, BUYER, None, self.offer_callback, None,
                          self.price_callback, self.error_callback)
         self.demand_curve.append(PolyLine())
Пример #20
0
    def __init__(self, agent_name, market_name, verbose_logging, q_uc,
                 building_topic, devices, **kwargs):
        super(UncontrolAgent, self).__init__(verbose_logging, **kwargs)
        self.market_name = market_name
        self.q_uc = q_uc
        self.price_index = 0
        self.price_min = 10.
        self.price_max = 100.
        self.infinity = 1000000
        self.num = 0
        self.market_num_indicate = 0
        self.power_aggregation = []
        self.current_power = None
        self.demand_aggregation_master = {}
        self.demand_aggregation_working = {}
        self.agent_name = agent_name
        self.demand_curve = []
        for market in self.market_name:
            self.join_market(self.market, SELLER, self.reservation_callback,
                             self.offer_callback, None, self.price_callback,
                             self.error_callback)
            self.demand_curve.append(PolyLine())

        self.building_topic = building_topic
        self.devices = devices
Пример #21
0
    def create_demand_curve(self):
        self.demand_curve = PolyLine()
        pMin = 10
        pMax = 100

        if (self.hvacAvail > 0):
            self.demand_curve.add(
                Point(price=min(pMin, pMax),
                      quantity=max(self.qMin, self.qMax) * self.Pabsnom))
            self.demand_curve.add(
                Point(price=max(pMin, pMax),
                      quantity=min(self.qMin, self.qMax) * self.Pabsnom))
        else:
            self.demand_curve.add(Point(price=max(pMin, pMax), quantity=0))
            self.demand_curve.add(Point(price=min(pMin, pMax), quantity=0))
        return self.demand_curve
Пример #22
0
    def create_demand_curve(self, index, hvac_index, temp, oat):
        _log.debug(
            "{} debug demand_curve1 - index: {} - hvac_index: {}".format(
                self.agent_name, index, hvac_index))
        demand_curve = PolyLine()
        prices = self.determine_prices()

        for i in range(len(prices)):
            if self.hvac_avail[hvac_index]:
                temp_stpt = self.tsets[i]
            else:
                temp_stpt = self.tMinAdjUnoc
            ontime = self.on[index]
            offtime = self.off[index]
            on = 0
            t = float(temp)
            for j in range(60):
                if ontime and t > temp_stpt + 0.8 and ontime > self.onmin:
                    offtime = 1
                    ontime = 0
                    t = self.getT(t, oat, 0, hvac_index)
                elif ontime:
                    offtime = 0
                    ontime += 1
                    on += 1
                    t = self.getT(t, oat, 1, hvac_index)
                elif offtime and t < temp_stpt - 0.8 and offtime > self.offmin:
                    offtime = 0
                    ontime = 1
                    on += 1
                    t = self.getT(t, oat, 1, hvac_index)
                elif offtime:
                    offtime += 1
                    ontime = 0
                    t = self.getT(t, oat, 0, hvac_index)
                _log.debug(
                    "{} Debug demand_curve2 - t: {} - temp_stpt: {} - ontime: {} - on: {}"
                    .format(self.agent_name, t, temp_stpt, ontime, on))

            demand_curve.add(
                Point(price=prices[i], quantity=on / 60.0 * self.Qrate))
            _log.debug("{} debug demand_curve3 on {} - curve: {}".format(
                self.agent_name, on, demand_curve.points))
        _log.debug("{} debug demand_curve4 - curve: {}".format(
            self.agent_name, demand_curve.points))
        return demand_curve
Пример #23
0
 def electric_price_callback(self, timestamp, market_name, buyer_seller,
                             price, quantity):
     _log.debug("{}: cleared price {} for {} at timestep {}".format(
         self.agent_name, price, market_name, timestamp))
     self.report_cleared_price(buyer_seller, market_name, price, quantity,
                               timestamp)
     if price is not None:
         self.make_air_market_offer(price)
         _log.debug("{}: agent making offer on air market".format(
             self.agent_name))
     else:
         supply_curve = PolyLine()
         supply_curve.add(Point(price=10, quantity=0.1))
         supply_curve.add(Point(price=10, quantity=0.1))
         success, message = self.make_offer(self.air_market_name, SELLER,
                                            supply_curve)
         if success:
             _log.debug("price_check: just use the place holder")
Пример #24
0
    def create_demand_curve(self):
        self.demand_curve = PolyLine()
        pMin = 10
        pMax = 100

        if (self.hvacAvail > 0):
            self.demand_curve.add(Point(price=min(pMin, pMax),quantity=max(self.qMin, self.qMax)*self.Pabsnom))
            self.demand_curve.add(Point(price=max(pMin, pMax),quantity=min(self.qMin, self.qMax)*self.Pabsnom))
        else:
            self.demand_curve.add(Point(price=max(pMin, pMax), quantity=0))
            self.demand_curve.add(Point(price=min(pMin, pMax),quantity=0))
        return self.demand_curve
Пример #25
0
 def init_markets(self):
     """
     Join markets.  For TNS will join 24 market or 1 market
     for real-time price scenario.
     :return: None
     """
     for market in self.market_list:
         _log.debug("Join market: %s  --  %s", self.core.identity, market)
         self.join_market(market, BUYER, None, self.offer_callback, None,
                          self.price_callback, self.error_callback)
         self.update_flag.append(False)
         self.demand_curve.append(PolyLine())
Пример #26
0
    def combine_withoutincrement(lines):

        # we return a new PolyLine which is a composite (summed horizontally) of inputs
        composite = PolyLine()
        if len(lines) < 2:
            if isinstance(lines[0], list):
                for point in lines[0]:
                    composite.add(Point(point[0], point[1]))
                return composite
            return lines[0]
        # find the range defined by the curves
        ys = []
        for l in lines:
            ys = ys + l.vectorize()[1]

        ys = remove(ys)

        ys.sort(reverse=True)
        for y in ys:
            xt = None
            for line in lines:
                x = line.x(y)
                if x is not None:
                    xt = x if xt is None else xt + x
            composite.add(Point(xt, y))
        return composite
Пример #27
0
    def create_demand_curve(self, market_index, sched_index, occupied):
        _log.debug("{} debug demand_curve - index: {} - sched: {}".format(self.agent_name,
                                                                          market_index,
                                                                          sched_index))
        demand_curve = PolyLine()
        prices = self.determine_prices()
        ct_flx = []
        for i in range(len(prices)):
            if occupied:
                _set = self.ct_flexibility[i]
            else:
                _set = self.off_setpoint
            ct_flx.append(_set)
            q = self.get_q(_set, sched_index, market_index, occupied)
            demand_curve.add(Point(price=prices[i], quantity=q))

        ct_flx = [min(ct_flx), max(ct_flx)] if ct_flx else []
        topic_suffix = "/".join([self.agent_name, "DemandCurve"])
        message = {"MarketIndex": market_index, "Curve": demand_curve.tuppleize(), "Commodity": self.commodity}
        _log.debug("{} debug demand_curve - curve: {}".format(self.agent_name, demand_curve.points))
        self.publish_record(topic_suffix, message)
        return demand_curve
Пример #28
0
    def settle(self):
        enough_buys = len(self._buy_offers) > 0
        enough_sells = len(self._sell_offers) > 0
        if enough_buys:
            demand_curve = self._aggregate(self._buy_offers)
        else:
            _log.debug("There are no buy offers.")
        if enough_sells:
            supply_curve = self._aggregate(self._sell_offers)
        else:
            _log.debug("There are no sell offers.")

        if enough_buys and enough_sells:
            intersection = PolyLine.intersection(demand_curve, supply_curve)
        else:
            intersection = None, None, {}

        quantity = intersection[0]
        price = intersection[1]
        aux = PolyLine.compare(demand_curve, supply_curve)

        return quantity, price, aux
Пример #29
0
 def air_aggregate_callback(self, timestamp, market_name, buyer_seller,
                            aggregate_air_demand):
     if buyer_seller == BUYER:
         _log.debug("{} - Received aggregated {} curve".format(
             self.agent_name, market_name))
         electric_demand = self.create_electric_demand_curve(
             aggregate_air_demand)
         success, message = self.make_offer(self.electric_market_name,
                                            BUYER, electric_demand)
         if success:
             _log.debug("{}: make a offer for {}".format(
                 self.agent_name, market_name))
         else:
             _log.debug("{}: offer for the {} was rejected".format(
                 self.agent_name, market_name))
             supply_curve = PolyLine()
             supply_curve.add(Point(price=10, quantity=0.001))
             supply_curve.add(Point(price=10, quantity=0.001))
             success, message = self.make_offer(self.air_market_name,
                                                SELLER, supply_curve)
             _log.debug("{}: offer for {} was accepted: {}".format(
                 self.agent_name, self.air_market_name, success))
Пример #30
0
    def settle(self):
        enough_buys = len(self._buy_offers) > 0
        enough_sells = len(self._sell_offers) > 0
        if enough_buys:
            demand_curve = self._aggregate(self._buy_offers)
        else:
            _log.debug("There are no buy offers.")
        if enough_sells:
            supply_curve = self._aggregate(self._sell_offers)
        else:
            _log.debug("There are no sell offers.")

        if enough_buys and enough_sells:
            intersection = PolyLine.intersection(demand_curve, supply_curve)
        else:
            intersection = None, None, {}

        quantity = intersection[0]
        price = intersection[1]
        aux = PolyLine.compare(demand_curve, supply_curve)

        return quantity, price, aux
Пример #31
0
def create_supply_curve():
    supply_curve = PolyLine()
    price = 0
    quantity = 0
    supply_curve.add(Point(price, quantity))
    price = 1000
    quantity = 1000
    supply_curve.add(Point(price, quantity))
    return supply_curve
Пример #32
0
 def create_air_supply_curve(self, electric_price, electric_quantity):
     supply_curve = PolyLine()
     price = 65
     quantity = 100000
     supply_curve.add(Point(price=price, quantity=quantity))
     price = 65
     quantity = 0  # negative quantities are not real -1*10000
     supply_curve.add(Point(price=price, quantity=quantity))
     return supply_curve
Пример #33
0
def create_demand_curve():
    demand_curve = PolyLine()
    price = 0
    quantity = 1000
    demand_curve.add(Point(price, quantity))
    price = 1000
    quantity = 0
    demand_curve.add(Point(price, quantity))
    return demand_curve
Пример #34
0
 def create_supply_curve(self):
     supply_curve = PolyLine()
     price = self.price
     quantity = self.infinity
     supply_curve.add(Point(price=price, quantity=quantity))
     price = self.price
     quantity = 0
     supply_curve.add(Point(price=price, quantity=quantity))
     return supply_curve
Пример #35
0
    def offer_callback(self, timestamp, market_name, buyer_seller):
        if market_name in self.market_names:
            # Get the price for the corresponding market
            idx = int(market_name.split('_')[-1])
            price = self.prices[idx+1]
            #price *= 1000.  # Convert to mWh to be compatible with the mixmarket

            # Quantity
            min_quantity = 0
            max_quantity = 10000  # float("inf")

            # Create supply curve
            supply_curve = PolyLine()
            supply_curve.add(Point(quantity=min_quantity, price=price))
            supply_curve.add(Point(quantity=max_quantity, price=price))

            # Make offer
            _log.debug("{}: offer for {} as {} at {} - Curve: {} {}".format(self.agent_name,
                                                                         market_name,
                                                                         SELLER,
                                                                         timestamp,
                                                                         supply_curve.points[0], supply_curve.points[1]))
            success, message = self.make_offer(market_name, SELLER, supply_curve)
            _log.debug("{}: offer has {} - Message: {}".format(self.agent_name, success, message))
    def create_supply_curve(self):
        supply_curve = PolyLine()

        if self.demand_limit:
            min_price = self.price_min
            max_price = self.price_max
            supply_curve.add(
                Point(price=min_price, quantity=self.demand_limit_threshold))
            supply_curve.add(
                Point(price=max_price, quantity=self.demand_limit_threshold))
        else:
            if self.prices is None:
                price = self.price
            elif self.price_index < len(self.prices) - 1:
                price = float(self.prices[self.price_index])
                self.price_index = self.price_index + 1
            else:
                self.price_index = 0
                price = float(self.prices[self.price_index])

            supply_curve.add(Point(price=price, quantity=self.infinity))
            supply_curve.add(Point(price=price, quantity=0.0))

        return supply_curve
Пример #37
0
def test_poly_line_sum_first_none():
    sum = PolyLine.sum(None,2)
    assert sum == 2
Пример #38
0
def test_poly_line_min_first_none():
    min = PolyLine.min(None,2)
    assert min == 2
Пример #39
0
def test_poly_line_add_points_is_sorted():
    line = PolyLine()
    line.add(Point(4,8))
    line.add(Point(2,4))
    assert line.points[0].x == 2
Пример #40
0
    def combine(lines, increment):

        # we return a new PolyLine which is a composite (summed horizontally) of inputs
        composite = PolyLine()

        # find the range defined by the curves
        minY = None
        maxY = None
        for l in lines:
            minY = PolyLine.min(minY, l.min_y())
            maxY = PolyLine.max(maxY, l.max_y())

        # special case if the lines are already horizontal or None
        if minY == maxY:
            minSumX = None
            maxSumX = None
            for line in lines:
                minX = None
                maxX = None
                for point in line.points:
                    minX = PolyLine.min(minX, point.x)
                    maxX = PolyLine.max(maxX, point.x)
                minSumX = PolyLine.sum(minSumX, minX)
                maxSumX = PolyLine.sum(maxSumX, maxX)
            composite.add(Point(minSumX, minY))
            if minX != maxX:
                composite.add(Point(maxSumX, maxY))
            return composite

        # create an array of ys in equal increments, with highest first
        # this is assuming that price decreases with increase in demand (buyers!)
        # but seems to work with multiple suppliers?
        ys = sorted(np.linspace(minY, maxY, num=increment), reverse=True)
        # print ys
        # print minY, maxY

        # now find the cumulative x associated with each y in the array
        # starting with the highest y
        for y in ys:
            xt = None
            for line in lines:
                x = line.x(y, left=np.nan)
                # print x, y
                if x is not None:
                    xt = x if xt is None else xt + x
            composite.add(Point(xt, y))

        return composite
Пример #41
0
def test_poly_line_intersection_not_none():
    demand = create_demand_curve()
    supply = create_supply_curve()
    intersection = PolyLine.intersection(demand, supply)
    assert intersection is not None
Пример #42
0
def test_poly_line_min():
    min = PolyLine.min(1,2)
    assert min == 1
Пример #43
0
def test_poly_line_sum():
    sum = PolyLine.sum(1,2)
    assert sum == 3
Пример #44
0
def test_poly_line_intersection_yeilds_two():
    demand = create_demand_curve()
    supply = create_supply_curve()
    intersection = PolyLine.intersection(demand, supply)
    assert len(intersection) == 2
Пример #45
0
def test_poly_line_max():
    max = PolyLine.max(1,2)
    assert max == 2
Пример #46
0
def test_poly_line_min_second_none():
    min = PolyLine.min(1,None)
    assert min == 1
Пример #47
0
def test_poly_line_sum_second_none():
    sum = PolyLine.sum(1,None)
    assert sum == 1
Пример #48
0
def test_poly_line_add_one_point():
    line = PolyLine()
    line.add(Point(4,8))
    assert len(line.points) == 1
Пример #49
0
class LightAgent(MarketAgent, FirstOrderZone):
    """
    The SampleElectricMeterAgent serves as a sample of an electric meter that
    sells electricity for a single building at a fixed price.
    """
    def __init__(self, market_name,agent_name,k,qmax,Pabsnom,nonResponsive,verbose_logging,subscribing_topic, **kwargs):
        super(LightAgent, self).__init__(verbose_logging, **kwargs)
        self.market_name = market_name
        self.agent_name = agent_name        
        self.k = k
        self.qmax = qmax
        self.Pabsnom=Pabsnom        
        self.nonResponsive = nonResponsive
        self.iniState()
        self.subscribing_topic=subscribing_topic
        self.join_market(self.market_name, BUYER, None, self.offer_callback, None, self.price_callback, self.error_callback)

    @Core.receiver('onstart')
    def setup(self, sender, **kwargs):
        _log.debug('Subscribing to '+'devices/CAMPUS/BUILDING1/AHU1/all')
        self.vip.pubsub.subscribe(peer='pubsub',
                                  prefix='devices/CAMPUS/BUILDING1/AHU1/all',
                                  callback=self.updateState)

    def offer_callback(self, timestamp, market_name, buyer_seller):
        result,message=self.make_offer(market_name, buyer_seller, self.create_demand_curve())
        _log.debug("results of the make offer {}".format(result))
        if not result:
            _log.debug("the new lightingt (maintain{}".format(self.qMax))
            gevent.sleep(random.random())
            self.vip.rpc.call('platform.actuator','set_point', self.agent_name,self.subscribing_topic+'/'+self.agent_name,round(self.qNorm,2)).get(timeout=6)

    def create_demand_curve(self):
        self.demand_curve = PolyLine()
        pMin = 10
        pMax = 100

        if (self.hvacAvail > 0):
            self.demand_curve.add(Point(price=min(pMin, pMax),quantity=max(self.qMin, self.qMax)*self.Pabsnom))
            self.demand_curve.add(Point(price=max(pMin, pMax),quantity=min(self.qMin, self.qMax)*self.Pabsnom))
        else:
            self.demand_curve.add(Point(price=max(pMin, pMax), quantity=0))
            self.demand_curve.add(Point(price=min(pMin, pMax),quantity=0))
        return self.demand_curve

    def iniState(self):
        self.hvacAvail = 1
        self.pClear = None
        self.qMin = 0.7
        self.qMax = self.qmax
        self.qNorm=self.qMax
        self.qClear=self.qNorm
 

    def updateState(self, peer, sender, bus, topic, headers, message):
        '''Subscribe to device data from message bus
        '''
        _log.debug('Received one new dataset')
        info = {}
        for key, value in message[0].items():
                  info[key] = value
        self.hvacAvail = info['SupplyFanStatus']
        if (self.hvacAvail > 0):
              self.qNorm=self.qMax  
        else:
              self.qNorm=0


    def updateSet(self):
        if self.pClear is not None and not self.nonResponsive and self.hvacAvail:
            self.qClear = self.clamp(self.demand_curve.x(self.pClear), self.qMax, self.qMin)
        else:
            self.qClear = 0
#        if self.qClear is None:
#            self.qClear = 0.

    def clamp(self, value, x1, x2):
        minValue = min(x1, x2)
        maxValue = max(x1, x2)
        return min(max(value, minValue), maxValue)        
                        
    def price_callback(self, timestamp, market_name, buyer_seller, price, quantity):
        _log.debug("the price is {}".format(price))
        self.pClear=price
        if self.pClear is not None: 
            self.updateSet()
            _log.debug("the new lightingt is {}".format(self.qClear))
            gevent.sleep(random.random())
            self.vip.rpc.call('platform.actuator','set_point', self.agent_name,self.subscribing_topic+'/'+self.agent_name,round(self.qClear,2)).get(timeout=5)


    def error_callback(self, timestamp, market_name, buyer_seller,  error_code, error_message, aux):
        _log.debug("the new lightingt is {}".format(self.qNorm))
        self.vip.rpc.call('platform.actuator','set_point', self.agent_name,self.subscribing_topic+'/'+self.agent_name,round(self.qNorm,2)).get(timeout=5)
        

    def ease(self, target, current, limit):
        return current - np.sign(current-target)*min(abs(current-target), abs(limit))        
Пример #50
0
def test_poly_line_add_two_points():
    line = PolyLine()
    line.add(Point(4,8))
    line.add(Point(2,4))
    assert len(line.points) == 2
Пример #51
0
def test_poly_line_max_first_none():
    max = PolyLine.max(None,2)
    assert max == 2
Пример #52
0
 def fromTupples(points):
     polyLine = PolyLine()
     for p in points:
         if p is not None and len(p) == 2:
             polyLine.add(Point(p[0], p[1]))
     return polyLine
Пример #53
0
def test_poly_line_no_intersection():
    demand1 = create_demand_curve()
    demand2 = create_demand_curve()
    intersection = PolyLine.intersection(demand1, demand2)
    assert len(intersection) == 2
Пример #54
0
def test_poly_line_max_second_none():
    max = PolyLine.max(1,None)
    assert max == 1