From 98a5ee0c588c201b6118a636f5ba3fb623c2d202 Mon Sep 17 00:00:00 2001 From: Andrea Fiorencis Date: Tue, 24 Jun 2025 11:08:09 +0200 Subject: [PATCH] Inserimento dati in input (simulazione FV) --- Fotovoltaico.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Fotovoltaico.py b/Fotovoltaico.py index bcf6835..729e225 100644 --- a/Fotovoltaico.py +++ b/Fotovoltaico.py @@ -7,10 +7,10 @@ import plotly.express as px import plotly.graph_objects as go import pandas as pd -location_ita = 'Biella' # location in Italian -capacity = 100 # kWp -tilt_angle = 30 # gradi -azimuth = 0 # gradi +location_ita = input("Inserisci la località in italiano (es. Biella): ") # location in Italian +capacity = int(input("Inserisci la capacità dell'impianto in kWp (es. 100): ")) # kWp +tilt_angle = int(input("Inserisci l'angolo di inclinazione in gradi (es. 30): ")) # gradi +azimuth = int(input("Inserisci l'azimuth in gradi (es. 0): ")) # gradi num_years = 1 # anni di simulazione derating_factor_percent = 1 # derating factor that reduce the efficiency of the modules in percentage [%]