TCO Stock and Emissions module¶
t3co.tco.tco_stock_emissions
¶
dropCols(df: pd.DataFrame) -> pd.DataFrame
¶
This helper method drops columns if any row contains ['*']
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df
|
pd.DataFrame
|
Input dataframe |
required |
Returns:
Name | Type | Description |
---|---|---|
df |
pd.DataFrame
|
Output dataframe with dropped dummy columns |
Source code in t3co/tco/tco_stock_emissions.py
stockModel(sales: pd.DataFrame, marketShares: pd.DataFrame, survival: pd.DataFrame, annualTravel: pd.DataFrame, fuelSplit: pd.DataFrame, fuelEfficiency: pd.DataFrame, emissions: pd.DataFrame, vehicleCosts: pd.DataFrame = None, travelCosts: pd.DataFrame = None, fuelCosts: pd.DataFrame = None, insuranceCosts: pd.DataFrame = None, residualCosts: pd.DataFrame = None, downtimeCosts: pd.DataFrame = None, write_files: bool = False) -> Tuple[pd.DataFrame, pd.DataFrame, pd.DataFrame]
¶
This function generates the ownershipCosts dataframe from the dataframes for each cost category
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sales
|
pd.DataFrame
|
Dataframe of yearly number of vehicles sales |
required |
marketShares
|
pd.DataFrame
|
Dataframe of yearly Market Share of selection's vocation per vehicle [veh/veh] |
required |
survival
|
pd.DataFrame
|
Dataframe of yearly Surviving vehicle per each vehicle [veh/veh] |
required |
annualTravel
|
pd.DataFrame
|
Dataframe of vehicle's vmt: Annual Travel [mi/yr] |
required |
fuelSplit
|
pd.DataFrame
|
Dataframe of fraction of travel using each fuel [mi/mi] |
required |
fuelEfficiency
|
pd.DataFrame
|
Dataframe of vehicle's yearly average fuel efficiency [mi/gge] |
required |
emissions
|
pd.DataFrame
|
Dataframe of vehicle's yearly average emissions |
required |
vehicleCosts
|
pd.DataFrame
|
Dataframe of vehicle components costs [dol]. Defaults to None. |
None
|
travelCosts
|
pd.DataFrame
|
Dataframe of maintenance costs [dol/mi]. Defaults to None. |
None
|
fuelCosts
|
pd.DataFrame
|
Dataframe of fuel operating costs [dol/gge]. Defaults to None. |
None
|
insuranceCosts
|
pd.DataFrame
|
Dataframe of yearly insurance costs [dol]. Defaults to None. |
None
|
residualCosts
|
pd.DataFrame
|
Dataframe of yearly residual costs [dol]. Defaults to None. |
None
|
downtimeCosts
|
pd.DataFrame
|
Dataframe of yearly downtime costs [dol]. Defaults to None. |
None
|
write_files
|
bool
|
if True, save vehicleCosts, travelCosts, fuelCosts, insuranceCosts,residualCosts, downtimeCosts . Defaults to False. |
False
|
Returns:
Name | Type | Description |
---|---|---|
stock |
pd.DataFrame
|
Dataframe of stock model of vehicles in the market |
emissions |
pd.DataFrame
|
Dataframe of total emissions |
ownershipCosts |
pd.DataFrame
|
Dataframe of all ownership costs for given selection |
Source code in t3co/tco/tco_stock_emissions.py
Python | |
---|---|
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
|