From 8e93adc36859669834cf5e0eb13ff22fed06f02a Mon Sep 17 00:00:00 2001 From: Andrea Fiorencis Date: Wed, 18 Jun 2025 09:42:14 +0200 Subject: [PATCH] Aggiunta apertura automatica del file CSV per produzione FV --- Fotovoltaico.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Fotovoltaico.py b/Fotovoltaico.py index a5508c0..c691c70 100644 --- a/Fotovoltaico.py +++ b/Fotovoltaico.py @@ -37,4 +37,5 @@ result_ac_energies_gens_derated = suppress_printing(simulate_gens_derated_produc result_ac_energies_to_csv_df = suppress_printing(simulate_unstacked_productivity, result_ac_energies_gens_derated) # create two unstacked dataframe (the other functions work with dictionaries) # ESPORTAZIONE RISULTATI IN CSV -result_ac_energies_to_csv_df.to_csv(path_export, encoding='utf-8') \ No newline at end of file +result_ac_energies_to_csv_df.to_csv(path_export, encoding='utf-8') +os.startfile(path_export) \ No newline at end of file