# Topsheet Test title: General results title_en: Scenario 2 title_de: Szenario 2 description: 'description' # Input files ------------------------- files: base: file: "base/bus.general_results.csv" useLastRow: true case2: file: "case2/bus.general_results.csv" useLastRow: true # These are text entry boxes in the UI # Calculations ------------------------ # these are evaluated top down! calculations: total_m: '{case2.drivenDistance}' total_km: 'round(total_m/100)/10' parkingSearch_m: '{case2.drivenDistance_parkingSearch}' parkingSearch_km: 'round(parkingSearch_m/100)/10' parkingTotal_m: '{case2.drivenDistance_parkingTotal}' parkingTotal_km: 'round(parkingTotal_m/100)/10' parkingSearch_pct: 'round(parkingSearch_m / total_m *1000)/10' parkingTotal_pct: 'round(parkingTotal_m / total_m *1000)/10' parkingSearchOfParking_pct: 'round(parkingSearch_m / parkingTotal_m *1000)/10' parkingSearchDurations: '{case2.parkingSearchDurations}' averageParkingSearchDurations: round(parkingSearchDurations / {case2.numberParkingActivities} /60 *10)/10 averageParkingSearchDistances: round(parkingSearch_km / {case2.numberParkingActivities} *10)/10 CO2_total: 'round({case2.CO2_TOTAL} /1000)' # Table rows outputs: - title_en: " " title_de: " " value: total_km - title_en: " " title_de: " " value: parkingSearch_km - title_en: " " title_de: " " value: parkingSearch_pct - title_en: " " title_de: " " value: parkingTotal_km - title_en: " " title_de: " " value: parkingTotal_pct - title_en: " " title_de: " " value: parkingSearchOfParking_pct - title_en: " " title_de: " " value: averageParkingSearchDurations - title_en: " " title_de: " " value: averageParkingSearchDistances - title_en: " " title_de: " " value: CO2_total