Running VE-State with this release. Of relevance to this issue are the Household table fields:
- Dvmt
- DailyGGE
- DailyKWH
- AveGPM
- AveKWHPM
AveGPM and AveKWHPM are efficiency measures of the household's powertrains. For households with exclusively either electric or non-electric powertrains, the value is 0. for the powertrain not owned. If a household has both, then both values are non-zero. To get electric and non-electric miles driven, DailyKWH / AveKWHPM was calculated to get electric miles. This aligns with how AveKWHPM appears to be calculated in CalculateTravelDemand.R with AveKwhpm <- TotElecKwh / TotEvDvmt (the hydrocarbon (?) equivalent is AveGpm <- TotFuelGallons / TotHcDvmt).
However, the result of this calculation for both electric and non-electric miles for households with both kinds of powertrains is the same, which is also the same as Dvmt. The ratios between households for DailyGGE and DailyKWH vary, so I'm suspecting that something leading to the TotEvDvmt and TotHcDvmt has caused both to be the same as Dvmt.
Running VE-State with this release. Of relevance to this issue are the Household table fields:
AveGPMandAveKWHPMare efficiency measures of the household's powertrains. For households with exclusively either electric or non-electric powertrains, the value is 0. for the powertrain not owned. If a household has both, then both values are non-zero. To get electric and non-electric miles driven,DailyKWH/AveKWHPMwas calculated to get electric miles. This aligns with howAveKWHPMappears to be calculated inCalculateTravelDemand.RwithAveKwhpm <- TotElecKwh / TotEvDvmt(the hydrocarbon (?) equivalent isAveGpm <- TotFuelGallons / TotHcDvmt).However, the result of this calculation for both electric and non-electric miles for households with both kinds of powertrains is the same, which is also the same as
Dvmt. The ratios between households forDailyGGEandDailyKWHvary, so I'm suspecting that something leading to theTotEvDvmtandTotHcDvmthas caused both to be the same asDvmt.