├── .idea ├── artifacts │ └── JavaFXApp.xml ├── compiler.xml ├── description.html ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── uiDesigner.xml └── vcs.xml ├── README.md ├── SE_PROJECT.iml └── src ├── image ├── Solar_Panel.png ├── Untitled-2.png ├── battery.png ├── bettery1.png ├── house.png ├── pause.png ├── point.gif ├── point1.gif ├── point2.gif ├── point3.gif ├── power-plant.png ├── solar-energy (1).png ├── solar-energy.png ├── turbine.png ├── wind1.png ├── wind2.png ├── wind3.png └── windmill.png └── sample ├── Battery.java ├── Controller.java ├── House.java ├── Main.java ├── SolarEnergy.java ├── WindMill.java └── view.fxml /.idea/artifacts/JavaFXApp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/.idea/artifacts/JavaFXApp.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/.idea/description.html -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/README.md -------------------------------------------------------------------------------- /SE_PROJECT.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/SE_PROJECT.iml -------------------------------------------------------------------------------- /src/image/Solar_Panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/Solar_Panel.png -------------------------------------------------------------------------------- /src/image/Untitled-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/Untitled-2.png -------------------------------------------------------------------------------- /src/image/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/battery.png -------------------------------------------------------------------------------- /src/image/bettery1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/bettery1.png -------------------------------------------------------------------------------- /src/image/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/house.png -------------------------------------------------------------------------------- /src/image/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/pause.png -------------------------------------------------------------------------------- /src/image/point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/point.gif -------------------------------------------------------------------------------- /src/image/point1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/point1.gif -------------------------------------------------------------------------------- /src/image/point2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/point2.gif -------------------------------------------------------------------------------- /src/image/point3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/point3.gif -------------------------------------------------------------------------------- /src/image/power-plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/power-plant.png -------------------------------------------------------------------------------- /src/image/solar-energy (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/solar-energy (1).png -------------------------------------------------------------------------------- /src/image/solar-energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/solar-energy.png -------------------------------------------------------------------------------- /src/image/turbine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/turbine.png -------------------------------------------------------------------------------- /src/image/wind1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/wind1.png -------------------------------------------------------------------------------- /src/image/wind2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/wind2.png -------------------------------------------------------------------------------- /src/image/wind3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/wind3.png -------------------------------------------------------------------------------- /src/image/windmill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/image/windmill.png -------------------------------------------------------------------------------- /src/sample/Battery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/sample/Battery.java -------------------------------------------------------------------------------- /src/sample/Controller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/sample/Controller.java -------------------------------------------------------------------------------- /src/sample/House.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/sample/House.java -------------------------------------------------------------------------------- /src/sample/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/sample/Main.java -------------------------------------------------------------------------------- /src/sample/SolarEnergy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/sample/SolarEnergy.java -------------------------------------------------------------------------------- /src/sample/WindMill.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/sample/WindMill.java -------------------------------------------------------------------------------- /src/sample/view.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noureddinekhiati/Smart_Grid_Simulation/HEAD/src/sample/view.fxml --------------------------------------------------------------------------------