Spaces:
Running
Running
File size: 8,990 Bytes
b81a86b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 | """
AgriFlow Matching Engine β Layer 2 (Multi-Objective Scoring)
=============================================================
5-dimensi weighted scoring dari Section 5.5.4:
Distance 22% β Volume 22% β Price 22% β Perishability 18% β Climate 16%
Setiap komponen dinormalisasi 0-1, lalu di-weight & dikalikan 100.
Author: AgriFlow Team
Version: 9.0
"""
from __future__ import annotations
from typing import Dict, Optional
from .constraints import distance_between, haversine_km
from .models import (
DemandNode, LogisticsContext, ScoreBreakdown, SupplyNode, WeatherForecast,
)
# =============================================================================
# 1. DISTANCE SCORE β Lebih dekat lebih baik
# =============================================================================
def distance_score(s: SupplyNode, d: DemandNode) -> tuple[float, float]:
"""
Return (score 0-1, distance_km).
Linear decay: 0 km β 1.0, MAX_DISTANCE β 0.0.
"""
dist_km = distance_between(s, d)
max_viable = s.commodity.max_distance_km
score = max(0.0, 1.0 - dist_km / max_viable)
return score, dist_km
# =============================================================================
# 2. VOLUME SCORE β Surplus dan deficit harus seimbang
# =============================================================================
def volume_score(s: SupplyNode, d: DemandNode) -> float:
"""
v11 fix: coverage-of-demand model.
Score = min(supply, demand) / demand.volume_tons.
Range [0, 1]:
- Perfect coverage (supply >= demand) β 1.0
- Partial coverage (supply < demand, e.g. 5t/100t) β 0.05
- Demand fully met β score reflects demand satisfaction, not surplus
efficiency. Excess surplus akan di-split ke deficit lain di Layer 3
allocation (greedy_match_tier2 partial-volume logic).
Rasional fix v11:
Formulasi lama (min/max) punish big-producer-to-small-deficit matches β
Tuban 800t beras β Surabaya 100t demand dapat score 0.125 padahal
match itu adalah pattern paling realistis untuk supply chain beras
Indonesia (1 sentra besar memasok many smaller markets). Formulasi
coverage-of-demand mengevaluasi kualitas match dari perspektif buyer,
yang adalah unit utama yang Layer 3 allocate.
Skenario A3 (Volume Mismatch Drastis) tetap detected via:
- Score rendah saat supply << demand (di sini)
- Flag VOLUME_MISMATCH_DRASTIS saat ratio < 0.20 (di engine.py
post-processing β flag terpisah dari score, untuk warning UX)
"""
if d.volume_tons == 0:
return 0.0
matched = min(s.volume_tons, d.volume_tons)
return matched / d.volume_tons
# =============================================================================
# 3. PRICE SCORE β Selisih harga Γ volume = potensi profit petani
# =============================================================================
def estimate_logistics_cost_per_kg(
distance_km: float, logistics: LogisticsContext
) -> float:
"""
Estimasi biaya logistik per kg.
Formula sederhana: BBM cost / volume per truck + handling fixed.
Asumsi:
- Truck colt diesel kapasitas 5 ton
- Handling fixed Rp 200/kg (bongkar muat + admin)
"""
bbm_per_km = logistics.bbm_price_idr_per_liter / logistics.truck_consumption_km_per_liter
bbm_cost_total = bbm_per_km * distance_km
cost_per_kg_bbm = bbm_cost_total / 5000.0 # 5 ton per truk
handling_fixed = 200.0 # Rp/kg
return cost_per_kg_bbm + handling_fixed
def price_score(
s: SupplyNode,
d: DemandNode,
distance_km: float,
logistics: LogisticsContext,
) -> float:
"""
Arbitrage = (harga deficit - harga surplus - logistik) / harga surplus.
Normalize: 0% β 0, β₯50% β 1.0.
Negative arbitrage (lossy match) β 0.
Skenario E5 Kenaikan BBM mempengaruhi via logistics.bbm_price.
"""
if s.price_per_kg <= 0:
return 0.0
logistics_cost_per_kg = estimate_logistics_cost_per_kg(distance_km, logistics)
arbitrage = (d.price_per_kg - s.price_per_kg - logistics_cost_per_kg) / s.price_per_kg
return min(1.0, max(0.0, arbitrage / 0.50))
# =============================================================================
# 4. PERISHABILITY SCORE β Sisa shelf life harus cukup untuk transit
# =============================================================================
def perishability_score(
s: SupplyNode,
d: DemandNode,
distance_km: float,
logistics: LogisticsContext,
) -> float:
"""
Sisa hari segar setelah transit. Margin >5 hari β 1.0, <1 hari β 0.
Skenario yang relevan:
- C1 Ramadan Spike β bobot perishability di-up oleh engine
- D1 Banjir Rute β transit lebih lama β score turun
"""
transit_days = (
distance_km / logistics.avg_speed_km_per_hour / logistics.transit_hours_per_day
)
remaining = s.commodity.max_fresh_age_days - s.harvest_age_days
safety_margin = remaining - transit_days
if safety_margin < 1:
return 0.0
return min(1.0, safety_margin / 5.0)
# =============================================================================
# 5. CLIMATE SCORE β Cuaca buruk di rute = penalti
# =============================================================================
def climate_score(
s: SupplyNode,
d: DemandNode,
weather: Optional[WeatherForecast] = None,
) -> float:
"""
Pakai forecast hujan max di rute selama transit window.
Tier:
rain_mm > 50 β 0.3 (hujan deras, transit berisiko)
rain_mm > 20 β 0.6 (hujan sedang)
rain_mm <= 20 β 1.0 (cerah/ringan, optimal)
Default 0.7 jika weather data tidak tersedia (skenario fail-safe).
Skenario D1 Banjir Rute ditangani di sini.
"""
if weather is None:
return 0.7 # neutral fallback
if weather.max_rain_mm > 50:
return 0.3
elif weather.max_rain_mm > 20:
return 0.6
else:
return 1.0
# =============================================================================
# COMPOSITE BASE SCORE
# =============================================================================
# Skema bobot default Section 5.5.4
DEFAULT_WEIGHTS: Dict[str, float] = {
"distance": 0.22,
"volume": 0.22,
"price": 0.22,
"perishability": 0.18,
"climate": 0.16,
}
# Skenario C1 Ramadan: bobot perishability & price naik
RAMADAN_WEIGHTS: Dict[str, float] = {
"distance": 0.20,
"volume": 0.20,
"price": 0.20,
"perishability": 0.22,
"climate": 0.18,
}
# Skenario E4 Import policy: bobot price turun
IMPORT_POLICY_WEIGHTS: Dict[str, float] = {
"distance": 0.25,
"volume": 0.25,
"price": 0.10,
"perishability": 0.22,
"climate": 0.18,
}
# Skenario C4 β Imlek (Chinese New Year): urban demand spike untuk
# beras premium + jeruk + ayam. Mirip Ramadan tapi window lebih pendek
# (H-7 sebelum Imlek). Bobot perishability + price naik moderate.
IMLEK_WEIGHTS: Dict[str, float] = {
"distance": 0.20,
"volume": 0.20,
"price": 0.22,
"perishability": 0.21,
"climate": 0.17,
}
# Skenario C4 β Natal (Christmas): demand spike di Indonesia Timur
# (NTT, Papua, Sulut, Maluku) β sembako + daging. Window H-21 to H-1.
NATAL_WEIGHTS: Dict[str, float] = {
"distance": 0.20,
"volume": 0.22,
"price": 0.22,
"perishability": 0.20,
"climate": 0.16,
}
# Skenario C4 β School start (mid-Juli + mid-Januari): kos-kosan demand
# untuk beras + minyak + telur. Bobot lebih menekankan volume + price.
SCHOOL_START_WEIGHTS: Dict[str, float] = {
"distance": 0.22,
"volume": 0.24,
"price": 0.22,
"perishability": 0.16,
"climate": 0.16,
}
def compute_score(
s: SupplyNode,
d: DemandNode,
logistics: Optional[LogisticsContext] = None,
weather: Optional[WeatherForecast] = None,
weights: Optional[Dict[str, float]] = None,
) -> tuple[ScoreBreakdown, float, float]:
"""
Layer 2 main entrypoint.
Return (breakdown, base_score 0-100, distance_km).
"""
logistics = logistics or LogisticsContext()
weights = weights or DEFAULT_WEIGHTS
# Hitung distance sekali, reuse di score lain
dist_score, dist_km = distance_score(s, d)
vol_score = volume_score(s, d)
pr_score = price_score(s, d, dist_km, logistics)
perish_score = perishability_score(s, d, dist_km, logistics)
clim_score = climate_score(s, d, weather)
breakdown = ScoreBreakdown(
distance=dist_score,
volume=vol_score,
price=pr_score,
perishability=perish_score,
climate=clim_score,
)
base_score = (
weights["distance"] * dist_score
+ weights["volume"] * vol_score
+ weights["price"] * pr_score
+ weights["perishability"] * perish_score
+ weights["climate"] * clim_score
) * 100
return breakdown, base_score, dist_km
|