├── .gitignore ├── LICENSE ├── README.md ├── example_advanced.py ├── example_simple.py ├── requirements.txt ├── resource ├── images │ ├── banner_1_full.png │ ├── banner_1_thumb.png │ ├── example_advanced_1.png │ ├── example_simple_1.png │ ├── example_simple_2.png │ └── example_simple_3.png ├── rocket_stubby.csm ├── rocket_stubby.step └── rocket_stubby_surf.msh └── src ├── extrude_config.py ├── gen_blmesh.py ├── gen_farfield.py ├── gmsh_helpers.py ├── parse_dat.py ├── ugrid_tools.py └── write_mapbc.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/README.md -------------------------------------------------------------------------------- /example_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/example_advanced.py -------------------------------------------------------------------------------- /example_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/example_simple.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/requirements.txt -------------------------------------------------------------------------------- /resource/images/banner_1_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/resource/images/banner_1_full.png -------------------------------------------------------------------------------- /resource/images/banner_1_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/resource/images/banner_1_thumb.png -------------------------------------------------------------------------------- /resource/images/example_advanced_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/resource/images/example_advanced_1.png -------------------------------------------------------------------------------- /resource/images/example_simple_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/resource/images/example_simple_1.png -------------------------------------------------------------------------------- /resource/images/example_simple_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/resource/images/example_simple_2.png -------------------------------------------------------------------------------- /resource/images/example_simple_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/resource/images/example_simple_3.png -------------------------------------------------------------------------------- /resource/rocket_stubby.csm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/resource/rocket_stubby.csm -------------------------------------------------------------------------------- /resource/rocket_stubby.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/resource/rocket_stubby.step -------------------------------------------------------------------------------- /resource/rocket_stubby_surf.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/resource/rocket_stubby_surf.msh -------------------------------------------------------------------------------- /src/extrude_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/src/extrude_config.py -------------------------------------------------------------------------------- /src/gen_blmesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/src/gen_blmesh.py -------------------------------------------------------------------------------- /src/gen_farfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/src/gen_farfield.py -------------------------------------------------------------------------------- /src/gmsh_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/src/gmsh_helpers.py -------------------------------------------------------------------------------- /src/parse_dat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/src/parse_dat.py -------------------------------------------------------------------------------- /src/ugrid_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/src/ugrid_tools.py -------------------------------------------------------------------------------- /src/write_mapbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmckee/cfd-meshman/HEAD/src/write_mapbc.py --------------------------------------------------------------------------------