''Unleashing the Power of Water: Hydropower energy''

preview_player
Показать описание
Hydropower energy is generated by harnessing the enrgy of moving water, typically from rivers or waterfalls. we would like to share our idea about 3 interesting facts, short history, programming the hydopower energy equation and also new idea about hydropower energy for my beloved country Malaysia.

Hi, we are from Universiti Malaysia Kelantan.

0:00 Introduction
Member 1: E23H3041, NOOR KHUZAIRI BIN BACHO
Member 2: E23H3040, INTAN NORLAILY BINTI MUSTAZAIDI
Member 3: E23H2981, MUHAMAD ALIF IFZAM BIN MD AZAM
Member 4: E23H2970, DHARVIND A/L SELVA RATNAM

1:47 Three Interesting Facts about Hydropower Energy
Create a maximum 2 minutes engaging Youtube video presenting three interesting facts about hydropower energy, audience is the public, use simple terms as possible.

5:10 History of Hydropower Energy Progression
Can you tell me an interesting history facts about hydropower energy progression?

6:13 Python coding for Hydropower Energy equation
Is there any popular equation used for Hydropower Energy?
Can you create a python code for this equation? The user will be asked to insert the values of the parameters.

8:42 One improvement for Malaysia
I am an engineer and i want to do a small improvement for the Hydroelectric damns, and then install this Hydroelectric damns in my country Malaysia. The idea must be novel and new and affordable. Can you suggest one idea for the improvement?

---------------------------------------------------------------------------------------------------

def hydropower():
# Get user input for parameters
eta = float(input("Enter the efficiency of the hydropower system (between 0 and 1): "))
rho = float(input("Enter the density of water (in kg/m^3): "))
g = float(input("Enter the acceleration due to gravity (in m/s^2): "))
Q = float(input("Enter the flow rate of water (in cubic meters per second): "))
H = float(input("Enter the height of the water drop (in meters): "))

# Calculate hydropower
power_generated = eta * rho * g * Q * H

print(f"The power generated by the hydropower system is {power_generated} Watts.")

# Run the function
hydropower()
Рекомендации по теме