forked from ActivitySim/activitysim
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b392750
commit 9fb33ec
Showing
2 changed files
with
59 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
(component-auto-ownership)= | ||
# Auto Ownership | ||
|
||
```{eval-rst} | ||
.. currentmodule:: activitysim.abm.models.auto_owenership | ||
``` | ||
|
||
The auto ownership model selects a number of autos for each household in the simulation. | ||
The primary model components are household demographics, zonal density, and accessibility. | ||
|
||
## Structure | ||
|
||
- *Configuration File*: `auto_ownership.yaml` | ||
- *Core Table*: `households` | ||
- *Result Field*: `auto_owenership` | ||
|
||
This model is structured as nested logit model. | ||
|
||
## Configuration | ||
|
||
```{eval-rst} | ||
.. autopydantic_model:: | ||
:inherited-members: BaseModel, PydanticReadable | ||
:show-inheritance: | ||
``` | ||
|
||
### Examples | ||
|
||
- [Prototype MTC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_mtc/configs/auto_ownership.yaml) | ||
- [Prototype ARC](https://github.com/ActivitySim/activitysim/blob/main/activitysim/examples/prototype_arc/configs/auto_ownership.yaml) | ||
|
||
## Implementation | ||
|
||
```{eval-rst} | ||
.. autofunction:: auto_ownership | ||
``` |