@@ -893,22 +893,25 @@ def build_B(
893893 prices = pd .read_csv (price_path )
894894
895895 # sturm_r
896- sturm_r_path = private_data_path ("buildings" , "resid_sturm .csv" )
896+ sturm_r_path = private_data_path ("buildings" , "resid_sturm_20250915 .csv" )
897897 # sturm_r_path = package_data_path("buildings", "debug-sturm-resid.csv")
898898 sturm_r = pd .read_csv (sturm_r_path , index_col = 0 )
899899
900900 # sturm_c
901- sturm_c_path = private_data_path ("buildings" , "comm_sturm .csv" )
901+ sturm_c_path = private_data_path ("buildings" , "comm_sturm_20250915 .csv" )
902902 # sturm_c_path = package_data_path("buildings", "debug-sturm-comm.csv")
903903 sturm_c = pd .read_csv (sturm_c_path , index_col = 0 )
904904
905905 # e_use
906- e_use_path = private_data_path ("buildings" , "e_use .csv" )
906+ e_use_path = private_data_path ("buildings" , "e_use_20250915 .csv" )
907907 e_use = pd .read_csv (e_use_path , index_col = 0 )
908+ # Exclude rows with commodity 'resid_cook_non-comm'
909+ e_use = e_use [e_use .commodity != 'resid_cook_non-comm' ]
908910
909911 # afofio
910- afofio_path = private_data_path ("buildings" , "afofio_demand .csv" )
912+ afofio_path = private_data_path ("buildings" , "afofio_demand_20250915 .csv" )
911913 afofio = pd .read_csv (afofio_path , index_col = 0 )
914+ afofio ["value" ] = 0
912915
913916 # demand
914917 expr = "(cool|heat|hotwater|floor|other_uses)"
0 commit comments