mirror of https://github.com/ANL-CEEESA/RELOG.git
parent
5e5655f188
commit
eb2003a059
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 5ea3e10139afdf0fc6e721a000dc5bc29a975ac4
|
@ -0,0 +1,23 @@
|
|||||||
|
export interface CircularPlant {
|
||||||
|
id: string;
|
||||||
|
x: number;
|
||||||
|
y: number;
|
||||||
|
|
||||||
|
input?: string; // optional product name
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface CircularProduct {
|
||||||
|
id: string;
|
||||||
|
x: number;
|
||||||
|
y: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface CircularData {
|
||||||
|
plants: Record<string, CircularPlant>;
|
||||||
|
|
||||||
|
products: Record<string, CircularProduct>;
|
||||||
|
|
||||||
|
parameters: Record<string, any>; // Any parameters, ex: simulation years, costs
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue