File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11/**
22 * @brief Calculator class for performing Lambda Iteration-based Economic Load Dispatch.
3+ *
34 * This class computes the optimal power distribution among generators
45 * to minimize the total cost while meeting a specified power demand.
6+ *
7+ * @author Sree Sai Nandini
8+ * @version 1.0
9+ * @see Generator
10+ * @see InputLoader
11+ * @see Main
512 */
13+
614public class ELDCalculator {
715 private float lambda ;
816 private Generator [] genArray ;
Original file line number Diff line number Diff line change 1919 *
2020 * @author Sree Sai Nandini
2121 * @version 1.0
22+ * @see ELDCalculator
23+ * @see InputLoader
24+ * @see Main
2225 */
2326
2427public class Generator {
Original file line number Diff line number Diff line change 1111 *
1212 * @author Sree Sai Nandini
1313 * @version 1.0
14+ * @see Generator
15+ * @see ELDCalculator
16+ * @see Main
1417 */
1518public class InputLoader {
1619
Original file line number Diff line number Diff line change 11/**
22 * @brief Main class to run the Economic Load Dispatch (ELD) calculator.
3+ *
34 * This class initializes the generator data and total demand,
45 * then invokes the ELDCalculator to compute the optimal power distribution.
6+ *
7+ * @author Sree Sai Nandini
8+ * @version 1.0
9+ * @see Generator
10+ * @see InputLoader
11+ * @see ELDCalculator
512 */
613public class Main {
714
You can’t perform that action at this time.
0 commit comments