Skip to content

Commit b89d47b

Browse files
committed
gr41
1 parent 3d92cd8 commit b89d47b

4 files changed

Lines changed: 21 additions & 0 deletions

File tree

src/ELDCalculator.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
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+
614
public class ELDCalculator {
715
private float lambda;
816
private Generator[] genArray;

src/Generator.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
*
2020
* @author Sree Sai Nandini
2121
* @version 1.0
22+
* @see ELDCalculator
23+
* @see InputLoader
24+
* @see Main
2225
*/
2326

2427
public class Generator{

src/InputLoader.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
*
1212
* @author Sree Sai Nandini
1313
* @version 1.0
14+
* @see Generator
15+
* @see ELDCalculator
16+
* @see Main
1417
*/
1518
public class InputLoader{
1619

src/Main.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
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
*/
613
public class Main{
714

0 commit comments

Comments
 (0)