parent
6d9bbaab4e
commit
0cf93e7aa0
@ -0,0 +1,39 @@
|
||||
/*
|
||||
* UnitCommitment.jl: Optimization Package for Security-Constrained Unit Commitment
|
||||
* Copyright (C) 2020-2025, UChicago Argonne, LLC. All rights reserved.
|
||||
* Released under the modified BSD license. See COPYING.md for more details.
|
||||
*/
|
||||
|
||||
import assert from "node:assert";
|
||||
import { preprocess } from "./preprocessing";
|
||||
|
||||
export const PREPROCESSING_TEST_DATA_1: any = {
|
||||
Parameters: {
|
||||
Version: "0.4",
|
||||
"Time horizon (h)": 5,
|
||||
},
|
||||
Buses: {
|
||||
b1: { "Load (MW)": [35.79534, 34.38835, 33.45083, 32.89729, 33.25044] },
|
||||
b2: { "Load (MW)": 10 },
|
||||
b3: { "Load (MW)": [27.3729, 26.29698, 25.58005, 25.15675, 25.4268] },
|
||||
},
|
||||
};
|
||||
|
||||
test("preprocess", () => {
|
||||
const newScenario = preprocess(PREPROCESSING_TEST_DATA_1);
|
||||
assert.deepEqual(newScenario, {
|
||||
Parameters: {
|
||||
Version: "0.4",
|
||||
"Time horizon (h)": 5,
|
||||
"Power balance penalty ($/MW)": 1000,
|
||||
"Scenario name": "s1",
|
||||
"Scenario weight": 1,
|
||||
"Time step (min)": 60,
|
||||
},
|
||||
Buses: {
|
||||
b1: { "Load (MW)": [35.79534, 34.38835, 33.45083, 32.89729, 33.25044] },
|
||||
b2: { "Load (MW)": [10, 10, 10, 10, 10] },
|
||||
b3: { "Load (MW)": [27.3729, 26.29698, 25.58005, 25.15675, 25.4268] },
|
||||
},
|
||||
});
|
||||
});
|
@ -0,0 +1,34 @@
|
||||
// @ts-nocheck
|
||||
|
||||
/*
|
||||
* UnitCommitment.jl: Optimization Package for Security-Constrained Unit Commitment
|
||||
* Copyright (C) 2020-2025, UChicago Argonne, LLC. All rights reserved.
|
||||
* Released under the modified BSD license. See COPYING.md for more details.
|
||||
*/
|
||||
|
||||
import { validate } from "../Validation/validate";
|
||||
|
||||
export const preprocess = (data) => {
|
||||
// Make a copy of the original data
|
||||
let result = JSON.parse(JSON.stringify(data));
|
||||
|
||||
// Run JSON validation and assign default values
|
||||
if (!validate(result)) {
|
||||
console.error(validate.errors);
|
||||
throw Error("Invalid JSON");
|
||||
}
|
||||
|
||||
// Expand scalars into arrays
|
||||
const timeHorizon = result["Parameters"]["Time horizon (h)"];
|
||||
const timeStep = result["Parameters"]["Time step (min)"];
|
||||
const T = (timeHorizon * 60) / timeStep;
|
||||
for (const busName in result["Buses"]) {
|
||||
// @ts-ignore
|
||||
const busData = result["Buses"][busName];
|
||||
const busLoad = busData["Load (MW)"];
|
||||
if (typeof busLoad === "number") {
|
||||
busData["Load (MW)"] = Array(T).fill(busLoad);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
};
|
Loading…
Reference in new issue