├── .gitignore ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── hourlyEmssionRate.py ├── mcipPreparation.py ├── parsePOS.py └── resultSummary.py /.gitignore: -------------------------------------------------------------------------------- 1 | hourlyEmssionRate_chimney.py -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottJohn/AERMOD/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottJohn/AERMOD/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottJohn/AERMOD/HEAD/README.md -------------------------------------------------------------------------------- /hourlyEmssionRate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottJohn/AERMOD/HEAD/hourlyEmssionRate.py -------------------------------------------------------------------------------- /mcipPreparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottJohn/AERMOD/HEAD/mcipPreparation.py -------------------------------------------------------------------------------- /parsePOS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottJohn/AERMOD/HEAD/parsePOS.py -------------------------------------------------------------------------------- /resultSummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mottJohn/AERMOD/HEAD/resultSummary.py --------------------------------------------------------------------------------