muse2/input/commodity/demand_slicing.rs
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 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
//! Demand slicing determines how annual demand is distributed across the year.
use super::demand::*;
use crate::input::*;
use crate::time_slice::{TimeSliceID, TimeSliceInfo};
use anyhow::{ensure, Context, Result};
use itertools::Itertools;
use serde::Deserialize;
use std::collections::{HashMap, HashSet};
use std::path::Path;
use std::rc::Rc;
const DEMAND_SLICING_FILE_NAME: &str = "demand_slicing.csv";
#[derive(Clone, Deserialize)]
struct DemandSlice {
commodity_id: String,
region_id: String,
time_slice: String,
#[serde(deserialize_with = "deserialise_proportion_nonzero")]
fraction: f64,
}
/// A map relating commodity, region and time slice to the fraction of annual demand
pub type DemandSliceMap = HashMap<DemandSliceMapKey, f64>;
/// A key for a [`DemandSliceMap`]
#[derive(PartialEq, Eq, Hash, Debug)]
pub struct DemandSliceMapKey {
/// The commodity to which this demand applies
pub commodity_id: Rc<str>,
/// The region to which this demand applies
pub region_id: Rc<str>,
/// The time slice to which this demand applies
pub time_slice: TimeSliceID,
}
/// Read demand slices from specified model directory.
///
/// # Arguments
///
/// * `model_dir` - Folder containing model configuration files
/// * `commodity_ids` - All possible IDs of commodities
/// * `region_ids` - All possible IDs for regions
/// * `commodity_regions` - Pairs of commodities + regions listed in demand CSV file
/// * `time_slice_info` - Information about seasons and times of day
pub fn read_demand_slices(
model_dir: &Path,
commodity_ids: &HashSet<Rc<str>>,
region_ids: &HashSet<Rc<str>>,
commodity_regions: &CommodityRegionPairs,
time_slice_info: &TimeSliceInfo,
) -> Result<DemandSliceMap> {
let file_path = model_dir.join(DEMAND_SLICING_FILE_NAME);
let demand_slices_csv = read_csv(&file_path)?;
read_demand_slices_from_iter(
demand_slices_csv,
commodity_ids,
region_ids,
commodity_regions,
time_slice_info,
)
.with_context(|| input_err_msg(file_path))
}
/// Read demand slices from an iterator
fn read_demand_slices_from_iter<I>(
iter: I,
commodity_ids: &HashSet<Rc<str>>,
region_ids: &HashSet<Rc<str>>,
commodity_regions: &CommodityRegionPairs,
time_slice_info: &TimeSliceInfo,
) -> Result<DemandSliceMap>
where
I: Iterator<Item = DemandSlice>,
{
let mut demand_slices = DemandSliceMap::new();
for slice in iter {
let commodity_id = commodity_ids.get_id(&slice.commodity_id)?;
let region_id = region_ids.get_id(&slice.region_id)?;
ensure!(
commodity_regions.contains(&(Rc::clone(&commodity_id), Rc::clone(®ion_id))),
"Demand slicing provided for commodity {commodity_id} in region {region_id} \
without a corresponding entry in demand CSV file"
);
// We need to know how many time slices are covered by the current demand slice entry and
// how long they are relative to one another so that we can divide up the demand for this
// entry appropriately
let ts_selection = time_slice_info.get_selection(&slice.time_slice)?;
for (ts, demand_fraction) in time_slice_info.calculate_share(&ts_selection, slice.fraction)
{
let key = DemandSliceMapKey {
commodity_id: Rc::clone(&commodity_id),
region_id: Rc::clone(®ion_id),
time_slice: ts.clone(),
};
// Share demand between the time slices in proportion to duration
ensure!(demand_slices.insert(key, demand_fraction).is_none(),
"Duplicate demand slicing entry (or same time slice covered by more than one entry) \
(commodity: {commodity_id}, region: {region_id}, time slice: {ts})"
);
}
}
validate_demand_slices(commodity_regions, &demand_slices, time_slice_info)?;
Ok(demand_slices)
}
/// Check that the [`DemandSliceMap`] is well formed.
///
/// Specifically, check:
///
/// * It is non-empty
/// * If an entry is provided for any commodity + region pair, there must be entries covering every
/// time slice
/// * The demand fractions for all entries related to a commodity + region pair sum to one
fn validate_demand_slices(
commodity_regions: &CommodityRegionPairs,
demand_slices: &DemandSliceMap,
time_slice_info: &TimeSliceInfo,
) -> Result<()> {
for (commodity_id, region_id) in commodity_regions {
time_slice_info
.iter_ids()
.map(|time_slice| {
let key = DemandSliceMapKey {
commodity_id: Rc::clone(commodity_id),
region_id: Rc::clone(region_id),
time_slice: time_slice.clone(),
};
demand_slices.get(&key).with_context(|| {
format!(
"Demand slice missing for time slice {} (commodity: {}, region {})",
time_slice, commodity_id, region_id
)
})
})
.process_results(|iter| {
check_fractions_sum_to_one(iter.copied()).context("Invalid demand fractions")
})??;
}
Ok(())
}
#[cfg(test)]
mod tests {
use super::*;
use crate::time_slice::TimeSliceID;
use itertools::iproduct;
use std::iter;
#[test]
fn test_read_demand_slices_from_iter() {
let time_slice_info = TimeSliceInfo {
seasons: iter::once("winter".into()).collect(),
times_of_day: iter::once("day".into()).collect(),
fractions: [(
TimeSliceID {
season: "winter".into(),
time_of_day: "day".into(),
},
1.0,
)]
.into_iter()
.collect(),
};
let commodity_ids = HashSet::from_iter(iter::once("COM1".into()));
let region_ids = HashSet::from_iter(iter::once("GBR".into()));
let commodity_regions =
iproduct!(commodity_ids.iter().cloned(), region_ids.iter().cloned()).collect();
// Valid
let demand_slice = DemandSlice {
commodity_id: "COM1".into(),
region_id: "GBR".into(),
time_slice: "winter".into(),
fraction: 1.0,
};
let time_slice = time_slice_info
.get_time_slice_id_from_str("winter.day")
.unwrap();
let key = DemandSliceMapKey {
commodity_id: "COM1".into(),
region_id: "GBR".into(),
time_slice,
};
let expected = DemandSliceMap::from_iter(iter::once((key, 1.0)));
assert_eq!(
read_demand_slices_from_iter(
iter::once(demand_slice.clone()),
&commodity_ids,
®ion_ids,
&commodity_regions,
&time_slice_info,
)
.unwrap(),
expected
);
// Valid, multiple time slices
{
let time_slice_info = TimeSliceInfo {
seasons: ["winter".into(), "summer".into()].into_iter().collect(),
times_of_day: ["day".into(), "night".into()].into_iter().collect(),
fractions: [
(
TimeSliceID {
season: "summer".into(),
time_of_day: "day".into(),
},
3.0 / 16.0,
),
(
TimeSliceID {
season: "summer".into(),
time_of_day: "night".into(),
},
5.0 / 16.0,
),
(
TimeSliceID {
season: "winter".into(),
time_of_day: "day".into(),
},
3.0 / 16.0,
),
(
TimeSliceID {
season: "winter".into(),
time_of_day: "night".into(),
},
5.0 / 16.0,
),
]
.into_iter()
.collect(),
};
let demand_slices = [
DemandSlice {
commodity_id: "COM1".into(),
region_id: "GBR".into(),
time_slice: "winter".into(),
fraction: 0.5,
},
DemandSlice {
commodity_id: "COM1".into(),
region_id: "GBR".into(),
time_slice: "summer".into(),
fraction: 0.5,
},
];
let expected = DemandSliceMap::from_iter([
(
DemandSliceMapKey {
commodity_id: "COM1".into(),
region_id: "GBR".into(),
time_slice: TimeSliceID {
season: "summer".into(),
time_of_day: "day".into(),
},
},
3.0 / 16.0,
),
(
DemandSliceMapKey {
commodity_id: "COM1".into(),
region_id: "GBR".into(),
time_slice: TimeSliceID {
season: "summer".into(),
time_of_day: "night".into(),
},
},
5.0 / 16.0,
),
(
DemandSliceMapKey {
commodity_id: "COM1".into(),
region_id: "GBR".into(),
time_slice: TimeSliceID {
season: "winter".into(),
time_of_day: "day".into(),
},
},
3.0 / 16.0,
),
(
DemandSliceMapKey {
commodity_id: "COM1".into(),
region_id: "GBR".into(),
time_slice: TimeSliceID {
season: "winter".into(),
time_of_day: "night".into(),
},
},
5.0 / 16.0,
),
]);
assert_eq!(
read_demand_slices_from_iter(
demand_slices.into_iter(),
&commodity_ids,
®ion_ids,
&commodity_regions,
&time_slice_info,
)
.unwrap(),
expected
);
}
// Empty CSV file
assert!(read_demand_slices_from_iter(
iter::empty(),
&commodity_ids,
®ion_ids,
&commodity_regions,
&time_slice_info,
)
.is_err());
// Bad commodity
let demand_slice = DemandSlice {
commodity_id: "COM2".into(),
region_id: "GBR".into(),
time_slice: "winter.day".into(),
fraction: 1.0,
};
assert!(read_demand_slices_from_iter(
iter::once(demand_slice.clone()),
&commodity_ids,
®ion_ids,
&commodity_regions,
&time_slice_info,
)
.is_err());
// Bad region
let demand_slice = DemandSlice {
commodity_id: "COM1".into(),
region_id: "FRA".into(),
time_slice: "winter.day".into(),
fraction: 1.0,
};
assert!(read_demand_slices_from_iter(
iter::once(demand_slice.clone()),
&commodity_ids,
®ion_ids,
&commodity_regions,
&time_slice_info,
)
.is_err());
// Bad time slice selection
let demand_slice = DemandSlice {
commodity_id: "COM1".into(),
region_id: "GBR".into(),
time_slice: "summer".into(),
fraction: 1.0,
};
assert!(read_demand_slices_from_iter(
iter::once(demand_slice.clone()),
&commodity_ids,
®ion_ids,
&commodity_regions,
&time_slice_info,
)
.is_err());
{
// Some time slices uncovered
let time_slice_info = TimeSliceInfo {
seasons: ["winter".into(), "summer".into()].into_iter().collect(),
times_of_day: iter::once("day".into()).collect(),
fractions: [
(
TimeSliceID {
season: "winter".into(),
time_of_day: "day".into(),
},
0.5,
),
(
TimeSliceID {
season: "summer".into(),
time_of_day: "day".into(),
},
0.5,
),
]
.into_iter()
.collect(),
};
let demand_slice = DemandSlice {
commodity_id: "COM1".into(),
region_id: "GBR".into(),
time_slice: "winter".into(),
fraction: 1.0,
};
assert!(read_demand_slices_from_iter(
iter::once(demand_slice.clone()),
&commodity_ids,
®ion_ids,
&commodity_regions,
&time_slice_info,
)
.is_err());
}
// Same time slice twice
let demand_slice = DemandSlice {
commodity_id: "COM1".into(),
region_id: "GBR".into(),
time_slice: "winter.day".into(),
fraction: 0.5,
};
assert!(read_demand_slices_from_iter(
iter::repeat_n(demand_slice.clone(), 2),
&commodity_ids,
®ion_ids,
&commodity_regions,
&time_slice_info,
)
.is_err());
// Whole season and single time slice conflicting
let demand_slice_season = DemandSlice {
commodity_id: "COM1".into(),
region_id: "GBR".into(),
time_slice: "winter".into(),
fraction: 0.5,
};
assert!(read_demand_slices_from_iter(
[demand_slice, demand_slice_season].into_iter(),
&commodity_ids,
®ion_ids,
&commodity_regions,
&time_slice_info,
)
.is_err());
// Fractions don't sum to one
let demand_slice = DemandSlice {
commodity_id: "COM1".into(),
region_id: "GBR".into(),
time_slice: "winter".into(),
fraction: 0.5,
};
assert!(read_demand_slices_from_iter(
iter::once(demand_slice),
&commodity_ids,
®ion_ids,
&commodity_regions,
&time_slice_info,
)
.is_err());
// No corresponding entry for commodity + region in demand CSV file
let demand_slice = DemandSlice {
commodity_id: "COM1".into(),
region_id: "GBR".into(),
time_slice: "winter".into(),
fraction: 1.0,
};
assert!(read_demand_slices_from_iter(
iter::once(demand_slice),
&commodity_ids,
®ion_ids,
&HashSet::new(),
&time_slice_info,
)
.is_err());
}
}