Vehicle Sub-Module
t3co.input_data.vehicle
Vehicle
dataclass
Source code in src/t3co/input_data/vehicle.py
16 17 18 19 20 21 22 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 | |
__new__(*args, **kwargs)
Creates a new instance of the OpportunityCosts class.
Source code in src/t3co/input_data/vehicle.py
40 41 42 43 44 45 | |
from_config(selection, config)
classmethod
Creates a Vehicle instance from the configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
selection |
int
|
The selection index. |
required |
config |
Config
|
The configuration instance. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Self |
Self
|
An instance of the Vehicle class. |
Source code in src/t3co/input_data/vehicle.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | |
from_df(selection, vehicle_df)
classmethod
Creates a Vehicle instance from the vehicle dataframe.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
selection |
int
|
The selection index. |
required |
vehicle_df |
DataFrame
|
The vehicle dataframe |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Self |
Self
|
An instance of the Vehicle class. |
Source code in src/t3co/input_data/vehicle.py
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | |
from_csv(selection, vehicle_db_file, config=None)
classmethod
Creates a Vehicle instance from the vehicle database csv file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
selection |
int
|
The selection index. |
required |
vehicle_db_file |
Union[str, Path]
|
The vehicle database file path. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Self |
Self
|
An instance of the Vehicle class. |
Source code in src/t3co/input_data/vehicle.py
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 | |
set_veh_kg()
Sets the vehicle weight in kilograms.
Source code in src/t3co/input_data/vehicle.py
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 | |
delete_dataframes()
Deletes DataFrame attributes from the Vehicle instance.
Source code in src/t3co/input_data/vehicle.py
141 142 143 144 145 | |