Skip to content

Commit

Permalink
Remove parametric and visualization code (#460)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkundu1 authored Jun 7, 2022
1 parent 267a714 commit 05e7ba1
Show file tree
Hide file tree
Showing 34 changed files with 29 additions and 4,648 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ jobs:
restore-keys: |
Python-${{ runner.os }}-${{ matrix.python-version }}
- name: Install pyfluent with post requirements
run: make install-post
- name: Install pyfluent
run: make install

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
Expand Down Expand Up @@ -208,8 +208,8 @@ jobs:
- name: Add version information
run: make version-info

- name: Install pyfluent with post requirements
run: make install-post
- name: Install pyfluent with post
run: make install

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
Expand All @@ -231,7 +231,7 @@ jobs:
- name: Install again after codegen
run: |
rm -rf dist
make install-post
make install
- name: Unit Testing
run: make unittest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-doc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
sudo apt update
sudo apt install pandoc libegl1
- name: Install pyfluent with post module
run: make install-post
- name: Install pyfluent
run: make install

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
Expand Down
6 changes: 0 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ version-info:
@bash -c "date -u +'Build date: %B %d, %Y %H:%M UTC ShaID: <id>' | xargs -I date sed -i 's/_VERSION_INFO = .*/_VERSION_INFO = \"date\"/g' src/ansys/fluent/core/__init__.py"
@bash -c "git --no-pager log -n 1 --format='%h' | xargs -I hash sed -i 's/<id>/hash/g' src/ansys/fluent/core/__init__.py"

install-post:
@pip install -r requirements_build.txt
@python setup.py sdist
@python setup.py bdist_wheel
@find dist -name "*.whl" -exec pip install {}[post] \;

install-pyvistaqt-requirements:
@sudo apt update
@sudo apt install libegl1 -y
Expand Down
Binary file removed doc/source/_static/DP_table.png
Binary file not shown.
4 changes: 1 addition & 3 deletions doc/source/api/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,4 @@ Here we should discuss the different API modules at a high level.
:maxdepth: 4
:hidden:

core/index
parametric
post/index
core/index
12 changes: 0 additions & 12 deletions doc/source/api/parametric.rst

This file was deleted.

119 changes: 0 additions & 119 deletions doc/source/api/post/index.rst

This file was deleted.

13 changes: 0 additions & 13 deletions doc/source/api/post/pyvista_objects.rst

This file was deleted.

8 changes: 0 additions & 8 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,6 @@ The primary package, ``ansys-fluent``, provides features such as:
for more information.
- Scripting using Fluent's TUI commands. See the :ref:`ref_solver_tui` module for
more information about the available commands.
- Scripting of a parametric study using Fluent.
- Script post processing using Fluent's in-built post processing capabilities.
See the :ref:`ref_postprocessing` module for more information.
- Plotting of Fluent geometry and meshes using `PyVista
<https://docs.pyvista.org>`_ from within a Python script or an
interactive `Jupyter notebook <https://jupyter.org/>`_.
- Access to Fluent surface based field data as Python objects via `NumPy
<https://numpy.org/>`_ arrays
- and more...

Beta Features
Expand Down
2 changes: 0 additions & 2 deletions doc/source/users_guide/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ constituent modules and components.
materials
boundary_conditions
solution
postprocessing
parametric_workflows


PyFluent Basic Overview
Expand Down
Loading

0 comments on commit 05e7ba1

Please sign in to comment.