├── .gitignore ├── LICENSE ├── README.md ├── bin ├── sowfa_convert_source_history.py ├── sowfa_extract_elevation_from_stl.py ├── sowfa_log_to_df.py └── sowfa_time_left.py ├── setup.py └── windtools ├── SOWFA6 ├── constant │ └── boundaryData.py ├── log.py └── postProcessing │ ├── averaging.py │ ├── probeSets.py │ ├── probes.py │ ├── reader.py │ └── sourceHistory.py ├── amrwind ├── post_processing.py └── to_fastfarm.py ├── common.py ├── inflow ├── general.py ├── openfast.py └── synthetic.py ├── io ├── binary.py ├── ensight.py ├── series.py └── vtk.py ├── openfast.py ├── openfoam.py └── plotting.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.pyc 3 | windtools.egg-info 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/README.md -------------------------------------------------------------------------------- /bin/sowfa_convert_source_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/bin/sowfa_convert_source_history.py -------------------------------------------------------------------------------- /bin/sowfa_extract_elevation_from_stl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/bin/sowfa_extract_elevation_from_stl.py -------------------------------------------------------------------------------- /bin/sowfa_log_to_df.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/bin/sowfa_log_to_df.py -------------------------------------------------------------------------------- /bin/sowfa_time_left.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/bin/sowfa_time_left.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/setup.py -------------------------------------------------------------------------------- /windtools/SOWFA6/constant/boundaryData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/SOWFA6/constant/boundaryData.py -------------------------------------------------------------------------------- /windtools/SOWFA6/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/SOWFA6/log.py -------------------------------------------------------------------------------- /windtools/SOWFA6/postProcessing/averaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/SOWFA6/postProcessing/averaging.py -------------------------------------------------------------------------------- /windtools/SOWFA6/postProcessing/probeSets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/SOWFA6/postProcessing/probeSets.py -------------------------------------------------------------------------------- /windtools/SOWFA6/postProcessing/probes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/SOWFA6/postProcessing/probes.py -------------------------------------------------------------------------------- /windtools/SOWFA6/postProcessing/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/SOWFA6/postProcessing/reader.py -------------------------------------------------------------------------------- /windtools/SOWFA6/postProcessing/sourceHistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/SOWFA6/postProcessing/sourceHistory.py -------------------------------------------------------------------------------- /windtools/amrwind/post_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/amrwind/post_processing.py -------------------------------------------------------------------------------- /windtools/amrwind/to_fastfarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/amrwind/to_fastfarm.py -------------------------------------------------------------------------------- /windtools/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/common.py -------------------------------------------------------------------------------- /windtools/inflow/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/inflow/general.py -------------------------------------------------------------------------------- /windtools/inflow/openfast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/inflow/openfast.py -------------------------------------------------------------------------------- /windtools/inflow/synthetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/inflow/synthetic.py -------------------------------------------------------------------------------- /windtools/io/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/io/binary.py -------------------------------------------------------------------------------- /windtools/io/ensight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/io/ensight.py -------------------------------------------------------------------------------- /windtools/io/series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/io/series.py -------------------------------------------------------------------------------- /windtools/io/vtk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/io/vtk.py -------------------------------------------------------------------------------- /windtools/openfast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/openfast.py -------------------------------------------------------------------------------- /windtools/openfoam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/openfoam.py -------------------------------------------------------------------------------- /windtools/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NREL/windtools/HEAD/windtools/plotting.py --------------------------------------------------------------------------------